rpms/kernel/F-11 linux-2.6-debug-lost-audit-data.patch, NONE, 1.1 patch-2.6.32.7.bz2.sign, NONE, 1.1 .cvsignore, 1.1066, 1.1067 config-generic, 1.297, 1.298 kernel.spec, 1.1801, 1.1802 sources, 1.1028, 1.1029 upstream, 1.939, 1.940 patch-2.6.32.6.bz2.sign, 1.1, NONE patch-2.6.32.7-rc1.bz2.sign, 1.1, NONE

Chuck Ebbert cebbert at fedoraproject.org
Fri Jan 29 12:36:11 UTC 2010


Author: cebbert

Update of /cvs/pkgs/rpms/kernel/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31451

Modified Files:
	.cvsignore config-generic kernel.spec sources upstream 
Added Files:
	linux-2.6-debug-lost-audit-data.patch patch-2.6.32.7.bz2.sign 
Removed Files:
	patch-2.6.32.6.bz2.sign patch-2.6.32.7-rc1.bz2.sign 
Log Message:
Linux 2.6.32.7
Disable CONFIG_DEVTMPFS
Add patch to show filesystem name in audit name_count error
  messsages and dump the stack on the first error.  

linux-2.6-debug-lost-audit-data.patch:
 auditsc.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

--- NEW FILE linux-2.6-debug-lost-audit-data.patch ---
--- linux-2.6.32.noarch.orig/kernel/auditsc.c
+++ linux-2.6.32.noarch/kernel/auditsc.c
@@ -1893,14 +1893,14 @@ static int audit_inc_name_count(struct a
 				const struct inode *inode)
 {
 	if (context->name_count >= AUDIT_NAMES) {
-		if (inode)
+		if (inode) {
 			printk(KERN_DEBUG "name_count maxed, losing inode data: "
-			       "dev=%02x:%02x, inode=%lu\n",
+			       "dev=%02x:%02x, inode=%lu, fs=%s\n",
 			       MAJOR(inode->i_sb->s_dev),
 			       MINOR(inode->i_sb->s_dev),
-			       inode->i_ino);
-
-		else
+			       inode->i_ino, inode->i_sb->s_type->name);
+			WARN_ONCE(1, "lost inode data");
+		} else
 			printk(KERN_DEBUG "name_count maxed, losing inode data\n");
 		return 1;
 	}


--- NEW FILE patch-2.6.32.7.bz2.sign ---
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: See http://www.kernel.org/signature.html for info

iD8DBQBLYh7oyGugalF9Dw4RArHJAJ97BV3EWN9SdmGjB9C7jzm9Y5C16QCfVWTL
zOVNisB1BhGEnuDnXSRkfHw=
=KrqY
-----END PGP SIGNATURE-----


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/F-11/.cvsignore,v
retrieving revision 1.1066
retrieving revision 1.1067
diff -u -p -r1.1066 -r1.1067
--- .cvsignore	27 Jan 2010 17:22:40 -0000	1.1066
+++ .cvsignore	29 Jan 2010 12:36:10 -0000	1.1067
@@ -5,5 +5,4 @@ kernel-2.6.*.config
 temp-*
 kernel-2.6.32
 linux-2.6.32.tar.bz2
-patch-2.6.32.6.bz2
-patch-2.6.32.7-rc1.bz2
+patch-2.6.32.7.bz2


Index: config-generic
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/F-11/config-generic,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -p -r1.297 -r1.298
--- config-generic	11 Jan 2010 16:19:52 -0000	1.297
+++ config-generic	29 Jan 2010 12:36:10 -0000	1.298
@@ -12,8 +12,7 @@ CONFIG_LOCALVERSION=""
 CONFIG_EXPERIMENTAL=y
 CONFIG_HOTPLUG=y
 CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
+# CONFIG_DEVTMPFS is not set
 CONFIG_STANDALONE=y
 CONFIG_PREVENT_FIRMWARE_BUILD=y
 


Index: kernel.spec
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v
retrieving revision 1.1801
retrieving revision 1.1802
diff -u -p -r1.1801 -r1.1802
--- kernel.spec	27 Jan 2010 17:22:40 -0000	1.1801
+++ kernel.spec	29 Jan 2010 12:36:10 -0000	1.1802
@@ -42,7 +42,7 @@ Summary: The Linux kernel
 # Do we have a -stable update to apply?
 %define stable_update 7
 # Is it a -stable RC?
-%define stable_rc 1
+%define stable_rc 0
 # Set rpm version accordingly
 %if 0%{?stable_update}
 %define stablerev .%{stable_update}
@@ -633,6 +633,7 @@ Patch160: linux-2.6-execshield.patch
 Patch250: linux-2.6-debug-sizeof-structs.patch
 Patch260: linux-2.6-debug-nmi-timeout.patch
 Patch270: linux-2.6-debug-taint-vm.patch
+Patch280: linux-2.6-debug-lost-audit-data.patch
 Patch300: linux-2.6-driver-level-usb-autosuspend.diff
 Patch303: linux-2.6-enable-btusb-autosuspend.patch
 Patch304: linux-2.6-usb-uvc-autosuspend.diff
@@ -1226,6 +1227,7 @@ ApplyPatch linux-2.6-debug-nmi-timeout.p
 ApplyPatch linux-2.6-debug-taint-vm.patch
 ApplyPatch linux-2.6-debug-vm-would-have-oomkilled.patch
 ApplyPatch linux-2.6-debug-always-inline-kzalloc.patch
+ApplyPatch linux-2.6-debug-lost-audit-data.patch
 
 #
 # PCI
@@ -2006,6 +2008,12 @@ fi
 # and build.
 
 %changelog
+* Thu Jan 28 2010 Chuck Ebbert <cebbert at redhat.com>  2.6.32.7-17
+- Linux 2.6.32.7
+- Disable CONFIG_DEVTMPFS
+- Add patch to show filesystem name in audit name_count error
+  messsages and dump the stack on the first error.  
+
 * Wed Jan 27 2010 Chuck Ebbert <cebbert at redhat.com>  2.6.32.7-16.rc1
 - Linux 2.6.32.7-rc1
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/F-11/sources,v
retrieving revision 1.1028
retrieving revision 1.1029
diff -u -p -r1.1028 -r1.1029
--- sources	27 Jan 2010 17:22:41 -0000	1.1028
+++ sources	29 Jan 2010 12:36:10 -0000	1.1029
@@ -1,3 +1,2 @@
 260551284ac224c3a43c4adac7df4879  linux-2.6.32.tar.bz2
-94415211e7854fc9377e948379c86679  patch-2.6.32.6.bz2
-8cde83b5e3e8adc25d2aeb252f8755bc  patch-2.6.32.7-rc1.bz2
+a68305d3e77dddc9555ba58f678a1ce2  patch-2.6.32.7.bz2


Index: upstream
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/F-11/upstream,v
retrieving revision 1.939
retrieving revision 1.940
diff -u -p -r1.939 -r1.940
--- upstream	27 Jan 2010 17:22:41 -0000	1.939
+++ upstream	29 Jan 2010 12:36:11 -0000	1.940
@@ -1,3 +1,2 @@
 linux-2.6.32.tar.bz2
-patch-2.6.32.6.bz2
-patch-2.6.32.7-rc1.bz2
+patch-2.6.32.7.bz2


--- patch-2.6.32.6.bz2.sign DELETED ---


--- patch-2.6.32.7-rc1.bz2.sign DELETED ---



More information about the scm-commits mailing list