search for: evpd

Displaying 3 results from an estimated 3 matches for "evpd".

Did you mean: evp
2001 May 18
1
cdrw firmware update
Hello, I need to do a firmware update for my cdrw and because of a missing linux program for doing that I thought of using wine for trying it. I call the programm FlashTool.exe and no error messages occur. (The surface really looks great!) The programm detects correctly the flashable cdrw-drive even with ide-scsi and the non-flashable cdrom. But then when I click on "continue" nothing
2009 Oct 27
2
[PATCH 3/4] scsi-disk: Factor out SCSI command emulation
...else if (buf[1] & 0x1) { + else if (cdb[1] & 0x1) { /* Vital product data */ - uint8_t page_code = buf[2]; - if (len < 4) { + uint8_t page_code = cdb[2]; + if (datalen < 4) { BADF("Error: Inquiry (EVPD[%02X]) buffer size %d is " - "less than 4\n", page_code, len); - goto fail; + "less than 4\n", page_code, datalen); + goto invalid_cdb; } switch (page_code) { @@ -493,50 +484,5...
2009 Oct 27
2
[PATCH 3/4] scsi-disk: Factor out SCSI command emulation
...else if (buf[1] & 0x1) { + else if (cdb[1] & 0x1) { /* Vital product data */ - uint8_t page_code = buf[2]; - if (len < 4) { + uint8_t page_code = cdb[2]; + if (datalen < 4) { BADF("Error: Inquiry (EVPD[%02X]) buffer size %d is " - "less than 4\n", page_code, len); - goto fail; + "less than 4\n", page_code, datalen); + goto invalid_cdb; } switch (page_code) { @@ -493,50 +484,5...