Commit 70d72568 authored by Bart Van Assche's avatar Bart Van Assche Committed by Doug Ledford

RDMA/cxgb4: Fix indentation

This patch avoids that smatch reports the following:

drivers/infiniband/hw/cxgb4/device.c:1105: copy_gl_to_skb_pkt() warn: inconsistent indenting
drivers/infiniband/hw/cxgb4/cm.c:835: send_connect() warn: inconsistent indenting
drivers/infiniband/hw/cxgb4/cm.c:841: send_connect() warn: inconsistent indenting
drivers/infiniband/hw/cxgb4/cm.c:888: send_connect() warn: inconsistent indenting
drivers/infiniband/hw/cxgb4/cm.c:894: send_connect() warn: inconsistent indenting
Signed-off-by: default avatarBart Van Assche <bart.vanassche@wdc.com>
Reviewed-by: default avatarSteve Wise <swise@opengridcomputing.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 17e4e543
...@@ -832,13 +832,13 @@ static int send_connect(struct c4iw_ep *ep) ...@@ -832,13 +832,13 @@ static int send_connect(struct c4iw_ep *ep)
t5req->params = t5req->params =
cpu_to_be64(FILTER_TUPLE_V(params)); cpu_to_be64(FILTER_TUPLE_V(params));
t5req->rsvd = cpu_to_be32(isn); t5req->rsvd = cpu_to_be32(isn);
pr_debug("snd_isn %u\n", t5req->rsvd); pr_debug("snd_isn %u\n", t5req->rsvd);
t5req->opt2 = cpu_to_be32(opt2); t5req->opt2 = cpu_to_be32(opt2);
} else { } else {
t6req->params = t6req->params =
cpu_to_be64(FILTER_TUPLE_V(params)); cpu_to_be64(FILTER_TUPLE_V(params));
t6req->rsvd = cpu_to_be32(isn); t6req->rsvd = cpu_to_be32(isn);
pr_debug("snd_isn %u\n", t6req->rsvd); pr_debug("snd_isn %u\n", t6req->rsvd);
t6req->opt2 = cpu_to_be32(opt2); t6req->opt2 = cpu_to_be32(opt2);
} }
} }
...@@ -885,13 +885,13 @@ static int send_connect(struct c4iw_ep *ep) ...@@ -885,13 +885,13 @@ static int send_connect(struct c4iw_ep *ep)
t5req6->params = t5req6->params =
cpu_to_be64(FILTER_TUPLE_V(params)); cpu_to_be64(FILTER_TUPLE_V(params));
t5req6->rsvd = cpu_to_be32(isn); t5req6->rsvd = cpu_to_be32(isn);
pr_debug("snd_isn %u\n", t5req6->rsvd); pr_debug("snd_isn %u\n", t5req6->rsvd);
t5req6->opt2 = cpu_to_be32(opt2); t5req6->opt2 = cpu_to_be32(opt2);
} else { } else {
t6req6->params = t6req6->params =
cpu_to_be64(FILTER_TUPLE_V(params)); cpu_to_be64(FILTER_TUPLE_V(params));
t6req6->rsvd = cpu_to_be32(isn); t6req6->rsvd = cpu_to_be32(isn);
pr_debug("snd_isn %u\n", t6req6->rsvd); pr_debug("snd_isn %u\n", t6req6->rsvd);
t6req6->opt2 = cpu_to_be32(opt2); t6req6->opt2 = cpu_to_be32(opt2);
} }
......
...@@ -1102,8 +1102,8 @@ static inline struct sk_buff *copy_gl_to_skb_pkt(const struct pkt_gl *gl, ...@@ -1102,8 +1102,8 @@ static inline struct sk_buff *copy_gl_to_skb_pkt(const struct pkt_gl *gl,
if (unlikely(!skb)) if (unlikely(!skb))
return NULL; return NULL;
__skb_put(skb, gl->tot_len + sizeof(struct cpl_pass_accept_req) + __skb_put(skb, gl->tot_len + sizeof(struct cpl_pass_accept_req) +
sizeof(struct rss_header) - pktshift); sizeof(struct rss_header) - pktshift);
/* /*
* This skb will contain: * This skb will contain:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment