projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
261abc8
)
netfilter: iptables: use skb->len for accounting
author
Changli Gao
<xiaosuo@gmail.com>
Fri, 23 Jul 2010 14:25:11 +0000
(16:25 +0200)
committer
Patrick McHardy
<kaber@trash.net>
Fri, 23 Jul 2010 14:25:11 +0000
(16:25 +0200)
Use skb->len for accounting as xt_quota does.
Signed-off-by: Changli Gao <xiaosuo@gmail.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
net/ipv4/netfilter/ip_tables.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv4/netfilter/ip_tables.c
b/net/ipv4/netfilter/ip_tables.c
index b38c11810c65938513282a9e8a0699317dad231a..3c584a6765b07b49d755b83eb2dfce436c08b101 100644
(file)
--- a/
net/ipv4/netfilter/ip_tables.c
+++ b/
net/ipv4/netfilter/ip_tables.c
@@
-364,7
+364,7
@@
ipt_do_table(struct sk_buff *skb,
goto no_match;
}
- ADD_COUNTER(e->counters,
ntohs(ip->tot_len)
, 1);
+ ADD_COUNTER(e->counters,
skb->len
, 1);
t = ipt_get_target(e);
IP_NF_ASSERT(t->u.kernel.target);