projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
462b8b2
)
nvme-tcp: don't fold the line
author
Chaitanya Kulkarni
<kch@nvidia.com>
Wed, 23 Feb 2022 03:36:57 +0000
(19:36 -0800)
committer
Christoph Hellwig
<hch@lst.de>
Mon, 14 Mar 2022 07:43:05 +0000
(08:43 +0100)
The call to nvme_tcp_alloc_queue() fits perfectly in one line without
exceeding 80 char limit for the line.
Signed-off-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/tcp.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/nvme/host/tcp.c
b/drivers/nvme/host/tcp.c
index bb03ae5ef11f89805f49e645ee62075db565493a..babbc14a4b76a71a373a05bc775729a8b92472ac 100644
(file)
--- a/
drivers/nvme/host/tcp.c
+++ b/
drivers/nvme/host/tcp.c
@@
-1714,8
+1714,7
@@
static int __nvme_tcp_alloc_io_queues(struct nvme_ctrl *ctrl)
int i, ret;
for (i = 1; i < ctrl->queue_count; i++) {
- ret = nvme_tcp_alloc_queue(ctrl, i,
- ctrl->sqsize + 1);
+ ret = nvme_tcp_alloc_queue(ctrl, i, ctrl->sqsize + 1);
if (ret)
goto out_free_queues;
}