All of lore.kernel.org
 help / color / mirror / Atom feed
From: "tip-bot2 for Sean Christopherson" <tip-bot2@linutronix.de>
To: linux-tip-commits@vger.kernel.org
Cc: Sean Christopherson <sean.j.christopherson@intel.com>,
	Borislav Petkov <bp@alien8.de>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@kernel.org>, x86 <x86@kernel.org>,
	LKML <linux-kernel@vger.kernel.org>
Subject: [tip: core/headers] efi/capsule-loader: Explicitly include linux/io.h for page_to_phys()
Date: Tue, 26 Nov 2019 08:00:11 -0000	[thread overview]
Message-ID: <157475521115.21853.448312899013638043.tip-bot2@tip-bot2> (raw)
In-Reply-To: <20191119002121.4107-7-sean.j.christopherson@intel.com>

The following commit has been merged into the core/headers branch of tip:

Commit-ID:     53db61e1d344adda56a2a9dc8ae4fc099df0f95a
Gitweb:        https://git.kernel.org/tip/53db61e1d344adda56a2a9dc8ae4fc099df0f95a
Author:        Sean Christopherson <sean.j.christopherson@intel.com>
AuthorDate:    Mon, 18 Nov 2019 16:21:15 -08:00
Committer:     Ingo Molnar <mingo@kernel.org>
CommitterDate: Tue, 19 Nov 2019 17:50:26 +01:00

efi/capsule-loader: Explicitly include linux/io.h for page_to_phys()

Through a labyrinthian sequence of includes, usage of page_to_phys() is
dependent on the include of asm/io.h in x86's asm/realmode.h, which is
included in x86's asm/acpi.h and thus by linux/acpi.h.  Explicitly
include linux/io.h to break the dependency on realmode.h so that a
future patch can remove the realmode.h include from acpi.h without
breaking the build.

Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20191119002121.4107-7-sean.j.christopherson@intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 drivers/firmware/efi/capsule-loader.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/firmware/efi/capsule-loader.c b/drivers/firmware/efi/capsule-loader.c
index b139513..d3067cb 100644
--- a/drivers/firmware/efi/capsule-loader.c
+++ b/drivers/firmware/efi/capsule-loader.c
@@ -11,6 +11,7 @@
 #include <linux/module.h>
 #include <linux/miscdevice.h>
 #include <linux/highmem.h>
+#include <linux/io.h>
 #include <linux/slab.h>
 #include <linux/mutex.h>
 #include <linux/efi.h>

  reply	other threads:[~2019-11-26  8:01 UTC|newest]

