mirror of
https://github.com/adulau/aha.git
synced 2024-12-30 12:46:17 +00:00
[PATCH] libata: trivial updates to ata_sg_init_one()
There's no need to memset &qc->sgent manually, sg_init_one() clears sgent inside it. Also, kill not-so-necessary sg local variable. Signed-off-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
8a93758170
commit
61c0596c5f
1 changed files with 1 additions and 5 deletions
|
@ -3491,19 +3491,15 @@ void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
|
||||||
|
|
||||||
void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
|
void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
|
||||||
{
|
{
|
||||||
struct scatterlist *sg;
|
|
||||||
|
|
||||||
qc->flags |= ATA_QCFLAG_SINGLE;
|
qc->flags |= ATA_QCFLAG_SINGLE;
|
||||||
|
|
||||||
memset(&qc->sgent, 0, sizeof(qc->sgent));
|
|
||||||
qc->__sg = &qc->sgent;
|
qc->__sg = &qc->sgent;
|
||||||
qc->n_elem = 1;
|
qc->n_elem = 1;
|
||||||
qc->orig_n_elem = 1;
|
qc->orig_n_elem = 1;
|
||||||
qc->buf_virt = buf;
|
qc->buf_virt = buf;
|
||||||
qc->nbytes = buflen;
|
qc->nbytes = buflen;
|
||||||
|
|
||||||
sg = qc->__sg;
|
sg_init_one(&qc->sgent, buf, buflen);
|
||||||
sg_init_one(sg, buf, buflen);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue