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 <kch@nvidia.com> Reviewed-by: Sagi Grimberg <sagi@grimberg.me> Signed-off-by: Christoph Hellwig <hch@lst.de>
1 parent 462b8b2 commit a387935

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

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)