You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
xen-scsifront: don't deadlock if the ring becomes full
scsifront_action_handler() will deadlock on host->host_lock, if the ring is full and it has to wait for entries to become available. Signed-off-by: David Vrabel <david.vrabel@citrix.com> Reviewed-by: Juergen Gross <jgross@suse.com>
This commit is contained in:
@@ -541,8 +541,9 @@ static int scsifront_action_handler(struct scsi_cmnd *sc, uint8_t act)
|
||||
if (!shadow)
|
||||
return FAILED;
|
||||
|
||||
spin_lock_irq(host->host_lock);
|
||||
|
||||
for (;;) {
|
||||
spin_lock_irq(host->host_lock);
|
||||
if (!RING_FULL(&info->ring)) {
|
||||
ring_req = scsifront_command2ring(info, sc, shadow);
|
||||
if (ring_req)
|
||||
|
||||
Reference in New Issue
Block a user