[kernel] r11976 - in dists/sid/linux-2.6/debian: . patches/features/x86 patches/series

Dann Frazier dannf at alioth.debian.org
Wed Aug 6 19:56:26 UTC 2008


Author: dannf
Date: Wed Aug  6 19:56:25 2008
New Revision: 11976

Log:
device_create interface changed between 2.6.26 and 2.6.27; adjust hpilo
backport appropriately. Fixes a NULL pointer dereference in ilo_probe().

Added:
   dists/sid/linux-2.6/debian/patches/features/x86/drivers-hp_ilo-fixup.patch
Modified:
   dists/sid/linux-2.6/debian/changelog
   dists/sid/linux-2.6/debian/patches/series/2

Modified: dists/sid/linux-2.6/debian/changelog
==============================================================================
--- dists/sid/linux-2.6/debian/changelog	(original)
+++ dists/sid/linux-2.6/debian/changelog	Wed Aug  6 19:56:25 2008
@@ -74,7 +74,11 @@
   * METH: fix MAC address setup
   * Export the reset button of the QNAP TS-409.
 
- -- Bastian Blank <waldi at debian.org>  Thu, 31 Jul 2008 19:45:03 +0200
+  [ dann frazier ]
+  * device_create interface changed between 2.6.26 and 2.6.27; adjust hpilo
+    backport appropriately. Fixes a NULL pointer dereference in ilo_probe().
+
+ -- dann frazier <dannf at debian.org>  Wed, 06 Aug 2008 13:36:00 -0600
 
 linux-2.6 (2.6.26-1) unstable; urgency=low
 

Added: dists/sid/linux-2.6/debian/patches/features/x86/drivers-hp_ilo-fixup.patch
==============================================================================
--- (empty file)
+++ dists/sid/linux-2.6/debian/patches/features/x86/drivers-hp_ilo-fixup.patch	Wed Aug  6 19:56:25 2008
@@ -0,0 +1,11 @@
+--- linux-source-2.6.26/drivers/misc/hpilo.c~	2008-08-06 13:22:32.000000000 -0600
++++ linux-source-2.6.26/drivers/misc/hpilo.c	2008-08-06 13:22:42.000000000 -0600
+@@ -688,7 +688,7 @@
+ 	for (minor = 0 ; minor < MAX_CCB; minor++) {
+ 		struct device *dev;
+ 		dev = device_create(ilo_class, &pdev->dev,
+-				    MKDEV(ilo_major, minor), NULL,
++				    MKDEV(ilo_major, minor),
+ 				    "hpilo!d%dccb%d", devnum, minor);
+ 		if (IS_ERR(dev))
+ 			dev_err(&pdev->dev, "Could not create files\n");

Modified: dists/sid/linux-2.6/debian/patches/series/2
==============================================================================
--- dists/sid/linux-2.6/debian/patches/series/2	(original)
+++ dists/sid/linux-2.6/debian/patches/series/2	Wed Aug  6 19:56:25 2008
@@ -2,3 +2,4 @@
 + bugfix/all/stable/2.6.26.1.patch
 + bugfix/mips/meth-fix_mac.patch
 + features/arm/ts409-export-reset.patch
++ features/x86/drivers-hp_ilo-fixup.patch



More information about the Kernel-svn-changes mailing list