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>,
	"Steven Rostedt (VMware)" <rostedt@goodmis.org>,
	Ingo Molnar <mingo@kernel.org>, x86 <x86@kernel.org>,
	LKML <linux-kernel@vger.kernel.org>
Subject: [tip: core/headers] x86/kprobes: Explicitly include vmalloc.h for set_vm_flush_reset_perms()
Date: Sun, 19 Jan 2020 10:40:46 -0000	[thread overview]
Message-ID: <157943044698.396.11508710326036971204.tip-bot2@tip-bot2> (raw)
In-Reply-To: <20191126165417.22423-5-sean.j.christopherson@intel.com>

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

Commit-ID:     6315ec9286e5146760a22d5ba8ccc6f5606e1401
Gitweb:        https://git.kernel.org/tip/6315ec9286e5146760a22d5ba8ccc6f5606e1401
Author:        Sean Christopherson <sean.j.christopherson@intel.com>
AuthorDate:    Tue, 26 Nov 2019 08:54:09 -08:00
Committer:     Ingo Molnar <mingo@kernel.org>
CommitterDate: Tue, 10 Dec 2019 10:15:48 +01:00

x86/kprobes: Explicitly include vmalloc.h for set_vm_flush_reset_perms()

The inclusion of linux/vmalloc.h, which is required for its definition
of set_vm_flush_reset_perms(), is somehow dependent on asm/realmode.h
being included by asm/acpi.h.  Explicitly include linux/vmalloc.h so
that a future patch can drop the realmode.h include from asm/acpi.h
without breaking the build.

Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Link: https://lkml.kernel.org/r/20191126165417.22423-5-sean.j.christopherson@intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/kernel/kprobes/core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/x86/kernel/kprobes/core.c b/arch/x86/kernel/kprobes/core.c
index 4f13af7..a0c223a 100644
--- a/arch/x86/kernel/kprobes/core.c
+++ b/arch/x86/kernel/kprobes/core.c
@@ -40,6 +40,7 @@
 #include <linux/frame.h>
 #include <linux/kasan.h>
 #include <linux/moduleloader.h>
+#include <linux/vmalloc.h>
 
 #include <asm/text-patching.h>
 #include <asm/cacheflush.h>

  reply	other threads:[~2020-01-19 10:41 UTC|newest]

Thread overview: 82+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-26 16:54 [PATCH v2 00/12] treewide: break dependencies on x86's RM header Sean Christopherson
2019-11-26 16:54 ` Sean Christopherson
2019-11-26 16:54 ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54 ` Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 01/12] x86/efi: Explicitly include realmode.h to handle RM trampoline quirk Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 02/12] x86/boot: Explicitly include realmode.h to handle RM reservations Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 03/12] x86/ftrace: Explicitly include vmalloc.h for set_vm_flush_reset_perms() Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 04/12] x86/kprobes: " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` tip-bot2 for Sean Christopherson [this message]
2019-11-26 16:54 ` [PATCH v2 05/12] perf/x86/intel: Explicitly include asm/io.h to use virt_to_phys() Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 06/12] efi/capsule-loader: Explicitly include linux/io.h for page_to_phys() Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 07/12] virt: vbox: Explicitly include linux/io.h to pick up various defs Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 08/12] vmw_balloon: Explicitly include linux/io.h for virt_to_phys() Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 09/12] ASoC: Intel: Skylake: " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 10/12] x86/ACPI/sleep: Remove an unnecessary include of asm/realmode.h Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 11/12] ACPI/sleep: Convert acpi_wakeup_address into a function Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] " Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-27 21:30   ` Pavel Machek
2019-11-27 21:30     ` Pavel Machek
2019-11-27 21:30     ` [alsa-devel] " Pavel Machek
2019-11-27 21:30     ` Pavel Machek
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-26 16:54 ` [PATCH v2 12/12] x86/ACPI/sleep: Move acpi_get_wakeup_address() into sleep.c, remove <asm/realmode.h> from <asm/acpi.h> Sean Christopherson
2019-11-26 16:54   ` [PATCH v2 12/12] x86/ACPI/sleep: Move acpi_get_wakeup_address() into sleep.c, remove <asm/realmode.h Sean Christopherson
2019-11-26 16:54   ` [alsa-devel] [PATCH v2 12/12] x86/ACPI/sleep: Move acpi_get_wakeup_address() into sleep.c, remove <asm/realmode.h> from <asm/acpi.h> Sean Christopherson
2019-11-26 16:54   ` Sean Christopherson
2019-11-28 22:08   ` kbuild test robot
2020-01-19 10:40   ` [tip: core/headers] " tip-bot2 for Sean Christopherson
2019-11-27  7:20 ` [PATCH v2 00/12] treewide: break dependencies on x86's RM header Ingo Molnar
2019-11-27  7:20   ` Ingo Molnar
2019-11-27  7:20   ` [alsa-devel] " Ingo Molnar
2019-11-27  7:20   ` Ingo Molnar
2019-11-27 14:47   ` Sean Christopherson
2019-11-27 14:47     ` Sean Christopherson
2019-11-27 14:47     ` [alsa-devel] " Sean Christopherson
2019-11-27 14:47     ` Sean Christopherson
2019-11-27 17:25     ` Ingo Molnar
2019-11-27 17:25       ` Ingo Molnar
2019-11-27 17:25       ` [alsa-devel] " Ingo Molnar
2019-11-27 17:25       ` Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2019-11-19  0:21 [PATCH 04/12] x86/kprobes: Explicitly include vmalloc.h for set_vm_flush_reset_perms() Sean Christopherson
2019-11-26  8:00 ` [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=157943044698.396.11508710326036971204.tip-bot2@tip-bot2 \
    --to=tip-bot2@linutronix.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=rostedt@goodmis.org \
    --cc=sean.j.christopherson@intel.com \
    --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.