Commit 407fc5cf019fc5cb990458a2e38d2c0a27b3cb30
Committed by
David S. Miller
1 parent
5d5baa9266
Exists in
master
and in
39 other branches
ax25: Fix SIOCAX25GETINFO ioctl
rcv_q & snd_q initializations were reversed in commit 31e6d363abcd0d05766c82f1a9c905a4c974a199 (net: correct off-by-one write allocations reports) Signed-off-by: Jan Rafaj <jr+netfilter-devel@cedric.unob.cz> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
net/ax25/af_ax25.c
... | ... | @@ -1781,8 +1781,8 @@ |
1781 | 1781 | ax25_info.idletimer = ax25_display_timer(&ax25->idletimer) / (60 * HZ); |
1782 | 1782 | ax25_info.n2count = ax25->n2count; |
1783 | 1783 | ax25_info.state = ax25->state; |
1784 | - ax25_info.rcv_q = sk_wmem_alloc_get(sk); | |
1785 | - ax25_info.snd_q = sk_rmem_alloc_get(sk); | |
1784 | + ax25_info.rcv_q = sk_rmem_alloc_get(sk); | |
1785 | + ax25_info.snd_q = sk_wmem_alloc_get(sk); | |
1786 | 1786 | ax25_info.vs = ax25->vs; |
1787 | 1787 | ax25_info.vr = ax25->vr; |
1788 | 1788 | ax25_info.va = ax25->va; |