projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
731e208
)
ublk: mention WRITE_ZEROES in comment of ublk_complete_rq()
author
Ziyang Zhang
<ZiyangZhang@linux.alibaba.com>
Tue, 7 Feb 2023 07:08:38 +0000
(15:08 +0800)
committer
Jens Axboe
<axboe@kernel.dk>
Tue, 7 Feb 2023 14:21:31 +0000
(07:21 -0700)
WRITE_ZEROES won't return bytes returned just like FLUSH and DISCARD,
and we can end it directly. Add missing comment for it in
ublk_complete_rq().
Signed-off-by: Ziyang Zhang <ZiyangZhang@linux.alibaba.com>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Link:
https://lore.kernel.org/r/20230207070839.370817-3-ZiyangZhang@linux.alibaba.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/ublk_drv.c
patch
|
blob
|
history
diff --git
a/drivers/block/ublk_drv.c
b/drivers/block/ublk_drv.c
index 55fccce68a9ccbb392e3c3ffb4cdad7e61571b4c..06eddefdf02a29fbcc79ed0b91e088cce62de3a3 100644
(file)
--- a/
drivers/block/ublk_drv.c
+++ b/
drivers/block/ublk_drv.c
@@
-665,7
+665,7
@@
static void ublk_complete_rq(struct request *req)
}
/*
- * FLUSH
or DISCARD
usually won't return bytes returned, so end them
+ * FLUSH
, DISCARD or WRITE_ZEROES
usually won't return bytes returned, so end them
* directly.
*
* Both the two needn't unmap.