#include <linux/rtnetlink.h>
 #include <linux/skbuff.h>
 #include <linux/bitmap.h>
+#include <linux/netdevice.h>
+#include <linux/hash.h>
 #include <net/netlink.h>
 #include <net/act_api.h>
 #include <net/pkt_cls.h>
        struct Qdisc            *q;
        int                     refcnt;
        u32                     hgenerator;
+       struct hlist_node       hnode;
        struct rcu_head         rcu;
 };
 
        return i > 0 ? (tp_c->hgenerator|0x800)<<20 : 0;
 }
 
+static struct hlist_head *tc_u_common_hash;
+
+#define U32_HASH_SHIFT 10
+#define U32_HASH_SIZE (1 << U32_HASH_SHIFT)
+
+static unsigned int tc_u_hash(const struct tcf_proto *tp)
+{
+       struct net_device *dev = tp->q->dev_queue->dev;
+       u32 qhandle = tp->q->handle;
+       int ifindex = dev->ifindex;
+
+       return hash_64((u64)ifindex << 32 | qhandle, U32_HASH_SHIFT);
+}
+
+static struct tc_u_common *tc_u_common_find(const struct tcf_proto *tp)
+{
+       struct tc_u_common *tc;
+       unsigned int h;
+
+       h = tc_u_hash(tp);
+       hlist_for_each_entry(tc, &tc_u_common_hash[h], hnode) {
+               if (tc->q == tp->q)
+                       return tc;
+       }
+       return NULL;
+}
+
 static int u32_init(struct tcf_proto *tp)
 {
        struct tc_u_hnode *root_ht;
        struct tc_u_common *tp_c;
+       unsigned int h;
 
-       tp_c = tp->q->u32_node;
+       tp_c = tc_u_common_find(tp);
 
        root_ht = kzalloc(sizeof(*root_ht), GFP_KERNEL);
        if (root_ht == NULL)
                        return -ENOBUFS;
                }
                tp_c->q = tp->q;
-               tp->q->u32_node = tp_c;
+               INIT_HLIST_NODE(&tp_c->hnode);
+
+               h = tc_u_hash(tp);
+               hlist_add_head(&tp_c->hnode, &tc_u_common_hash[h]);
        }
 
        tp_c->refcnt++;
        if (--tp_c->refcnt == 0) {
                struct tc_u_hnode *ht;
 
-               tp->q->u32_node = NULL;
+               hlist_del(&tp_c->hnode);
 
                for (ht = rtnl_dereference(tp_c->hlist);
                     ht;
 
 static int __init init_u32(void)
 {
+       int i, ret;
+
        pr_info("u32 classifier\n");
 #ifdef CONFIG_CLS_U32_PERF
        pr_info("    Performance counters on\n");
 #ifdef CONFIG_NET_CLS_ACT
        pr_info("    Actions configured\n");
 #endif
-       return register_tcf_proto_ops(&cls_u32_ops);
+       tc_u_common_hash = kvmalloc_array(U32_HASH_SIZE,
+                                         sizeof(struct hlist_head),
+                                         GFP_KERNEL);
+       if (!tc_u_common_hash)
+               return -ENOMEM;
+
+       for (i = 0; i < U32_HASH_SIZE; i++)
+               INIT_HLIST_HEAD(&tc_u_common_hash[i]);
+
+       ret = register_tcf_proto_ops(&cls_u32_ops);
+       if (ret)
+               kvfree(tc_u_common_hash);
+       return ret;
 }
 
 static void __exit exit_u32(void)
 {
        unregister_tcf_proto_ops(&cls_u32_ops);
+       kvfree(tc_u_common_hash);
 }
 
 module_init(init_u32)