mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Re: 2.4.18 beats 2.5.50 in hard drive access????
@ 2002-12-06 23:00 David Ashley
  2002-12-07  2:10 ` Alan Cox
  0 siblings, 1 reply; 15+ messages in thread
From: David Ashley @ 2002-12-06 23:00 UTC (permalink / raw)
  To: alan; +Cc: linux-kernel

>On Fri, 2002-12-06 at 19:29, David Ashley wrote:
>>     ide0: BM-DMA at 0x1880-0x1887, BIOS settings: hda:pio, hdb:DMA
>>     ide1: BM-DMA at 0x1888-0x188f, BIOS settings: hdc:pio, hdd:DMA
>
>When we read the settings DMA was disabled on hda and hdc. We therefore
>assumed the BIOS did that for a reason and followed caution.
>
>What happens if you do
>
>        hdparm -d1 /dev/hda
>
>?

hda is an IDE cdrom drive, but here it is:

root@test:~# hdparm -d1 /dev/hda

/dev/hda:
 setting using_dma to 1 (on)
 using_dma    =  1 (on)
root@test:~# 

root@test:~# hdparm -d1 /dev/hdb

/dev/hdb:
 setting using_dma to 1 (on)
 using_dma    =  1 (on)
root@test:~# 
root@test:~# hdparm /dev/hdb    

/dev/hdb:
 multcount    = 16 (on)
 I/O support  =  0 (default 16-bit)
 unmaskirq    =  0 (off)
 using_dma    =  1 (on)
 keepsettings =  0 (off)
 nowerr       =  0 (off)
 readonly     =  0 (off)
 readahead    = 256 (on)
 HDIO_GETGEO_BIG failed: Inappropriate ioctl for device
root@test:~# hdparm -h

hdparm - get/set hard disk parameters - version v4.1

Usage:  hdparm  [options] [device] ..

Options:
 -a   get/set fs readahead
 -A   set drive read-lookahead flag (0/1)
 -B   get Advanced Power Management setting (1-255)
 -c   get/set IDE 32-bit IO setting
 -C   check IDE power mode status
 -d   get/set using_dma flag
 -D   enable/disable drive defect-mgmt
 -E   set cd-rom drive speed
 -f   flush buffer cache for device on exit
 -g   display drive geometry
 -h   display terse usage information
 -i   display drive identification
 -I   read drive identification directly from drive
 -k   get/set keep_settings_over_reset flag (0/1)
 -K   set drive keep_features_over_reset flag (0/1)
 -L   set drive doorlock (0/1) (removable harddisks only)
 -m   get/set multiple sector count
 -n   get/set ignore-write-errors flag (0/1)
 -p   set PIO mode on IDE interface chipset (0,1,2,3,4,...)
 -P   set drive prefetch count
 -q   change next setting quietly
 -r   get/set readonly flag (DANGEROUS to set)
 -R   register an IDE interface (DANGEROUS)
 -S   set standby (spindown) timeout
 -t   perform device read timings
 -T   perform cache read timings
 -u   get/set unmaskirq flag (0/1)
 -U   un-register an IDE interface (DANGEROUS)
 -v   default; same as -acdgkmnru (-gr for SCSI, -adgr for XT)
 -V   display program version and exit immediately
 -w   perform device reset (DANGEROUS)
 -W   set drive write-caching flag (0/1) (DANGEROUS)
 -x   perform device for hotswap flag (0/1) (DANGEROUS)
 -X   set IDE xfer mode (DANGEROUS)
 -y   put IDE drive in standby mode
 -Y   put IDE drive to sleep
 -Z   disable Seagate auto-powersaving mode
root@test:~#  

-Dave

^ permalink raw reply	[flat|nested] 15+ messages in thread
* Re: 2.4.18 beats 2.5.50 in hard drive access????
@ 2002-12-07 17:19 David Ashley
  0 siblings, 0 replies; 15+ messages in thread
From: David Ashley @ 2002-12-07 17:19 UTC (permalink / raw)
  To: linux-kernel

One other item I was advised to mention. All the drives in question are
set to cable select mode. Now that I mention it I'm not 100% certain of
the CDROM drive. I think it is cable select too.

-Dave

^ permalink raw reply	[flat|nested] 15+ messages in thread
* RE: 2.4.18 beats 2.5.50 in hard drive access????
@ 2002-12-07 15:25 David Ashley
  0 siblings, 0 replies; 15+ messages in thread
From: David Ashley @ 2002-12-07 15:25 UTC (permalink / raw)
  To: linux-kernel

Manish Lachwani (manish@Zambeel.com) wrote:
>Can you also make sure that write cache is ON? hdparm -q -W 1 /dev/hdX. And 
>also the READ cache. hdparm -q -A 1 /dev/hdX. 
>
>Also, from the IDENTIFY information below, it looks like no UDMA mode is set 
>for the device. It always is set to multiword dma 2.

I tried both hdparm commands on hdb/hdc/hdd and they didn't print out any
errors, but the performance hasn't changed any. I'm only concerned with
scattered read access performance, write performance is fairly irrelevant.

Is the lack of a UDMA mode related to the kernel message of "DMA disabled"?

Thanks--
Dave

^ permalink raw reply	[flat|nested] 15+ messages in thread
* Re: 2.4.18 beats 2.5.50 in hard drive access????
@ 2002-12-07  5:51 David Ashley
  0 siblings, 0 replies; 15+ messages in thread
From: David Ashley @ 2002-12-07  5:51 UTC (permalink / raw)
  To: tadams-lists; +Cc: linux-kernel

hdparm -t yields similiar results on 2.4.18 and 2.5.50. What is a huge
difference is the scattered reads from a disk. At least it is good to
see other people experiencing similiar kernel messages. Would it help to
post the program? Here it is anyway:

Thanks--
Dave

//compile with
//gcc t.c -o t -lpthread

#include <stdio.h>
#include <stdlib.h>
#include <linux/fcntl.h>
#include <unistd.h>
#include <linux/unistd.h>
#include <sys/time.h>
#include <pthread.h>

char DEVNAME[128];
extern long long lseek64(int,long long,int);
unsigned char *tbuff;

long long now(void)
{
struct timeval tv;
	gettimeofday(&tv,0);
	return tv.tv_sec*1000000ll + tv.tv_usec;
}
int intcomp(const void *v1,const void *v2)
{
	return *(unsigned long *)v1 - *(unsigned long *)v2;
}
#define NUM 250
#define BLOCK (188*128*4ll)
int fd;
long long l;
char state[NUM];
void *readfunc(void *a)
{
long long off;
int lfd;
int r;
	lfd=open(DEVNAME,O_RDONLY|O_LARGEFILE|O_SYNC);
	off=(rand()&0x7fffffff)%l*BLOCK;
	lseek64(lfd,off,SEEK_SET);
	r=read(lfd,tbuff,BLOCK);
	state[(int)a]=1;
	close(lfd);
	return 0;
}


int main(int argc,char **argv)
{
long long lres;
int res;
int i,j;
long long start,off;
unsigned char *p;

if(argc<2) {printf("specify device to test\n");exit(0);}
strcpy(DEVNAME,argv[1]);
tbuff=malloc(BLOCK+4096);
fd=open(argv[1],O_RDONLY|O_LARGEFILE);
printf("fd=%d\n",fd);
if(fd<0) exit(0);
while((int)tbuff & 4095) ++tbuff; // align to PAGE_SIZE


l=lseek64(fd,0ll,SEEK_END);
printf("Total volume size=%lld megabytes\n",l/0x100000);
l/=BLOCK;
printf("%d blocks\n",l);
	start=now();
	srand((int)start);
	for(i=0;i<NUM;++i)
	{
		pthread_t tt;
		memset(&tt,0,sizeof(tt));
		pthread_create(&tt,0,readfunc,(void *)i);
	}
	for(;;)
	{
		for(i=0;i<NUM;++i)
			if(!state[i]) break;
		if(i==NUM) break;
		usleep(10000);
	}
	start=now()-start;
	printf("%f seconds\n",start/(float)1000000.0);
	printf("%f mbytes/second\n",(float)BLOCK*NUM/start);
	return 0;
}

^ permalink raw reply	[flat|nested] 15+ messages in thread
* RE: 2.4.18 beats 2.5.50 in hard drive access????
@ 2002-12-07  3:02 Manish Lachwani
  0 siblings, 0 replies; 15+ messages in thread
From: Manish Lachwani @ 2002-12-07  3:02 UTC (permalink / raw)
  To: 'David Ashley', linux-kernel

Can you also make sure that write cache is ON? hdparm -q -W 1 /dev/hdX. And
also the READ cache. hdparm -q -A 1 /dev/hdX. 

Also, from the IDENTIFY information below, it looks like no UDMA mode is set
for the device. It always is set to multiword dma 2. 

-----Original Message-----
From: David Ashley [mailto:dash@xdr.com]
Sent: Friday, December 06, 2002 6:49 PM
To: linux-kernel@vger.kernel.org
Subject: RE: 2.4.18 beats 2.5.50 in hard drive access????


Manish Lachwani (manish@Zambeel.com) Wrote:
>Try to set UDMA0 by 
>
>hdparm -X64 /dev/hda 
>
>or UDMA 2 by using: 
>
>hdparm -X66 /dev/hda 
>
>OSB4 should support UDMA 2. If anyting > UDMA2, then IDE warning should 
>appear in dmesg 

hda=a cdrom drive, so I'll apply your advice to hdb:

I tried X64, X66 and X67 and no change in performance, nor did any
warning message appear in dmesg. For some reason my dmesg has a lot of
these:
bio too big device ide0(3,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)
bio too big device ide1(22,64) (256 > 255)
bio too big device ide0(3,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)
bio too big device ide1(22,64) (256 > 255)
bio too big device ide0(3,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)
bio too big device ide1(22,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)
bio too big device ide1(22,64) (256 > 255)
bio too big device ide0(3,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)

>
>CHeck the IDENTIFY information using hdparm -I /dev/hda to determine the 
>UDMA mode supported or /proc/ide/hda/identify, word# 88 

root@test:/var/log# hdparm -I /dev/hdb

/dev/hdb:

 Model=DW CDW08B0-B00AC1A                      , FwRev=710.W771,
SerialNo=DWW-AME8943535
 Config={ HardSect NotMFM HdSw>15uSec SpinMotCtl Fixed DTR>5Mbs FmtGapReq }
 RawCHS=16383/16/63, TrkSize=57600, SectSize=600, ECCbytes=40
 BuffType=DualPortCache, BuffSize=2048kB, MaxMultSect=16, MultSect=16
 CurCHS=17475/15/63, CurSects=-78446341, LBA=yes, LBAsects=156301488
 IORDY=on/off, tPIO={min:120,w/IORDY:120}, tDMA={min:120,rec:120}
 PIO modes: pio0 pio1 pio2 pio3 pio4 
 DMA modes: mdma0 mdma1 *mdma2 udma0 udma1 udma2 udma3 udma4 udma5 
 AdvancedPM=no
 Drive Supports : Reserved : ATA-1 ATA-2 ATA-3 ATA-4 ATA-5 

root@test:/proc/ide/hdb# cat identify 
427a 3fff 0000 0010 e100 0258 003f 0010
0000 000e 5744 2d57 4d41 3845 3439 3533
3533 3900 0000 0000 0003 1000 0028 3137
2e30 3757 3137 5744 4320 5744 3830 3042
422d 3030 4341 4131 2020 2020 2020 2020
2020 2020 2020 2020 2020 2020 2020 8010
0000 2f00 4001 0280 0000 0007 4443 000f
003f fb53 00fb 0110 f8b0 0950 0000 0407
0003 0078 0078 0078 0078 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
003e 0000 346b 4b01 4003 3469 0801 4003
003f 0000 0000 0000 0000 6d00 80fe 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0001 0000 0000 0000 0000 002d 0000 0000
0000 0000 0000 0000 0000 0000 0000 0001
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 001e
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 b7a5

-Dave
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 15+ messages in thread
* RE: 2.4.18 beats 2.5.50 in hard drive access????
@ 2002-12-07  2:48 David Ashley
  0 siblings, 0 replies; 15+ messages in thread
From: David Ashley @ 2002-12-07  2:48 UTC (permalink / raw)
  To: linux-kernel

Manish Lachwani (manish@Zambeel.com) Wrote:
>Try to set UDMA0 by 
>
>hdparm -X64 /dev/hda 
>
>or UDMA 2 by using: 
>
>hdparm -X66 /dev/hda 
>
>OSB4 should support UDMA 2. If anyting > UDMA2, then IDE warning should 
>appear in dmesg 

hda=a cdrom drive, so I'll apply your advice to hdb:

I tried X64, X66 and X67 and no change in performance, nor did any
warning message appear in dmesg. For some reason my dmesg has a lot of
these:
bio too big device ide0(3,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)
bio too big device ide1(22,64) (256 > 255)
bio too big device ide0(3,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)
bio too big device ide1(22,64) (256 > 255)
bio too big device ide0(3,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)
bio too big device ide1(22,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)
bio too big device ide1(22,64) (256 > 255)
bio too big device ide0(3,64) (256 > 255)
bio too big device ide1(22,0) (256 > 255)

>
>CHeck the IDENTIFY information using hdparm -I /dev/hda to determine the 
>UDMA mode supported or /proc/ide/hda/identify, word# 88 

root@test:/var/log# hdparm -I /dev/hdb

/dev/hdb:

 Model=DW CDW08B0-B00AC1A                      , FwRev=710.W771, SerialNo=DWW-AME8943535
 Config={ HardSect NotMFM HdSw>15uSec SpinMotCtl Fixed DTR>5Mbs FmtGapReq }
 RawCHS=16383/16/63, TrkSize=57600, SectSize=600, ECCbytes=40
 BuffType=DualPortCache, BuffSize=2048kB, MaxMultSect=16, MultSect=16
 CurCHS=17475/15/63, CurSects=-78446341, LBA=yes, LBAsects=156301488
 IORDY=on/off, tPIO={min:120,w/IORDY:120}, tDMA={min:120,rec:120}
 PIO modes: pio0 pio1 pio2 pio3 pio4 
 DMA modes: mdma0 mdma1 *mdma2 udma0 udma1 udma2 udma3 udma4 udma5 
 AdvancedPM=no
 Drive Supports : Reserved : ATA-1 ATA-2 ATA-3 ATA-4 ATA-5 

root@test:/proc/ide/hdb# cat identify 
427a 3fff 0000 0010 e100 0258 003f 0010
0000 000e 5744 2d57 4d41 3845 3439 3533
3533 3900 0000 0000 0003 1000 0028 3137
2e30 3757 3137 5744 4320 5744 3830 3042
422d 3030 4341 4131 2020 2020 2020 2020
2020 2020 2020 2020 2020 2020 2020 8010
0000 2f00 4001 0280 0000 0007 4443 000f
003f fb53 00fb 0110 f8b0 0950 0000 0407
0003 0078 0078 0078 0078 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
003e 0000 346b 4b01 4003 3469 0801 4003
003f 0000 0000 0000 0000 6d00 80fe 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0001 0000 0000 0000 0000 002d 0000 0000
0000 0000 0000 0000 0000 0000 0000 0001
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 001e
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 b7a5

-Dave

^ permalink raw reply	[flat|nested] 15+ messages in thread
* Re: 2.4.18 beats 2.5.50 in hard drive access????
@ 2002-12-07  2:36 David Ashley
  0 siblings, 0 replies; 15+ messages in thread
From: David Ashley @ 2002-12-07  2:36 UTC (permalink / raw)
  To: alan; +Cc: linux-kernel

>Ok that would explain why DMA is off on it. The disk puzzles me - for an
>OSB4 the code should be selecting MWDMA2

In the BIOS I tried AUTO on all the drives. I have to explicitly enable
32 bit IO in the bios for each drive, it came up default off. I just enabled
it because 32 bit IO sounded better, but maybe it's not. I didn't try it
with it off. I also tried USER on all the drives where I can then set
the IO mode. There were 5 PIO settings possible plus 2 DMA things, which
I think were UDMA but I can't recall exactly. On all of those I chose the
UDMA2. Otherwise all the settings were identical to what AUTO set them.

Whether AUTO or USER made no difference in performance or in the kernel
messages.

I also have multi device support/raid 0/raid 5 enabled. The drives are
not partitioned, I use the drive itself in the /dev/md0 array. That's
why I get the kernel partition error messages.

I can try some stuff (except a reboot, until Monday). I'm off site now and
can't bring the machine down, but harmless experiments are ok, if there is
anything you want me to try.

-Dave

^ permalink raw reply	[flat|nested] 15+ messages in thread
* RE: 2.4.18 beats 2.5.50 in hard drive access????
@ 2002-12-06 23:02 Manish Lachwani
  0 siblings, 0 replies; 15+ messages in thread
From: Manish Lachwani @ 2002-12-06 23:02 UTC (permalink / raw)
  To: 'Alan Cox', David Ashley; +Cc: Linux Kernel Mailing List

Try to set UDMA0 by 

hdparm -X64 /dev/hda

or UDMA 2 by using:

hdparm -X66 /dev/hda

OSB4 should support UDMA 2. If anyting > UDMA2, then IDE warning should
appear in dmesg

CHeck the IDENTIFY information using hdparm -I /dev/hda to determine the
UDMA mode supported or /proc/ide/hda/identify, word# 88



-----Original Message-----
From: Alan Cox [mailto:alan@lxorguk.ukuu.org.uk]
Sent: Friday, December 06, 2002 3:21 PM
To: David Ashley
Cc: Linux Kernel Mailing List
Subject: Re: 2.4.18 beats 2.5.50 in hard drive access????


On Fri, 2002-12-06 at 19:29, David Ashley wrote:
>     ide0: BM-DMA at 0x1880-0x1887, BIOS settings: hda:pio, hdb:DMA
>     ide1: BM-DMA at 0x1888-0x188f, BIOS settings: hdc:pio, hdd:DMA

When we read the settings DMA was disabled on hda and hdc. We therefore
assumed the BIOS did that for a reason and followed caution.

What happens if you do

	hdparm -d1 /dev/hda

?

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 15+ messages in thread
* 2.4.18 beats 2.5.50 in hard drive access????
@ 2002-12-06 19:29 David Ashley
  2002-12-06 23:20 ` Alan Cox
  0 siblings, 1 reply; 15+ messages in thread
