[kernel] r12592 - in people/dannf/2.6.24+CVE-2009-0029/debian/patches: bugfix/all/CVE-2009-0029 series

Dann Frazier dannf at alioth.debian.org
Thu Jan 22 00:20:50 UTC 2009


Author: dannf
Date: Thu Jan 22 00:20:49 2009
New Revision: 12592

Log:
a few more missing-include patches

Added:
   people/dannf/2.6.24+CVE-2009-0029/debian/patches/bugfix/all/CVE-2009-0029/0019pre1-missing-include.patch
   people/dannf/2.6.24+CVE-2009-0029/debian/patches/bugfix/all/CVE-2009-0029/0041pre1-missing-include.patch
   people/dannf/2.6.24+CVE-2009-0029/debian/patches/bugfix/all/CVE-2009-0029/0042pre1-missing-include.patch
Modified:
   people/dannf/2.6.24+CVE-2009-0029/debian/patches/series/6~etchnhalf.7etch1

Added: people/dannf/2.6.24+CVE-2009-0029/debian/patches/bugfix/all/CVE-2009-0029/0019pre1-missing-include.patch
==============================================================================
--- (empty file)
+++ people/dannf/2.6.24+CVE-2009-0029/debian/patches/bugfix/all/CVE-2009-0029/0019pre1-missing-include.patch	Thu Jan 22 00:20:49 2009
@@ -0,0 +1,25 @@
+commit 12c2ab5e8fdfde67f3f6778a366cbdef06de410d
+Author: Adrian Bunk <bunk at kernel.org>
+Date:   Wed Feb 6 01:36:47 2008 -0800
+
+    fs/utimes.c should #include <linux/syscalls.h>
+    
+    Every file should include the headers containing the prototypes for its global
+    functions.
+    
+    Signed-off-by: Adrian Bunk <bunk at kernel.org>
+    Signed-off-by: Andrew Morton <akpm at linux-foundation.org>
+    Signed-off-by: Linus Torvalds <torvalds at linux-foundation.org>
+
+diff --git a/fs/utimes.c b/fs/utimes.c
+index b9912ec..e5588cd 100644
+--- a/fs/utimes.c
++++ b/fs/utimes.c
+@@ -6,6 +6,7 @@
+ #include <linux/sched.h>
+ #include <linux/stat.h>
+ #include <linux/utime.h>
++#include <linux/syscalls.h>
+ #include <asm/uaccess.h>
+ #include <asm/unistd.h>
+ 

