Skip to content

Commit a387935

Browse files
Chaitanya KulkarniChristoph Hellwig
authored andcommitted
nvme-tcp: don't fold the line
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 <[email protected]> Reviewed-by: Sagi Grimberg <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]>
1 parent 462b8b2 commit a387935

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/nvme/host/tcp.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1714,8 +1714,7 @@ static int __nvme_tcp_alloc_io_queues(struct nvme_ctrl *ctrl)
17141714
int i, ret;
17151715

17161716
for (i = 1; i < ctrl->queue_count; i++) {
1717-
ret = nvme_tcp_alloc_queue(ctrl, i,
1718-
ctrl->sqsize + 1);
1717+
ret = nvme_tcp_alloc_queue(ctrl, i, ctrl->sqsize + 1);
17191718
if (ret)
17201719
goto out_free_queues;
17211720
}

0 commit comments

Comments
 (0)