aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFinn Thain <fthain@telegraphics.com.au>2014-10-02 21:42:17 -0400
committerJiri Kosina <jkosina@suse.cz>2014-10-29 09:33:46 -0400
commit542cb4593104ae306970eb181ea42a01f1a79ed2 (patch)
treebc0583772522ffdb747795e70d41196b621c9930
parentde869917c663f44b5b032bff238bad22e15dda56 (diff)
scsi: Fix "choir" and "beeing" malaprops
Signed-off-by: Finn Thain <fthain@telegraphics.com.au> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--Documentation/scsi/scsi_eh.txt4
-rw-r--r--drivers/scsi/aha152x.c2
-rw-r--r--drivers/scsi/mac_scsi.c2
-rw-r--r--include/scsi/scsi_host.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/scsi/scsi_eh.txt b/Documentation/scsi/scsi_eh.txt
index a0c85110a07e..8638f61c8c9d 100644
--- a/Documentation/scsi/scsi_eh.txt
+++ b/Documentation/scsi/scsi_eh.txt
@@ -172,7 +172,7 @@ ways.
172 172
173 - eh_strategy_handler() callback 173 - eh_strategy_handler() callback
174 This is one big callback which should perform whole error 174 This is one big callback which should perform whole error
175 handling. As such, it should do all choirs SCSI midlayer 175 handling. As such, it should do all chores the SCSI midlayer
176 performs during recovery. This will be discussed in [2-2]. 176 performs during recovery. This will be discussed in [2-2].
177 177
178 Once recovery is complete, SCSI EH resumes normal operation by 178 Once recovery is complete, SCSI EH resumes normal operation by
@@ -428,7 +428,7 @@ scmd->allowed.
428scsi_unjam_host() and it is responsible for whole recovery process. 428scsi_unjam_host() and it is responsible for whole recovery process.
429On completion, the handler should have made lower layers forget about 429On completion, the handler should have made lower layers forget about
430all failed scmds and either ready for new commands or offline. Also, 430all failed scmds and either ready for new commands or offline. Also,
431it should perform SCSI EH maintenance choirs to maintain integrity of 431it should perform SCSI EH maintenance chores to maintain integrity of
432SCSI midlayer. IOW, of the steps described in [2-1-2], all steps 432SCSI midlayer. IOW, of the steps described in [2-1-2], all steps
433except for #1 must be implemented by eh_strategy_handler(). 433except for #1 must be implemented by eh_strategy_handler().
434 434
diff --git a/drivers/scsi/aha152x.c b/drivers/scsi/aha152x.c
index e77b72f78006..ee2407b83afb 100644
--- a/drivers/scsi/aha152x.c
+++ b/drivers/scsi/aha152x.c
@@ -345,7 +345,7 @@ CMD_INC_RESID(struct scsi_cmnd *cmd, int inc)
345 345
346enum { 346enum {
347 not_issued = 0x0001, /* command not yet issued */ 347 not_issued = 0x0001, /* command not yet issued */
348 selecting = 0x0002, /* target is beeing selected */ 348 selecting = 0x0002, /* target is being selected */
349 identified = 0x0004, /* IDENTIFY was sent */ 349 identified = 0x0004, /* IDENTIFY was sent */
350 disconnected = 0x0008, /* target disconnected */ 350 disconnected = 0x0008, /* target disconnected */
351 completed = 0x0010, /* target sent COMMAND COMPLETE */ 351 completed = 0x0010, /* target sent COMMAND COMPLETE */
diff --git a/drivers/scsi/mac_scsi.c b/drivers/scsi/mac_scsi.c
index 6a039eb1cbce..dccce08d0ad4 100644
--- a/drivers/scsi/mac_scsi.c
+++ b/drivers/scsi/mac_scsi.c
@@ -360,7 +360,7 @@ const char * macscsi_info (struct Scsi_Host *spnt) {
360 XXX: Since bus errors in the PDMA routines never happen on my 360 XXX: Since bus errors in the PDMA routines never happen on my
361 computer, the bus error code is untested. 361 computer, the bus error code is untested.
362 If the code works as intended, a bus error results in Pseudo-DMA 362 If the code works as intended, a bus error results in Pseudo-DMA
363 beeing disabled, meaning that the driver switches to slow handshake. 363 being disabled, meaning that the driver switches to slow handshake.
364 If bus errors are NOT extremely rare, this has to be changed. 364 If bus errors are NOT extremely rare, this has to be changed.
365*/ 365*/
366 366
diff --git a/include/scsi/scsi_host.h b/include/scsi/scsi_host.h
index ba2034779961..b286b5787c85 100644
--- a/include/scsi/scsi_host.h
+++ b/include/scsi/scsi_host.h
@@ -555,7 +555,7 @@ struct Scsi_Host {
555 * __devices is protected by the host_lock, but you should 555 * __devices is protected by the host_lock, but you should
556 * usually use scsi_device_lookup / shost_for_each_device 556 * usually use scsi_device_lookup / shost_for_each_device
557 * to access it and don't care about locking yourself. 557 * to access it and don't care about locking yourself.
558 * In the rare case of beeing in irq context you can use 558 * In the rare case of being in irq context you can use
559 * their __ prefixed variants with the lock held. NEVER 559 * their __ prefixed variants with the lock held. NEVER
560 * access this list directly from a driver. 560 * access this list directly from a driver.
561 */ 561 */