Browse Source

fix byte stats in kernel module

pull/81/head
Richard Fuchs 11 years ago
parent
commit
c21193a329
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel-module/xt_RTPENGINE.c

+ 1
- 1
kernel-module/xt_RTPENGINE.c View File

@ -2256,7 +2256,7 @@ out:
g->stats.errors++;
else {
g->stats.packets++;
g->stats.bytes += skb->len;
g->stats.bytes += datalen;
}
spin_unlock_irqrestore(&g->stats_lock, flags);


Loading…
Cancel
Save