From: David Ashley @ 2002-12-06 19:29 UTC (permalink / raw)
  To: linux-kernel

Same hard drive (Western Digital 7200 rpm 80 gig ATA100 drive).

Test program does scattered reads across disk surface, each read is 96256
bytes, and it uses threads. Each thread opens the device, does a read, then
closes the device. The program spawns 250 threads. The reads are each from a
different random place on the disk. Each time the program is run the random
number generator is seeded from the time of day clock, so the random
locations are always unique.

2.4.18 gets 7.26 megs/second read capacity.
2.5.50 gets 1.92 megs/second read capacity with TCQ off.
2.5.50 gets 1.97 megs/second read capacity with TCQ on, set to 32.

Part of my dmesg is this:
Kernel command line: rw root=/dev/rd/0 rdbase= ide0=ata66 ide1=ata66 idebus=66 
ide_setup: ide0=ata66
ide_setup: ide1=ata66
ide_setup: idebus=66
...
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 66MHz system bus speed for PIO modes
SvrWks OSB4: IDE controller at PCI slot 00:0f.1
SvrWks OSB4: chipset revision 0
SvrWks OSB4: not 100% native mode: will probe irqs later
    ide0: BM-DMA at 0x1880-0x1887, BIOS settings: hda:pio, hdb:DMA
    ide1: BM-DMA at 0x1888-0x188f, BIOS settings: hdc:pio, hdd:DMA