Thread overview: 127+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-19  0:21 [PATCH 00/12] treewide: break dependencies on x86's RM header Sean Christopherson
2019-11-19  0:21 ` Sean Christopherson
2019-11-19  0:21 ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21 ` Sean Christopherson
2019-11-19  0:21 ` [PATCH 01/12] x86/efi: Explicitly include realmode.h to handle RM trampoline quirk Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 02/12] x86/boot: Explicitly include realmode.h to handle RM reservations Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 03/12] x86/ftrace: Explicitly include vmalloc.h for set_vm_flush_reset_perms() Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-22  2:11   ` Steven Rostedt
2019-11-22  2:11     ` Steven Rostedt
2019-11-22  2:11     ` [alsa-devel] " Steven Rostedt
2019-11-22  2:11     ` Steven Rostedt
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 04/12] x86/kprobes: " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-22  2:12   ` Steven Rostedt
2019-11-22  2:12     ` Steven Rostedt
2019-11-22  2:12     ` [alsa-devel] " Steven Rostedt
2019-11-22  2:12     ` Steven Rostedt
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 05/12] perf/x86/intel: Explicitly include asm/io.h to use virt_to_phys() Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 06/12] efi/capsule-loader: Explicitly include linux/io.h for page_to_phys() Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-26  8:00   ` tip-bot2 for Sean Christopherson [this message]
2019-11-19  0:21 ` [PATCH 07/12] virt: vbox: Explicitly include linux/io.h to pick up various defs Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 08/12] vmw_balloon: Explicitly include linux/io.h for virt_to_phys() Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 09/12] ASoC: Intel: Skylake: " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19 12:00   ` Mark Brown
2019-11-19 12:00     ` [alsa-devel] " Mark Brown
2019-11-19 12:00     ` Mark Brown
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 10/12] x86/ACPI/sleep: Remove an unnecessary include of asm/realmode.h Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-20 10:59   ` Rafael J. Wysocki
2019-11-20 10:59     ` Rafael J. Wysocki
2019-11-20 10:59     ` [alsa-devel] " Rafael J. Wysocki
2019-11-20 10:59     ` Rafael J. Wysocki
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 11/12] ACPI/sleep: Convert acpi_wakeup_address into a function Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-20 10:58   ` Rafael J. Wysocki
2019-11-20 10:58     ` Rafael J. Wysocki
2019-11-20 10:58     ` [alsa-devel] " Rafael J. Wysocki
2019-11-20 10:58     ` Rafael J. Wysocki
2019-11-25 10:48     ` Pavel Machek
2019-11-25 10:48       ` Pavel Machek
2019-11-25 10:48       ` [alsa-devel] " Pavel Machek
2019-11-25 10:48       ` Pavel Machek
2019-11-25 17:00       ` Sean Christopherson
2019-11-25 17:00         ` Sean Christopherson
2019-11-25 17:00         ` [alsa-devel] " Sean Christopherson
2019-11-25 17:00         ` Sean Christopherson
2019-11-26 11:16         ` Ingo Molnar
2019-11-26 11:16           ` Ingo Molnar
2019-11-26 11:16           ` [alsa-devel] " Ingo Molnar
2019-11-26 11:16           ` Ingo Molnar
2019-11-26 11:25           ` Ingo Molnar
2019-11-26 11:25             ` Ingo Molnar
2019-11-26 11:25             ` [alsa-devel] " Ingo Molnar
2019-11-26 11:25             ` Ingo Molnar
2019-11-26  8:00   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-19  0:21 ` [PATCH 12/12] x86/ACPI/sleep: Move acpi_wakeup_address() definition into sleep.c Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-19  0:21   ` [alsa-devel] " Sean Christopherson
2019-11-19  0:21   ` Sean Christopherson
2019-11-20 11:00   ` Rafael J. Wysocki
2019-11-20 11:00     ` Rafael J. Wysocki
2019-11-20 11:00     ` [alsa-devel] " Rafael J. Wysocki
2019-11-20 11:00     ` Rafael J. Wysocki
2019-11-26  8:00   ` [tip: core/headers] x86/ACPI/sleep: Move acpi_wakeup_address() definition into sleep.c, remove <asm/realmode.h> from <asm/acpi.h> tip-bot2 for Sean Christopherson
2019-11-19 11:10 ` [PATCH 00/12] treewide: break dependencies on x86's RM header Ingo Molnar
2019-11-19 11:10   ` Ingo Molnar
2019-11-19 11:10   ` [alsa-devel] " Ingo Molnar
2019-11-19 11:10   ` Ingo Molnar
2019-11-19 12:06   ` [PATCH] x86/platform/intel/quark: Explicitly include linux/io.h for virt_to_phys() Ingo Molnar
2019-11-19 12:06     ` Ingo Molnar
2019-11-19 12:06     ` [alsa-devel] " Ingo Molnar
2019-11-19 12:06     ` Ingo Molnar
2019-11-19 12:38     ` Andy Shevchenko
2019-11-19 12:38       ` Andy Shevchenko
2019-11-19 12:38       ` [alsa-devel] " Andy Shevchenko
2019-11-19 12:38       ` Andy Shevchenko
2019-11-19 12:09   ` [PATCH 00/12] treewide: break dependencies on x86's RM header Ard Biesheuvel
2019-11-19 12:09     ` [alsa-devel] " Ard Biesheuvel
2019-11-19 12:09     ` Ard Biesheuvel
2019-11-19 12:22     ` Ingo Molnar
2019-11-19 12:22       ` Ingo Molnar
2019-11-19 12:22       ` [alsa-devel] " Ingo Molnar
2019-11-19 12:22       ` Ingo Molnar
2019-11-19 12:33       ` Ard Biesheuvel
2019-11-19 12:33         ` Ard Biesheuvel
2019-11-19 12:33         ` [alsa-devel] " Ard Biesheuvel
2019-11-19 12:33         ` Ard Biesheuvel
2019-11-26 16:54 [PATCH v2 06/12] efi/capsule-loader: Explicitly include linux/io.h for page_to_phys() Sean Christopherson
2020-01-19 10:40 ` [tip: core/headers] " tip-bot2 for Sean Christopherson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=157475521115.21853.448312899013638043.tip-bot2@tip-bot2 \
    --to=tip-bot2@linutronix.de \
    --cc=bp@alien8.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=peterz@infradead.org \
    --cc=sean.j.christopherson@intel.com \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.