diff options
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/patches/16_ide_multsect.patch | 16 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 20 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index ef06a14..b198501 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,7 +5,9 @@ gnumach (2:1.3.99.dfsg.cvs20070809-2) unstable; urgency=low debian/patches/14_alloc_params.patch. * Fix zalloc alignment support, and thus alignment of FPU save area (Closes: #440068) - - debian/patches/patches/21_aligned_zalloc.patch + - debian/patches/21_aligned_zalloc.patch + * New patch to enable IDE multiple sector I/O when the drive can do it. + - debian/patches/16_ide_multsect.patch -- Guillem Jover <guillem@debian.org> Thu, 09 Aug 2007 01:45:22 +0300 diff --git a/debian/patches/16_ide_multsect.patch b/debian/patches/16_ide_multsect.patch new file mode 100644 index 0000000..e2d9454 --- /dev/null +++ b/debian/patches/16_ide_multsect.patch @@ -0,0 +1,16 @@ +Index: linux/src/drivers/block/ide.h +=================================================================== +RCS file: /cvsroot/hurd/gnumach/linux/src/drivers/block/Attic/ide.h,v +retrieving revision 1.1 +diff -u -p -r1.1 ide.h +--- linux/src/drivers/block/ide.h 26 Apr 1999 05:51:39 -0000 1.1 ++++ linux/src/drivers/block/ide.h 29 Dec 2007 18:09:54 -0000 +@@ -23,7 +23,7 @@ + * REALLY_SLOW_IO can be defined in ide.c and ide-cd.c, if necessary + */ + #undef REALLY_FAST_IO /* define if ide ports are perfect */ +-#define INITIAL_MULT_COUNT 0 /* off=0; on=2,4,8,16,32, etc.. */ ++#define INITIAL_MULT_COUNT 16 /* off=0; on=2,4,8,16,32, etc.. */ + + #ifndef SUPPORT_SLOW_DATA_PORTS /* 1 to support slow data ports */ + #define SUPPORT_SLOW_DATA_PORTS 1 /* 0 to reduce kernel size */ diff --git a/debian/patches/series b/debian/patches/series index ebef1b0..6884f29 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -5,6 +5,7 @@ 13_ide_dma.patch -p0 14_alloc_params.patch -p0 15_mem_obj_proxy.patch -p0 +16_ide_multsect.patch -p0 20_mmx_support.patch -p0 21_aligned_zalloc.patch -p0 24_pci_irq_fix.patch -p1 |