···172172173173 - eh_strategy_handler() callback174174 This is one big callback which should perform whole error175175- handling. As such, it should do all choirs SCSI midlayer175175+ handling. As such, it should do all chores the SCSI midlayer176176 performs during recovery. This will be discussed in [2-2].177177178178 Once recovery is complete, SCSI EH resumes normal operation by···428428scsi_unjam_host() and it is responsible for whole recovery process.429429On completion, the handler should have made lower layers forget about430430all failed scmds and either ready for new commands or offline. Also,431431-it should perform SCSI EH maintenance choirs to maintain integrity of431431+it should perform SCSI EH maintenance chores to maintain integrity of432432SCSI midlayer. IOW, of the steps described in [2-1-2], all steps433433except for #1 must be implemented by eh_strategy_handler().434434
+1-1
drivers/scsi/aha152x.c
···345345346346enum {347347 not_issued = 0x0001, /* command not yet issued */348348- selecting = 0x0002, /* target is beeing selected */348348+ selecting = 0x0002, /* target is being selected */349349 identified = 0x0004, /* IDENTIFY was sent */350350 disconnected = 0x0008, /* target disconnected */351351 completed = 0x0010, /* target sent COMMAND COMPLETE */
+1-1
drivers/scsi/mac_scsi.c
···360360 XXX: Since bus errors in the PDMA routines never happen on my 361361 computer, the bus error code is untested. 362362 If the code works as intended, a bus error results in Pseudo-DMA 363363- beeing disabled, meaning that the driver switches to slow handshake. 363363+ being disabled, meaning that the driver switches to slow handshake.364364 If bus errors are NOT extremely rare, this has to be changed. 365365*/366366
+1-1
include/scsi/scsi_host.h
···555555 * __devices is protected by the host_lock, but you should556556 * usually use scsi_device_lookup / shost_for_each_device557557 * to access it and don't care about locking yourself.558558- * In the rare case of beeing in irq context you can use558558+ * In the rare case of being in irq context you can use559559 * their __ prefixed variants with the lock held. NEVER560560 * access this list directly from a driver.561561 */