aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter
diff options
context:
space:
mode:
authorChangli Gao <xiaosuo@gmail.com>2010-07-23 14:07:47 +0200
committerPatrick McHardy <kaber@trash.net>2010-07-23 14:07:47 +0200
commit49daf6a22622d4e1619aeaad5f9f0472bf89daff (patch)
treea86af0b0f846fc187eaa45ffdad96976bfd38331 /include/linux/netfilter
parentb0c81aa566cccbe26bd99237873fb8428827d82f (diff)
downloadkernel_samsung_smdk4412-49daf6a22622d4e1619aeaad5f9f0472bf89daff.zip
kernel_samsung_smdk4412-49daf6a22622d4e1619aeaad5f9f0472bf89daff.tar.gz
kernel_samsung_smdk4412-49daf6a22622d4e1619aeaad5f9f0472bf89daff.tar.bz2
xt_quota: report initial quota value instead of current value to userspace
We should copy the initial value to userspace for iptables-save and to allow removal of specific quota rules. Signed-off-by: Changli Gao <xiaosuo@gmail.com> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/linux/netfilter')
-rw-r--r--include/linux/netfilter/xt_quota.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netfilter/xt_quota.h b/include/linux/netfilter/xt_quota.h
index 8dc89df..b0d28c6 100644
--- a/include/linux/netfilter/xt_quota.h
+++ b/include/linux/netfilter/xt_quota.h
@@ -11,9 +11,9 @@ struct xt_quota_priv;
struct xt_quota_info {
u_int32_t flags;
u_int32_t pad;
+ aligned_u64 quota;
/* Used internally by the kernel */
- aligned_u64 quota;
struct xt_quota_priv *master;
};