Linux 3.2.102
[pandora-kernel.git] / net / netfilter / xt_quota.c
index b4f7dfe..44c8eb4 100644 (file)
@@ -9,9 +9,11 @@
 
 #include <linux/netfilter/x_tables.h>
 #include <linux/netfilter/xt_quota.h>
+#include <linux/module.h>
 
 struct xt_quota_priv {
-       uint64_t quota;
+       spinlock_t      lock;
+       uint64_t        quota;
 };
 
 MODULE_LICENSE("GPL");
@@ -20,8 +22,6 @@ MODULE_DESCRIPTION("Xtables: countdown quota match");
 MODULE_ALIAS("ipt_quota");
 MODULE_ALIAS("ip6t_quota");
 
-static DEFINE_SPINLOCK(quota_lock);
-
 static bool
 quota_mt(const struct sk_buff *skb, struct xt_action_param *par)
 {
@@ -29,7 +29,7 @@ quota_mt(const struct sk_buff *skb, struct xt_action_param *par)
        struct xt_quota_priv *priv = q->master;
        bool ret = q->flags & XT_QUOTA_INVERT;
 
-       spin_lock_bh(&quota_lock);
+       spin_lock_bh(&priv->lock);
        if (priv->quota >= skb->len) {
                priv->quota -= skb->len;
                ret = !ret;
@@ -37,9 +37,7 @@ quota_mt(const struct sk_buff *skb, struct xt_action_param *par)
                /* we do not allow even small packets from now on */
                priv->quota = 0;
        }
-       /* Copy quota back to matchinfo so that iptables can display it */
-       q->quota = priv->quota;
-       spin_unlock_bh(&quota_lock);
+       spin_unlock_bh(&priv->lock);
 
        return ret;
 }
@@ -55,6 +53,7 @@ static int quota_mt_check(const struct xt_mtchk_param *par)
        if (q->master == NULL)
                return -ENOMEM;
 
+       spin_lock_init(&q->master->lock);
        q->master->quota = q->quota;
        return 0;
 }