Skip to content

Commit 52998cd

Browse files
Merge branch '6.8/scsi-staging' into 6.8/scsi-fixes
Pull in staged fixes for 6.8. Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2 parents 6613476 + 7d1ae55 commit 52998cd

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10282,7 +10282,7 @@ F: drivers/scsi/ibmvscsi/ibmvscsi*
1028210282
F: include/scsi/viosrp.h
1028310283

1028410284
IBM Power Virtual SCSI Device Target Driver
10285-
M: Michael Cyr <mikecyr@linux.ibm.com>
10285+
M: Tyrel Datwyler <tyreld@linux.ibm.com>
1028610286
L: linux-scsi@vger.kernel.org
1028710287
L: target-devel@vger.kernel.org
1028810288
S: Supported

drivers/scsi/initio.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,6 @@ static u16 initio_se2_rd(unsigned long base, u8 addr)
371371
*/
372372
static void initio_se2_wr(unsigned long base, u8 addr, u16 val)
373373
{
374-
u8 rb;
375374
u8 instr;
376375
int i;
377376

@@ -400,7 +399,7 @@ static void initio_se2_wr(unsigned long base, u8 addr, u16 val)
400399
udelay(30);
401400
outb(SE2CS, base + TUL_NVRAM); /* -CLK */
402401
udelay(30);
403-
if ((rb = inb(base + TUL_NVRAM)) & SE2DI)
402+
if (inb(base + TUL_NVRAM) & SE2DI)
404403
break; /* write complete */
405404
}
406405
outb(0, base + TUL_NVRAM); /* -CS */

drivers/scsi/isci/request.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3387,7 +3387,7 @@ static enum sci_status isci_io_request_build(struct isci_host *ihost,
33873387
return SCI_FAILURE;
33883388
}
33893389

3390-
return SCI_SUCCESS;
3390+
return status;
33913391
}
33923392

33933393
static struct isci_request *isci_request_from_tag(struct isci_host *ihost, u16 tag)

drivers/scsi/virtio_scsi.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,6 @@ static void virtscsi_vq_done(struct virtio_scsi *vscsi,
188188
while ((buf = virtqueue_get_buf(vq, &len)) != NULL)
189189
fn(vscsi, buf);
190190

191-
if (unlikely(virtqueue_is_broken(vq)))
192-
break;
193191
} while (!virtqueue_enable_cb(vq));
194192
spin_unlock_irqrestore(&virtscsi_vq->vq_lock, flags);
195193
}

0 commit comments

Comments
 (0)