nvmet: avoid unneeded assignment of submit_bio return value
We actually using the cookie returned from the last submit_bio call. Signed-off-by: Max Gurtovoy <maxg@mellanox.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
This commit is contained in:
parent
b27c1e683d
commit
c2f30f08c1
@ -85,7 +85,7 @@ static void nvmet_execute_rw(struct nvmet_req *req)
|
|||||||
bio_set_op_attrs(bio, op, op_flags);
|
bio_set_op_attrs(bio, op, op_flags);
|
||||||
|
|
||||||
bio_chain(bio, prev);
|
bio_chain(bio, prev);
|
||||||
cookie = submit_bio(prev);
|
submit_bio(prev);
|
||||||
}
|
}
|
||||||
|
|
||||||
sector += sg->length >> 9;
|
sector += sg->length >> 9;
|
||||||
|
Loading…
Reference in New Issue
Block a user