Explorar o código

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>
Max Gurtovoy %!s(int64=8) %!d(string=hai) anos
pai
achega
c2f30f08c1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      drivers/nvme/target/io-cmd.c

+ 1 - 1
drivers/nvme/target/io-cmd.c

@@ -85,7 +85,7 @@ static void nvmet_execute_rw(struct nvmet_req *req)
 			bio_set_op_attrs(bio, op, op_flags);
 
 			bio_chain(bio, prev);
-			cookie = submit_bio(prev);
+			submit_bio(prev);
 		}
 
 		sector += sg->length >> 9;