* [PATCH 1/3] export generic checkpoint headers to user space
@ 2009-05-28 23:10 Nathan Lynch
[not found] ` <1243552253-7221-1-git-send-email-ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Nathan Lynch @ 2009-05-28 23:10 UTC (permalink / raw)
To: Oren Laadan; +Cc: containers-qjLDD68F18O7TbgM5vRIOg
Checkpoint-related headers are not properly exported, resulting in
$ make ARCH=i386 headers_check -s
/home/nathanl/devel/linux-2.6.git/usr/include/linux/fs.h:11: included file 'linux/checkpoint_types.h' is not exported
Export checkpoint_types.h and checkpoint_hdr.h.
After this and arch-specific exports to follow, user-cr can be built
against the result of 'make headers_install'.
Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
---
include/linux/Kbuild | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/linux/Kbuild b/include/linux/Kbuild
index 3f0eaa3..25b7c0e 100644
--- a/include/linux/Kbuild
+++ b/include/linux/Kbuild
@@ -44,6 +44,8 @@ header-y += bpqether.h
header-y += bsg.h
header-y += can.h
header-y += cdk.h
+header-y += checkpoint_types.h
+header-y += checkpoint_hdr.h
header-y += chio.h
header-y += coda_psdev.h
header-y += coff.h
--
1.6.0.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/3] x86: export checkpoint_hdr.h
[not found] ` <1243552253-7221-1-git-send-email-ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
@ 2009-05-28 23:10 ` Nathan Lynch
2009-05-28 23:10 ` [PATCH 3/3] s390: " Nathan Lynch
2009-05-29 1:02 ` [PATCH 1/3] export generic checkpoint headers to user space Matt Helsley
2 siblings, 0 replies; 6+ messages in thread
From: Nathan Lynch @ 2009-05-28 23:10 UTC (permalink / raw)
To: Oren Laadan; +Cc: containers-qjLDD68F18O7TbgM5vRIOg
Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
---
arch/x86/include/asm/Kbuild | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/arch/x86/include/asm/Kbuild b/arch/x86/include/asm/Kbuild
index 4a8e80c..f76cb6e 100644
--- a/arch/x86/include/asm/Kbuild
+++ b/arch/x86/include/asm/Kbuild
@@ -2,6 +2,7 @@ include include/asm-generic/Kbuild.asm
header-y += boot.h
header-y += bootparam.h
+header-y += checkpoint_hdr.h
header-y += debugreg.h
header-y += ldt.h
header-y += msr-index.h
--
1.6.0.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/3] s390: export checkpoint_hdr.h
[not found] ` <1243552253-7221-1-git-send-email-ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
2009-05-28 23:10 ` [PATCH 2/3] x86: export checkpoint_hdr.h Nathan Lynch
@ 2009-05-28 23:10 ` Nathan Lynch
2009-05-29 1:02 ` [PATCH 1/3] export generic checkpoint headers to user space Matt Helsley
2 siblings, 0 replies; 6+ messages in thread
From: Nathan Lynch @ 2009-05-28 23:10 UTC (permalink / raw)
To: Oren Laadan; +Cc: containers-qjLDD68F18O7TbgM5vRIOg
Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
---
arch/s390/include/asm/Kbuild | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/arch/s390/include/asm/Kbuild b/arch/s390/include/asm/Kbuild
index 63a2341..3282a6e 100644
--- a/arch/s390/include/asm/Kbuild
+++ b/arch/s390/include/asm/Kbuild
@@ -8,6 +8,7 @@ header-y += ucontext.h
header-y += vtoc.h
header-y += zcrypt.h
header-y += chsc.h
+header-y += checkpoint_hdr.h
unifdef-y += cmb.h
unifdef-y += debug.h
--
1.6.0.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/3] export generic checkpoint headers to user space
[not found] ` <1243552253-7221-1-git-send-email-ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
2009-05-28 23:10 ` [PATCH 2/3] x86: export checkpoint_hdr.h Nathan Lynch
2009-05-28 23:10 ` [PATCH 3/3] s390: " Nathan Lynch
@ 2009-05-29 1:02 ` Matt Helsley
[not found] ` <20090529010217.GD17402-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2 siblings, 1 reply; 6+ messages in thread
From: Matt Helsley @ 2009-05-29 1:02 UTC (permalink / raw)
To: Nathan Lynch; +Cc: containers-qjLDD68F18O7TbgM5vRIOg
On Thu, May 28, 2009 at 06:10:51PM -0500, Nathan Lynch wrote:
> Checkpoint-related headers are not properly exported, resulting in
>
> $ make ARCH=i386 headers_check -s
> /home/nathanl/devel/linux-2.6.git/usr/include/linux/fs.h:11: included file 'linux/checkpoint_types.h' is not exported
>
> Export checkpoint_types.h and checkpoint_hdr.h.
>
> After this and arch-specific exports to follow, user-cr can be built
> against the result of 'make headers_install'.
>
> Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
> ---
You can apply this to all 3:
Acked-by: Matt Helsley <matthltc-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Thanks for posting these.
Cheers,
-Matt
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/3] export generic checkpoint headers to user space
[not found] ` <20090529010217.GD17402-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2009-05-29 10:22 ` Oren Laadan
2009-05-29 10:22 ` Oren Laadan
1 sibling, 0 replies; 6+ messages in thread
From: Oren Laadan @ 2009-05-29 10:22 UTC (permalink / raw)
To: Matt Helsley; +Cc: containers-qjLDD68F18O7TbgM5vRIOg, Nathan Lynch
Applied to ckpt-v16-dev, thanks.
Oren.
Matt Helsley wrote:
> On Thu, May 28, 2009 at 06:10:51PM -0500, Nathan Lynch wrote:
>> Checkpoint-related headers are not properly exported, resulting in
>>
>> $ make ARCH=i386 headers_check -s
>> /home/nathanl/devel/linux-2.6.git/usr/include/linux/fs.h:11: included file 'linux/checkpoint_types.h' is not exported
>>
>> Export checkpoint_types.h and checkpoint_hdr.h.
>>
>> After this and arch-specific exports to follow, user-cr can be built
>> against the result of 'make headers_install'.
>>
>> Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
>> ---
>
> You can apply this to all 3:
>
> Acked-by: Matt Helsley <matthltc-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
>
> Thanks for posting these.
>
> Cheers,
> -Matt
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/3] export generic checkpoint headers to user space
[not found] ` <20090529010217.GD17402-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-05-29 10:22 ` Oren Laadan
@ 2009-05-29 10:22 ` Oren Laadan
1 sibling, 0 replies; 6+ messages in thread
From: Oren Laadan @ 2009-05-29 10:22 UTC (permalink / raw)
To: Matt Helsley; +Cc: containers-qjLDD68F18O7TbgM5vRIOg, Nathan Lynch
Applied all three to ckpt-v16-dev, thanks.
Oren.
Matt Helsley wrote:
> On Thu, May 28, 2009 at 06:10:51PM -0500, Nathan Lynch wrote:
>> Checkpoint-related headers are not properly exported, resulting in
>>
>> $ make ARCH=i386 headers_check -s
>> /home/nathanl/devel/linux-2.6.git/usr/include/linux/fs.h:11: included file 'linux/checkpoint_types.h' is not exported
>>
>> Export checkpoint_types.h and checkpoint_hdr.h.
>>
>> After this and arch-specific exports to follow, user-cr can be built
>> against the result of 'make headers_install'.
>>
>> Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
>> ---
>
> You can apply this to all 3:
>
> Acked-by: Matt Helsley <matthltc-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
>
> Thanks for posting these.
>
> Cheers,
> -Matt
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-05-29 10:22 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-28 23:10 [PATCH 1/3] export generic checkpoint headers to user space Nathan Lynch
[not found] ` <1243552253-7221-1-git-send-email-ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
2009-05-28 23:10 ` [PATCH 2/3] x86: export checkpoint_hdr.h Nathan Lynch
2009-05-28 23:10 ` [PATCH 3/3] s390: " Nathan Lynch
2009-05-29 1:02 ` [PATCH 1/3] export generic checkpoint headers to user space Matt Helsley
[not found] ` <20090529010217.GD17402-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-05-29 10:22 ` Oren Laadan
2009-05-29 10:22 ` Oren Laadan
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.