dvdplusrw-tools/dvd+rw-tools-7.1-noevent.patch
Petr Šabata 736bc1e3c8 RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/dvd+rw-tools#1c905019eeb6dd6790c326392d2cb04ffb2dfbac
2020-10-14 23:53:34 +02:00

20 lines
783 B
Diff

diff -up dvd+rw-tools-7.1/transport.hxx.debug dvd+rw-tools-7.1/transport.hxx
--- dvd+rw-tools-7.1/transport.hxx.debug 2012-03-07 10:55:07.167322839 +0100
+++ dvd+rw-tools-7.1/transport.hxx 2012-03-07 15:44:34.384202747 +0100
@@ -1795,9 +1795,12 @@ static int handle_events (Scsi_Command &
break;
case 5: ret |= 1<<5; break; // Multiple Initiators
case 6: // Device Busy
- if ((event[4]&0xF)==1 && // Timeout occured
- (event[5]&0x3)!=0)
- { poll(NULL,0,(descr&0xFFFF)*100+100);
+ if ((event[4]&0xF)==1) // Timeout occured
+ {
+ if ((event[5]&0x3)==0) // No Event
+ return 0; // Ready to accept any command
+
+ poll(NULL,0,(descr&0xFFFF)*100+100);
cmd[0] = 0; // TEST UNIT READY
cmd[5] = 0;
if ((err=cmd.transport()))