mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 08:48:48 +00:00
firewire: fw-sbp2: reduce log noise
The block/unblock logic is now sufficiently tested. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
parent
6f73100cbb
commit
a5fd9ec7a2
@ -693,10 +693,8 @@ static void sbp2_conditionally_block(struct sbp2_logical_unit *lu)
|
|||||||
if (!tgt->dont_block && !lu->blocked &&
|
if (!tgt->dont_block && !lu->blocked &&
|
||||||
lu->generation != card->generation) {
|
lu->generation != card->generation) {
|
||||||
lu->blocked = true;
|
lu->blocked = true;
|
||||||
if (++tgt->blocked == 1) {
|
if (++tgt->blocked == 1)
|
||||||
scsi_block_requests(shost);
|
scsi_block_requests(shost);
|
||||||
fw_notify("blocked %s\n", lu->tgt->bus_id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
spin_unlock_irqrestore(&card->lock, flags);
|
spin_unlock_irqrestore(&card->lock, flags);
|
||||||
}
|
}
|
||||||
@ -723,10 +721,8 @@ static void sbp2_conditionally_unblock(struct sbp2_logical_unit *lu)
|
|||||||
}
|
}
|
||||||
spin_unlock_irqrestore(&card->lock, flags);
|
spin_unlock_irqrestore(&card->lock, flags);
|
||||||
|
|
||||||
if (unblock) {
|
if (unblock)
|
||||||
scsi_unblock_requests(shost);
|
scsi_unblock_requests(shost);
|
||||||
fw_notify("unblocked %s\n", lu->tgt->bus_id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user