Comment 9 for bug 1896804

Revision history for this message
Thomas Schmitt (scdbackup) wrote :

Hi,

> libburn : SORRY : Asynchronous SCSI error on waiting after START UNIT
> (+ LOAD) [6 28 81] Drive event. Unknown ASCQ with drive event ASC 28.

Grr. A higher level intervened.

In line 198 of file

  ~/xorriso/xorriso-1.5.3/libburn/spc.c

there is

                        if (key == 0x6 && asc == 0x28 && ascq == 0x00)

which should be shortened to

                        if (key == 0x6 && asc == 0x28)

Do you feel apt to make this code change and then run

  make

again ?
(Else i would upload a new tarball.)

This time i simulated the drive reply 0x6, 0x28, 0x81 in the waiting loop
from where the message stems. Without " && ascq == 0x00" in line 198 it
works for me. So now it is up to your drive to tell me where else this
unexpected error code creates mistrust, or what other interesting replies
it has to offer.

Have a nice day :)

Thomas