Message ID | 20200916033003.1186727-1-yebin10@huawei.com |
---|---|
State | New |
Headers | show |
Series | mptcp: Fix unsigned 'max_seq' compared with zero in mptcp_data_queue_ofo | expand |
Hi, On Wed, 2020-09-16 at 11:30 +0800, Ye Bin wrote: > Fixes make coccicheck warnig: > net/mptcp/protocol.c:164:11-18: WARNING: Unsigned expression compared with zero: max_seq > 0 > > Reported-by: Hulk Robot <hulkci@huawei.com> > Signed-off-by: Ye Bin <yebin10@huawei.com> > --- > net/mptcp/protocol.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c > index ef0dd2f23482..3b71f6202524 100644 > --- a/net/mptcp/protocol.c > +++ b/net/mptcp/protocol.c > @@ -155,13 +155,14 @@ static void mptcp_data_queue_ofo(struct mptcp_sock *msk, struct sk_buff *skb) > { > struct sock *sk = (struct sock *)msk; > struct rb_node **p, *parent; > + int space; > u64 seq, end_seq, max_seq; > struct sk_buff *skb1; > > seq = MPTCP_SKB_CB(skb)->map_seq; > end_seq = MPTCP_SKB_CB(skb)->end_seq; > - max_seq = tcp_space(sk); > - max_seq = max_seq > 0 ? max_seq + msk->ack_seq : msk->ack_seq; > + space = tcp_space(sk); > + max_seq = space > 0 ? space + msk->ack_seq : msk->ack_seq; > > pr_debug("msk=%p seq=%llx limit=%llx empty=%d", msk, seq, max_seq, > RB_EMPTY_ROOT(&msk->out_of_order_queue)); The patch looks correct, but could you please add an appropriate 'Fixes' tag, and also preserve the reverse x-mas tree order for variables declaration? Also, this patch should likely target the net-next tree, the MPTCP OoO queue is present only there. Thanks! Paolo
diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c index ef0dd2f23482..3b71f6202524 100644 --- a/net/mptcp/protocol.c +++ b/net/mptcp/protocol.c @@ -155,13 +155,14 @@ static void mptcp_data_queue_ofo(struct mptcp_sock *msk, struct sk_buff *skb) { struct sock *sk = (struct sock *)msk; struct rb_node **p, *parent; + int space; u64 seq, end_seq, max_seq; struct sk_buff *skb1; seq = MPTCP_SKB_CB(skb)->map_seq; end_seq = MPTCP_SKB_CB(skb)->end_seq; - max_seq = tcp_space(sk); - max_seq = max_seq > 0 ? max_seq + msk->ack_seq : msk->ack_seq; + space = tcp_space(sk); + max_seq = space > 0 ? space + msk->ack_seq : msk->ack_seq; pr_debug("msk=%p seq=%llx limit=%llx empty=%d", msk, seq, max_seq, RB_EMPTY_ROOT(&msk->out_of_order_queue));
Fixes make coccicheck warnig: net/mptcp/protocol.c:164:11-18: WARNING: Unsigned expression compared with zero: max_seq > 0 Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Ye Bin <yebin10@huawei.com> --- net/mptcp/protocol.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)