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

Commit 6661481d authored by Changli Gao's avatar Changli Gao Committed by Patrick McHardy
Browse files

netfilter: nf_conntrack_acct: use skb->len for accounting



use skb->len for accounting as xt_quota does. Since nf_conntrack works
at the network layer, skb_network_offset should always returns ZERO.

Signed-off-by: default avatarChangli Gao <xiaosuo@gmail.com>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent 2452a99d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -966,8 +966,7 @@ void __nf_ct_refresh_acct(struct nf_conn *ct,
		if (acct) {
			spin_lock_bh(&ct->lock);
			acct[CTINFO2DIR(ctinfo)].packets++;
			acct[CTINFO2DIR(ctinfo)].bytes +=
				skb->len - skb_network_offset(skb);
			acct[CTINFO2DIR(ctinfo)].bytes += skb->len;
			spin_unlock_bh(&ct->lock);
		}
	}