diff options
-rw-r--r-- | drivers/firewire/fw-sbp2.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/firewire/fw-sbp2.c b/drivers/firewire/fw-sbp2.c index f2a9a33b47a1..a15e3c7d21d3 100644 --- a/drivers/firewire/fw-sbp2.c +++ b/drivers/firewire/fw-sbp2.c | |||
@@ -716,7 +716,11 @@ static void sbp2_login(struct work_struct *work) | |||
716 | sdev = __scsi_add_device(shost, 0, 0, | 716 | sdev = __scsi_add_device(shost, 0, 0, |
717 | scsilun_to_int(&eight_bytes_lun), lu); | 717 | scsilun_to_int(&eight_bytes_lun), lu); |
718 | if (IS_ERR(sdev)) { | 718 | if (IS_ERR(sdev)) { |
719 | sbp2_send_management_orb(lu, node_id, generation, | 719 | smp_rmb(); /* generation may have changed */ |
720 | generation = device->generation; | ||
721 | smp_rmb(); /* node_id must not be older than generation */ | ||
722 | |||
723 | sbp2_send_management_orb(lu, device->node_id, generation, | ||
720 | SBP2_LOGOUT_REQUEST, lu->login_id, NULL); | 724 | SBP2_LOGOUT_REQUEST, lu->login_id, NULL); |
721 | /* | 725 | /* |
722 | * Set this back to sbp2_login so we fall back and | 726 | * Set this back to sbp2_login so we fall back and |