Skip to content

Commit 4cb24c5

Browse files
elfringjgunthorpe
authored andcommitted
IB/iser: Combine substrings for three messages
The script "checkpatch.pl" pointed information out like the following. WARNING: quoted string split across lines Thus fix the affected source code places. Signed-off-by: Markus Elfring <[email protected]> Reviewed-by: Max Gurtovoy <[email protected]> Signed-off-by: Jason Gunthorpe <[email protected]>
1 parent d769e6b commit 4cb24c5

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

drivers/infiniband/ulp/iser/iser_initiator.c

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,7 @@ iser_prepare_write_cmd(struct iscsi_task *task,
142142
hdr->write_va = cpu_to_be64(mem_reg->sge.addr + unsol_sz);
143143
}
144144

145-
iser_dbg("Cmd itt:%d, WRITE tags, RKEY:%#.4X "
146-
"VA:%#llX + unsol:%d\n",
145+
iser_dbg("Cmd itt:%d, WRITE tags, RKEY:%#.4X VA:%#llX + unsol:%d\n",
147146
task->itt, mem_reg->rkey,
148147
(unsigned long long)mem_reg->sge.addr, unsol_sz);
149148
}
@@ -473,8 +472,7 @@ int iser_send_data_out(struct iscsi_conn *conn,
473472
tx_desc->num_sge = 2;
474473

475474
if (buf_offset + data_seg_len > iser_task->data[ISER_DIR_OUT].data_len) {
476-
iser_err("Offset:%ld & DSL:%ld in Data-Out "
477-
"inconsistent with total len:%ld, itt:%d\n",
475+
iser_err("Offset:%ld & DSL:%ld in Data-Out inconsistent with total len:%ld, itt:%d\n",
478476
buf_offset, data_seg_len,
479477
iser_task->data[ISER_DIR_OUT].data_len, itt);
480478
err = -EINVAL;
@@ -612,8 +610,8 @@ iser_check_remote_inv(struct iser_conn *iser_conn,
612610
iser_conn, rkey);
613611

614612
if (unlikely(!iser_conn->snd_w_inv)) {
615-
iser_err("conn %p: unexpected remote invalidation, "
616-
"terminating connection\n", iser_conn);
613+
iser_err("conn %p: unexpected remote invalidation, terminating connection\n",
614+
iser_conn);
617615
return -EPROTO;
618616
}
619617

0 commit comments

Comments
 (0)