net: Move && and || to end of previous line
Not including net/atm/ Compiled tested x86 allyesconfig only Added a > 80 column line or two, which I ignored. Existing checkpatch plaints willfully, cheerfully ignored. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
152b6a62ae
commit
f64f9e7192
@@ -437,11 +437,11 @@ void tipc_cltr_recv_routing_table(struct sk_buff *buf)
|
||||
break;
|
||||
case ROUTE_ADDITION:
|
||||
if (!is_slave(tipc_own_addr)) {
|
||||
assert(!in_own_cluster(c_ptr->addr)
|
||||
|| is_slave(rem_node));
|
||||
assert(!in_own_cluster(c_ptr->addr) ||
|
||||
is_slave(rem_node));
|
||||
} else {
|
||||
assert(in_own_cluster(c_ptr->addr)
|
||||
&& !is_slave(rem_node));
|
||||
assert(in_own_cluster(c_ptr->addr) &&
|
||||
!is_slave(rem_node));
|
||||
}
|
||||
n_ptr = c_ptr->nodes[tipc_node(rem_node)];
|
||||
if (!n_ptr)
|
||||
@@ -451,11 +451,11 @@ void tipc_cltr_recv_routing_table(struct sk_buff *buf)
|
||||
break;
|
||||
case ROUTE_REMOVAL:
|
||||
if (!is_slave(tipc_own_addr)) {
|
||||
assert(!in_own_cluster(c_ptr->addr)
|
||||
|| is_slave(rem_node));
|
||||
assert(!in_own_cluster(c_ptr->addr) ||
|
||||
is_slave(rem_node));
|
||||
} else {
|
||||
assert(in_own_cluster(c_ptr->addr)
|
||||
&& !is_slave(rem_node));
|
||||
assert(in_own_cluster(c_ptr->addr) &&
|
||||
!is_slave(rem_node));
|
||||
}
|
||||
n_ptr = c_ptr->nodes[tipc_node(rem_node)];
|
||||
if (n_ptr)
|
||||
|
@@ -378,8 +378,8 @@ static void link_timeout(struct link *l_ptr)
|
||||
struct tipc_msg *msg = buf_msg(l_ptr->first_out);
|
||||
u32 length = msg_size(msg);
|
||||
|
||||
if ((msg_user(msg) == MSG_FRAGMENTER)
|
||||
&& (msg_type(msg) == FIRST_FRAGMENT)) {
|
||||
if ((msg_user(msg) == MSG_FRAGMENTER) &&
|
||||
(msg_type(msg) == FIRST_FRAGMENT)) {
|
||||
length = msg_size(msg_get_wrapped(msg));
|
||||
}
|
||||
if (length) {
|
||||
@@ -2788,8 +2788,8 @@ int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
|
||||
|
||||
/* Is there an incomplete message waiting for this fragment? */
|
||||
|
||||
while (pbuf && ((msg_seqno(buf_msg(pbuf)) != long_msg_seq_no)
|
||||
|| (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
|
||||
while (pbuf && ((msg_seqno(buf_msg(pbuf)) != long_msg_seq_no) ||
|
||||
(msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
|
||||
prev = pbuf;
|
||||
pbuf = pbuf->next;
|
||||
}
|
||||
@@ -3325,8 +3325,8 @@ static void link_print(struct link *l_ptr, struct print_buf *buf,
|
||||
(l_ptr->last_out)), l_ptr->out_queue_size);
|
||||
if ((mod(msg_seqno(buf_msg(l_ptr->last_out)) -
|
||||
msg_seqno(buf_msg(l_ptr->first_out)))
|
||||
!= (l_ptr->out_queue_size - 1))
|
||||
|| (l_ptr->last_out->next != NULL)) {
|
||||
!= (l_ptr->out_queue_size - 1)) ||
|
||||
(l_ptr->last_out->next != NULL)) {
|
||||
tipc_printf(buf, "\nSend queue inconsistency\n");
|
||||
tipc_printf(buf, "first_out= %x ", l_ptr->first_out);
|
||||
tipc_printf(buf, "next_out= %x ", l_ptr->next_out);
|
||||
|
@@ -1136,13 +1136,11 @@ restart:
|
||||
|
||||
/* Loop around if more data is required */
|
||||
|
||||
if ((sz_copied < buf_len) /* didn't get all requested data */
|
||||
&& (!skb_queue_empty(&sk->sk_receive_queue) ||
|
||||
(flags & MSG_WAITALL))
|
||||
/* ... and more is ready or required */
|
||||
&& (!(flags & MSG_PEEK)) /* ... and aren't just peeking at data */
|
||||
&& (!err) /* ... and haven't reached a FIN */
|
||||
)
|
||||
if ((sz_copied < buf_len) && /* didn't get all requested data */
|
||||
(!skb_queue_empty(&sk->sk_receive_queue) ||
|
||||
(flags & MSG_WAITALL)) && /* and more is ready or required */
|
||||
(!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
|
||||
(!err)) /* and haven't reached a FIN */
|
||||
goto restart;
|
||||
|
||||
exit:
|
||||
|
@@ -364,9 +364,9 @@ static struct subscription *subscr_subscribe(struct tipc_subscr *s,
|
||||
sub->seq.upper = htohl(s->seq.upper, swap);
|
||||
sub->timeout = htohl(s->timeout, swap);
|
||||
sub->filter = htohl(s->filter, swap);
|
||||
if ((!(sub->filter & TIPC_SUB_PORTS)
|
||||
== !(sub->filter & TIPC_SUB_SERVICE))
|
||||
|| (sub->seq.lower > sub->seq.upper)) {
|
||||
if ((!(sub->filter & TIPC_SUB_PORTS) ==
|
||||
!(sub->filter & TIPC_SUB_SERVICE)) ||
|
||||
(sub->seq.lower > sub->seq.upper)) {
|
||||
warn("Subscription rejected, illegal request\n");
|
||||
kfree(sub);
|
||||
subscr_terminate(subscriber);
|
||||
|
Reference in New Issue
Block a user