Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 407fc5cf authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

ax25: Fix SIOCAX25GETINFO ioctl



rcv_q & snd_q initializations were reversed in commit
31e6d363
(net: correct off-by-one write allocations reports)

Signed-off-by: default avatarJan Rafaj <jr+netfilter-devel@cedric.unob.cz>
Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5d5baa92
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1781,8 +1781,8 @@ static int ax25_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
		ax25_info.idletimer = ax25_display_timer(&ax25->idletimer) / (60 * HZ);
		ax25_info.n2count   = ax25->n2count;
		ax25_info.state     = ax25->state;
		ax25_info.rcv_q     = sk_wmem_alloc_get(sk);
		ax25_info.snd_q     = sk_rmem_alloc_get(sk);
		ax25_info.rcv_q     = sk_rmem_alloc_get(sk);
		ax25_info.snd_q     = sk_wmem_alloc_get(sk);
		ax25_info.vs        = ax25->vs;
		ax25_info.vr        = ax25->vr;
		ax25_info.va        = ax25->va;