Added: people/dannf/2.6.24+CVE-2009-0029/debian/patches/bugfix/all/CVE-2009-0029/0041pre1-missing-include.patch
==============================================================================
--- (empty file)
+++ people/dannf/2.6.24+CVE-2009-0029/debian/patches/bugfix/all/CVE-2009-0029/0041pre1-missing-include.patch	Thu Jan 22 00:20:49 2009
@@ -0,0 +1,26 @@
+commit 7ec37dfd4d282ce132dcb048398800951f6d11ef
+Author: Adrian Bunk <bunk at kernel.org>
+Date:   Wed Feb 6 01:36:48 2008 -0800
+
+    fs/signalfd.c should #include <linux/syscalls.h>
+    
+    Every file should include the headers containing the prototypes for its global
+    functions (in this case sys_signalfd()).
+    
+    Signed-off-by: Adrian Bunk <bunk at kernel.org>
+    Cc: Davide Libenzi <davidel at xmailserver.org>
+    Signed-off-by: Andrew Morton <akpm at linux-foundation.org>
+    Signed-off-by: Linus Torvalds <torvalds at linux-foundation.org>
+
+diff --git a/fs/signalfd.c b/fs/signalfd.c
+index 2d3e107..cb2b63a 100644
+--- a/fs/signalfd.c
++++ b/fs/signalfd.c
+@@ -27,6 +27,7 @@
+ #include <linux/list.h>
+ #include <linux/anon_inodes.h>
+ #include <linux/signalfd.h>
++#include <linux/syscalls.h>
+ 
+ struct signalfd_ctx {
+ 	sigset_t sigmask;

Added: people/dannf/2.6.24+CVE-2009-0029/debian/patches/bugfix/all/CVE-2009-0029/0042pre1-missing-include.patch
==============================================================================
--- (empty file)
+++ people/dannf/2.6.24+CVE-2009-0029/debian/patches/bugfix/all/CVE-2009-0029/0042pre1-missing-include.patch	Thu Jan 22 00:20:49 2009
@@ -0,0 +1,26 @@
+commit 7747cdb2f8302c2e1121f6d604b62a060fb04603
+Author: Adrian Bunk <bunk at kernel.org>
+Date:   Wed Feb 6 01:36:49 2008 -0800
+
+    fs/eventfd.c should #include <linux/syscalls.h>
+    
+    Every file should include the headers containing the prototypes for its global
+    functions (in this case sys_eventfd()).
+    
+    Signed-off-by: Adrian Bunk <bunk at kernel.org>
+    Cc: Davide Libenzi <davidel at xmailserver.org>
+    Signed-off-by: Andrew Morton <akpm at linux-foundation.org>
+    Signed-off-by: Linus Torvalds <torvalds at linux-foundation.org>
+
+diff --git a/fs/eventfd.c b/fs/eventfd.c
+index 2ce19c0..a9f130c 100644
+--- a/fs/eventfd.c
++++ b/fs/eventfd.c
+@@ -15,6 +15,7 @@
+ #include <linux/spinlock.h>
+ #include <linux/anon_inodes.h>
+ #include <linux/eventfd.h>
++#include <linux/syscalls.h>
+ 
+ struct eventfd_ctx {
+ 	wait_queue_head_t wqh;

Modified: people/dannf/2.6.24+CVE-2009-0029/debian/patches/series/6~etchnhalf.7etch1
==============================================================================
--- people/dannf/2.6.24+CVE-2009-0029/debian/patches/series/6~etchnhalf.7etch1	(original)
+++ people/dannf/2.6.24+CVE-2009-0029/debian/patches/series/6~etchnhalf.7etch1	Thu Jan 22 00:20:49 2009
@@ -24,6 +24,7 @@
 + bugfix/all/CVE-2009-0029/0016-System-call-wrappers-part-06.patch
 + bugfix/all/CVE-2009-0029/0017-System-call-wrappers-part-07.patch
 + bugfix/all/CVE-2009-0029/0018-System-call-wrappers-part-08.patch
++ bugfix/all/CVE-2009-0029/0019pre1-missing-include.patch
 + bugfix/all/CVE-2009-0029/0019-System-call-wrappers-part-09.patch
 + bugfix/all/CVE-2009-0029/0020-System-call-wrappers-part-10.patch
 + bugfix/all/CVE-2009-0029/0021-System-call-wrappers-part-11.patch
@@ -47,7 +48,9 @@
 + bugfix/all/CVE-2009-0029/0038-System-call-wrappers-part-28.patch
 + bugfix/all/CVE-2009-0029/0039-System-call-wrappers-part-29.patch
 + bugfix/all/CVE-2009-0029/0040-System-call-wrappers-part-30.patch
++ bugfix/all/CVE-2009-0029/0041pre1-missing-include.patch
 + bugfix/all/CVE-2009-0029/0041-System-call-wrappers-part-31.patch
++ bugfix/all/CVE-2009-0029/0042pre1-missing-include.patch
 + bugfix/all/CVE-2009-0029/0042-System-call-wrappers-part-32.patch
 + bugfix/all/CVE-2009-0029/0043pre1-missing-include.patch
 + bugfix/all/CVE-2009-0029/0043-System-call-wrappers-part-33.patch



More information about the Kernel-svn-changes mailing list