mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH tip/x86/entry] Fix user return notifier build
@ 2009-10-25 12:24 Avi Kivity
  2009-10-25 16:38 ` Ingo Molnar
  2009-11-02 10:12 ` [tip:x86/entry] x86: " tip-bot for Avi Kivity
  0 siblings, 2 replies; 4+ messages in thread
From: Avi Kivity @ 2009-10-25 12:24 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: kvm, linux-kernel

When CONFIG_USER_RETURN_NOTIFIER is set, we need to link
kernel/user-return-notifier.o.

Signed-off-by: Avi Kivity <avi@redhat.com>
---
 kernel/Makefile |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/kernel/Makefile b/kernel/Makefile
index b8d4cd8..0ae57a8 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -95,6 +95,7 @@ obj-$(CONFIG_RING_BUFFER) += trace/
 obj-$(CONFIG_SMP) += sched_cpupri.o
 obj-$(CONFIG_SLOW_WORK) += slow-work.o
 obj-$(CONFIG_PERF_EVENTS) += perf_event.o
+obj-$(CONFIG_USER_RETURN_NOTIFIER) += user-return-notifier.o
 
 ifneq ($(CONFIG_SCHED_OMIT_FRAME_POINTER),y)
 # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is
-- 
1.6.4.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH tip/x86/entry] Fix user return notifier build
  2009-10-25 12:24 [PATCH tip/x86/entry] Fix user return notifier build Avi Kivity
@ 2009-10-25 16:38 ` Ingo Molnar
  2009-10-25 16:43   ` Avi Kivity
  2009-11-02 10:12 ` [tip:x86/entry] x86: " tip-bot for Avi Kivity
  1 sibling, 1 reply; 4+ messages in thread
From: Ingo Molnar @ 2009-10-25 16:38 UTC (permalink / raw)
  To: Avi Kivity; +Cc: kvm, linux-kernel, H. Peter Anvin


* Avi Kivity <avi@redhat.com> wrote:

> When CONFIG_USER_RETURN_NOTIFIER is set, we need to link
> kernel/user-return-notifier.o.
> 
> Signed-off-by: Avi Kivity <avi@redhat.com>
> ---
>  kernel/Makefile |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)

Applied, thanks.

I suspect you want to pull x86/entry into kvm.git? The base patch itself 
has not caused any trouble.

	Ingo

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH tip/x86/entry] Fix user return notifier build
  2009-10-25 16:38 ` Ingo Molnar
@ 2009-10-25 16:43   ` Avi Kivity
  0 siblings, 0 replies; 4+ messages in thread
From: Avi Kivity @ 2009-10-25 16:43 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: kvm, linux-kernel, H. Peter Anvin

On 10/25/2009 06:38 PM, Ingo Molnar wrote:
> I suspect you want to pull x86/entry into kvm.git? The base patch itself
> has not caused any trouble.
>    

Yup.

-- 
error compiling committee.c: too many arguments to function


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [tip:x86/entry] x86: Fix user return notifier build
  2009-10-25 12:24 [PATCH tip/x86/entry] Fix user return notifier build Avi Kivity
  2009-10-25 16:38 ` Ingo Molnar
@ 2009-11-02 10:12 ` tip-bot for Avi Kivity
  1 sibling, 0 replies; 4+ messages in thread
From: tip-bot for Avi Kivity @ 2009-11-02 10:12 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, tglx, mingo, avi

Commit-ID:  7a041097518a120f92af631a83db4d41e07ee51b
Gitweb:     http://git.kernel.org/tip/7a041097518a120f92af631a83db4d41e07ee51b
Author:     Avi Kivity <avi@redhat.com>
AuthorDate: Sun, 25 Oct 2009 14:24:45 +0200
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Sun, 25 Oct 2009 17:37:57 +0100

x86: Fix user return notifier build

When CONFIG_USER_RETURN_NOTIFIER is set, we need to link
kernel/user-return-notifier.o.

Signed-off-by: Avi Kivity <avi@redhat.com>
LKML-Reference: <1256473485-23109-1-git-send-email-avi@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 kernel/Makefile |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/kernel/Makefile b/kernel/Makefile
index b8d4cd8..0ae57a8 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -95,6 +95,7 @@ obj-$(CONFIG_RING_BUFFER) += trace/
 obj-$(CONFIG_SMP) += sched_cpupri.o
 obj-$(CONFIG_SLOW_WORK) += slow-work.o
 obj-$(CONFIG_PERF_EVENTS) += perf_event.o
+obj-$(CONFIG_USER_RETURN_NOTIFIER) += user-return-notifier.o
 
 ifneq ($(CONFIG_SCHED_OMIT_FRAME_POINTER),y)
 # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-11-02 10:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-25 12:24 [PATCH tip/x86/entry] Fix user return notifier build Avi Kivity
2009-10-25 16:38 ` Ingo Molnar
2009-10-25 16:43   ` Avi Kivity
2009-11-02 10:12 ` [tip:x86/entry] x86: " tip-bot for Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome