aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ieee1394/sbp2.c
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2006-09-11 14:17:14 -0400
committerStefan Richter <stefanr@s5r6.in-berlin.de>2006-12-07 15:27:30 -0500
commit23077f1d72d279244536f11db51258fc4759c81a (patch)
tree74f44fbe7ee74bddb65325bb73341a8236c01172 /drivers/ieee1394/sbp2.c
parent0e930f437eab6db6de5e3f0efbf10dafffca401a (diff)
ieee1394: sbp2: slightly reorder sbp2scsi_abort
Put the target's fetch agent into reset state before the underlying ORB DMA is unmapped and the ->done handler is called. It is highly unlikely but the target could access that ORB right before sbp2 sends the reset request. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/sbp2.c')
-rw-r--r--drivers/ieee1394/sbp2.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/ieee1394/sbp2.c b/drivers/ieee1394/sbp2.c
index cd156d4e779e..e5ba55bbd935 100644
--- a/drivers/ieee1394/sbp2.c
+++ b/drivers/ieee1394/sbp2.c
@@ -2564,11 +2564,9 @@ static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2564 scsi_print_command(SCpnt); 2564 scsi_print_command(SCpnt);
2565 2565
2566 if (sbp2util_node_is_available(scsi_id)) { 2566 if (sbp2util_node_is_available(scsi_id)) {
2567 sbp2_agent_reset(scsi_id, 1);
2567 2568
2568 /* 2569 /* Return a matching command structure to the free pool. */
2569 * Right now, just return any matching command structures
2570 * to the free pool.
2571 */
2572 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags); 2570 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
2573 command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt); 2571 command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt);
2574 if (command) { 2572 if (command) {
@@ -2589,10 +2587,6 @@ static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2589 } 2587 }
2590 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags); 2588 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
2591 2589
2592 /*
2593 * Initiate a fetch agent reset.
2594 */
2595 sbp2_agent_reset(scsi_id, 1);
2596 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY); 2590 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
2597 } 2591 }
2598 2592