summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorAshish Sharma <ashishsharma@google.com>2011-10-04 13:11:47 -0700
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:39:11 -0800
commit7098e8e32c2dfcfc1b8e00a62d3fbbe13e00b214 (patch)
tree7d771bd87409e99feeca8161af2cc0e594243a71 /net
parent670f9d63b15724a566b7a586252787bb587dc4da (diff)
netfilter: xt_qtaguid: Fix the stats info display order
Change-Id: I3bf165c31f35a6c7dc212f23df5eefaeb8129d0d Signed-off-by: Ashish Sharma <ashishsharma@google.com>
Diffstat (limited to 'net')
-rw-r--r--net/netfilter/xt_qtaguid.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/net/netfilter/xt_qtaguid.c b/net/netfilter/xt_qtaguid.c
index b6b95c395e87..5d73ecaf540a 100644
--- a/net/netfilter/xt_qtaguid.c
+++ b/net/netfilter/xt_qtaguid.c
@@ -2383,12 +2383,12 @@ static int pp_stats_line(struct proc_print_info *ppi, int cnt_set)
"idx iface acct_tag_hex uid_tag_int cnt_set "
"rx_bytes rx_packets "
"tx_bytes tx_packets "
- "rx_tcp_packets rx_tcp_bytes "
- "rx_udp_packets rx_udp_bytes "
- "rx_other_packets rx_other_bytes "
- "tx_tcp_packets tx_tcp_bytes "
- "tx_udp_packets tx_udp_bytes "
- "tx_other_packets tx_other_bytes\n");
+ "rx_tcp_bytes rx_tcp_packets "
+ "rx_udp_bytes rx_udp_packets "
+ "rx_other_bytes rx_other_packets "
+ "tx_tcp_bytes tx_tcp_packets "
+ "tx_udp_bytes tx_udp_packets "
+ "tx_other_bytes tx_other_packets\n");
} else {
tag_t tag = ppi->ts_entry->tn.tag;
uid_t stat_uid = get_uid_from_tag(tag);