Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6690bae7 authored by FUJITA Tomonori's avatar FUJITA Tomonori Committed by James Bottomley
Browse files

[SCSI] ips: use sg buffer copy helper funcitons



This rewrites ips_scmd_buf_write/read with scsi_sg_copy_from/to_buffer
respectively.

Signed-off-by: default avatarFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Acked-by: default avatarSalyzyn, Mark <Mark_Salyzyn@adaptec.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@HansenPartnership.com>
parent 1a7a2e1a
Loading
Loading
Loading
Loading
+8 −42
Original line number Diff line number Diff line
@@ -3502,28 +3502,11 @@ ips_send_wait(ips_ha_t * ha, ips_scb_t * scb, int timeout, int intr)
static void
ips_scmd_buf_write(struct scsi_cmnd *scmd, void *data, unsigned int count)
{
        int i;
        unsigned int min_cnt, xfer_cnt;
        char *cdata = (char *) data;
        unsigned char *buffer;
	unsigned long flags;
        struct scatterlist *sg = scsi_sglist(scmd);

        for (i = 0, xfer_cnt = 0;
	(i < scsi_sg_count(scmd)) && (xfer_cnt < count);
             i++, sg = sg_next(sg)) {
                min_cnt = min(count - xfer_cnt, sg->length);

                /* kmap_atomic() ensures addressability of the data buffer.*/
                /* local_irq_save() protects the KM_IRQ0 address slot.     */
	local_irq_save(flags);
		buffer = kmap_atomic(sg_page(sg), KM_IRQ0) + sg->offset;
                memcpy(buffer, &cdata[xfer_cnt], min_cnt);
		kunmap_atomic(buffer - sg->offset, KM_IRQ0);
	scsi_sg_copy_from_buffer(scmd, data, count);
	local_irq_restore(flags);

                xfer_cnt += min_cnt;
        }
}

/****************************************************************************/
@@ -3536,28 +3519,11 @@ ips_scmd_buf_write(struct scsi_cmnd *scmd, void *data, unsigned int count)
static void
ips_scmd_buf_read(struct scsi_cmnd *scmd, void *data, unsigned int count)
{
        int i;
        unsigned int min_cnt, xfer_cnt;
        char *cdata = (char *) data;
        unsigned char *buffer;
	unsigned long flags;
        struct scatterlist *sg = scsi_sglist(scmd);

        for (i = 0, xfer_cnt = 0;
             (i < scsi_sg_count(scmd)) && (xfer_cnt < count);
             i++, sg = sg_next(sg)) {
		min_cnt = min(count - xfer_cnt, sg->length);

                /* kmap_atomic() ensures addressability of the data buffer.*/
                /* local_irq_save() protects the KM_IRQ0 address slot.     */
	local_irq_save(flags);
		buffer = kmap_atomic(sg_page(sg), KM_IRQ0) + sg->offset;
                memcpy(&cdata[xfer_cnt], buffer, min_cnt);
		kunmap_atomic(buffer - sg->offset, KM_IRQ0);
	scsi_sg_copy_to_buffer(scmd, data, count);
	local_irq_restore(flags);

                xfer_cnt += min_cnt;
        }
}

/****************************************************************************/