hda: LTN486S, ATAPI CD/DVD-ROM drive
hdb: WDC WD800BB-00CAA1, ATA DISK drive
hda: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
hda: set_drive_speed_status: error=0x04
hda: DMA disabled
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hdc: WDC WD800BB-00CAA1, ATA DISK drive
hdd: WDC WD800BB-00CAA1, ATA DISK drive
hdc: DMA disabled
hdc: DMA disabled
ide1 at 0x170-0x177,0x376 on irq 15
hdb: host protected area => 1
hdb: 156301488 sectors (80026 MB) w/2048KiB Cache, CHS=10337/240/63, (U)DMA
 /dev/ide/host0/bus0/target1/lun0: unknown partition table
hdc: host protected area => 1
hdc: 156301488 sectors (80026 MB) w/2048KiB Cache, CHS=155061/16/63
 /dev/ide/host0/bus1/target0/lun0: unknown partition table
hdd: host protected area => 1
hdd: 156301488 sectors (80026 MB) w/2048KiB Cache, CHS=155061/16/63, (U)DMA
 /dev/ide/host0/bus1/target1/lun0: unknown partition table
hda: ATAPI 48X CD-ROM drive, 120kB Cache


All three drives (hdb,hdc,hdd) are identical.
I put in the idebus=66 because there was a kernel warning about that
earlier but it made no difference. Nor did the ide?=ata66. I've
tried forcing the BIOS to use udma2 instead of autodetecting, since there
was some issue on a google search about that in a similiar problem. No
difference.

Possibly I tried this experiment with 2.5.40 (or 2.5.16) and got better
results, but I'm not certain, and it would have been on completely different
hardware.

On the SeekComplete Error messages I tried turning the IDEDISK_MULTI_MODE
on, but it didn't make any difference (it is on in this case).

Any help appreciated.
-Dave

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2002-12-08 17:18 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-06 23:00 2.4.18 beats 2.5.50 in hard drive access???? David Ashley
2002-12-07  2:10 ` Alan Cox
2002-12-07  4:29   ` Trever L. Adams
2002-12-08  1:55     ` Alan Cox
2002-12-08  3:28       ` Tomas Szepe
2002-12-08 17:27       ` Trever L. Adams
  -- strict thread matches above, loose matches on Subject: below --
2002-12-07 17:19 David Ashley
2002-12-07 15:25 David Ashley
2002-12-07  5:51 David Ashley
2002-12-07  3:02 Manish Lachwani
2002-12-07  2:48 David Ashley
2002-12-07  2:36 David Ashley
2002-12-06 23:02 Manish Lachwani
2002-12-06 19:29 David Ashley
2002-12-06 23:20 ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®