freebsd-src/sys/dev/arcmsr
Scott Long dc3a205bc4 Better fix for the errors under high load. Returning CAM_SCSI_BUSY is almost
never correct as CAM has no real understanding of it, and will just immediately
retry the command.  This leads to undesirable cycling of the camisr as well as
a high possibility for the command to exhaust its retries before the driver
can get around to servicing it.

The better fix, as demonstrated here, is to freeze the simq and mark the
command as needing to be tried.  Then when driver can service the command,
the simq gets unfrozen.  This is correct, and documented here to help reduce
the mystery.  However, it also points out a shortcoming in CAM error handling
that makes writing drivers harder.

Submitted by: Erich Chen
2007-03-06 01:12:15 +00:00
..
arcmsr.c Better fix for the errors under high load. Returning CAM_SCSI_BUSY is almost 2007-03-06 01:12:15 +00:00
arcmsr.h Better fix for the errors under high load. Returning CAM_SCSI_BUSY is almost 2007-03-06 01:12:15 +00:00