hdc:hdc: set_multmode: status=0x51 { DriveReady SeekComplete Error }
hdc: set_multmode: error=0x04 { DriveStatusError }
 [PTBL] [523/255/63] hdc1 hdc2

This has been happening at least since 2.2.10. It's probably just
something cosmetic, but shouldn't it still be fixed? Running
vanilla-2.2.16 SMP on i686,

hdc: ST34321A, 4103MB w/128kB Cache, CHS=8894/15/63, (U)DMA

Here's a fix someone on this list suggested some time ago. It seems
to make the symptoms disappear, but I'm not sure wether it fixes the
actual problem. From vanilla-2.2.16:

--- ide-disk.c.orig     Tue Sep 26 01:58:58 2000
+++ ide-disk.c  Tue Sep 26 02:00:36 2000
@@ -856,7 +856,7 @@
                drive->mult_req = INITIAL_MULT_COUNT;
                if (drive->mult_req > id->max_multsect)
                        drive->mult_req = id->max_multsect;
-               if (drive->mult_req || ((id->multsect_valid & 1) &&
id->multsect))
+               if (drive->mult_req && ((id->multsect_valid & 1) &&
id->multsect))
                        drive->special.b.set_multmode = 1;
 #else
                id->multsect = ((id->max_multsect/2) >
1) ? id->max_multsect : 0;


-- 
-=[ Count Zero / TBH - Jussi Hämäläinen - email [EMAIL PROTECTED] ]=-

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to