All of lore.kernel.org
 help / color / mirror / Atom feed
* hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
@ 2001-01-27  8:38 Jacob Luna Lundberg
  2001-01-27  8:48 ` Andre Hedrick
  0 siblings, 1 reply; 5+ messages in thread
From: Jacob Luna Lundberg @ 2001-01-27  8:38 UTC (permalink / raw)
  To: linux-kernel


I've been getting this during the boot sequence for quite some time now.
They don't seem to impact the functionality of the drive any though.  Just
another extra-verbose kernel message I should ignore?  :)

(This is from the 2.4.1-pre10 btw.)

hdd: CD-ROM TW 120D, ATAPI CD/DVD-ROM drive
hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
hdd: set_drive_speed_status: error=0x04
[...]
hdd: ATAPI 12X CD-ROM drive, 240kB Cache, DMA
Uniform CD-ROM driver Revision: 3.12

-Jacob


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

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

* Re: hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
  2001-01-27  8:38 hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error } Jacob Luna Lundberg
@ 2001-01-27  8:48 ` Andre Hedrick
  2001-01-27 13:17   ` Jens Axboe
  0 siblings, 1 reply; 5+ messages in thread
From: Andre Hedrick @ 2001-01-27  8:48 UTC (permalink / raw)
  To: jacob; +Cc: linux-kernel

On Sat, 27 Jan 2001, Jacob Luna Lundberg wrote:

> 
> I've been getting this during the boot sequence for quite some time now.
> They don't seem to impact the functionality of the drive any though.  Just
> another extra-verbose kernel message I should ignore?  :)
> 
> (This is from the 2.4.1-pre10 btw.)
> 
> hdd: CD-ROM TW 120D, ATAPI CD/DVD-ROM drive
> hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
> hdd: set_drive_speed_status: error=0x04

Means your device did not like that command and barfed.
status=0x51, error=0x04 == command aborted next....

> [...]
> hdd: ATAPI 12X CD-ROM drive, 240kB Cache, DMA
> Uniform CD-ROM driver Revision: 3.12
> 
> -Jacob
> 
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> Please read the FAQ at http://www.tux.org/lkml/
> 

Andre Hedrick
Linux ATA Development

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

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

* Re: hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
  2001-01-27  8:48 ` Andre Hedrick
@ 2001-01-27 13:17   ` Jens Axboe
  2001-01-27 19:26     ` Jacob Luna Lundberg
  2001-01-27 19:59     ` Andre Hedrick
  0 siblings, 2 replies; 5+ messages in thread
From: Jens Axboe @ 2001-01-27 13:17 UTC (permalink / raw)
  To: Andre Hedrick; +Cc: jacob, linux-kernel

On Sat, Jan 27 2001, Andre Hedrick wrote:
> > I've been getting this during the boot sequence for quite some time now.
> > They don't seem to impact the functionality of the drive any though.  Just
> > another extra-verbose kernel message I should ignore?  :)
> > 
> > (This is from the 2.4.1-pre10 btw.)
> > 
> > hdd: CD-ROM TW 120D, ATAPI CD/DVD-ROM drive
> > hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
> > hdd: set_drive_speed_status: error=0x04
> 
> Means your device did not like that command and barfed.
> status=0x51, error=0x04 == command aborted next....

My gut tells me that this is the 'get last written' command, and even
with the quiet flag we get the IDE error status printed. Could you
try and add

	goto use_toc;

add the top of drivers/cdrom/cdrom.c:cdrom_get_last_written() and
see if that makes the error disappear?

-- 
* Jens Axboe <axboe@suse.de>
* SuSE Labs
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

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

* Re: hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
  2001-01-27 13:17   ` Jens Axboe
@ 2001-01-27 19:26     ` Jacob Luna Lundberg
  2001-01-27 19:59     ` Andre Hedrick
  1 sibling, 0 replies; 5+ messages in thread
From: Jacob Luna Lundberg @ 2001-01-27 19:26 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Andre Hedrick, linux-kernel


I gave it a whirl.  Sadly, no change.

On Sat, 27 Jan 2001, Jens Axboe wrote:
> My gut tells me that this is the 'get last written' command, and even
> with the quiet flag we get the IDE error status printed. Could you
> try and add
>
> 	goto use_toc;
>
> add the top of drivers/cdrom/cdrom.c:cdrom_get_last_written() and
> see if that makes the error disappear?

-Jacob

-- 

Reechani, Sentrosi, Vasi

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

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

* Re: hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
  2001-01-27 13:17   ` Jens Axboe
  2001-01-27 19:26     ` Jacob Luna Lundberg
@ 2001-01-27 19:59     ` Andre Hedrick
  1 sibling, 0 replies; 5+ messages in thread
From: Andre Hedrick @ 2001-01-27 19:59 UTC (permalink / raw)
  To: Jens Axboe; +Cc: jacob, linux-kernel

On Sat, 27 Jan 2001, Jens Axboe wrote:

> On Sat, Jan 27 2001, Andre Hedrick wrote:
> > > I've been getting this during the boot sequence for quite some time now.
> > > They don't seem to impact the functionality of the drive any though.  Just
> > > another extra-verbose kernel message I should ignore?  :)
> > > 
> > > (This is from the 2.4.1-pre10 btw.)
> > > 
> > > hdd: CD-ROM TW 120D, ATAPI CD/DVD-ROM drive
> > > hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error }
> > > hdd: set_drive_speed_status: error=0x04
> > 
> > Means your device did not like that command and barfed.
> > status=0x51, error=0x04 == command aborted next....
> 
> My gut tells me that this is the 'get last written' command, and even
> with the quiet flag we get the IDE error status printed. Could you
> try and add
> 
> 	goto use_toc;
> 
> add the top of drivers/cdrom/cdrom.c:cdrom_get_last_written() and
> see if that makes the error disappear?

It is an ATA command not ATAPI.

Andre Hedrick
Linux ATA Development

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

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

end of thread, other threads:[~2001-01-27 20:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-01-27  8:38 hdd: set_drive_speed_status: status=0x51 { DriveReady SeekComplete Error } Jacob Luna Lundberg
2001-01-27  8:48 ` Andre Hedrick
2001-01-27 13:17   ` Jens Axboe
2001-01-27 19:26     ` Jacob Luna Lundberg
2001-01-27 19:59     ` Andre Hedrick

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.