return xchg(clp, cl);
 }
 
-static inline void tcf_set_drop_reason(struct tcf_result *res,
+struct tc_skb_cb;
+
+static inline struct tc_skb_cb *tc_skb_cb(const struct sk_buff *skb);
+
+static inline enum skb_drop_reason
+tcf_get_drop_reason(const struct sk_buff *skb)
+{
+       return tc_skb_cb(skb)->drop_reason;
+}
+
+static inline void tcf_set_drop_reason(const struct sk_buff *skb,
                                       enum skb_drop_reason reason)
 {
-       res->drop_reason = reason;
+       tc_skb_cb(skb)->drop_reason = reason;
 }
 
 static inline void
 
 
        tc_skb_cb(skb)->mru = 0;
        tc_skb_cb(skb)->post_ct = false;
-       res.drop_reason = *drop_reason;
+       tcf_set_drop_reason(skb, *drop_reason);
 
        mini_qdisc_bstats_cpu_update(miniq, skb);
        ret = tcf_classify(skb, miniq->block, miniq->filter_list, &res, false);
        /* Only tcf related quirks below. */
        switch (ret) {
        case TC_ACT_SHOT:
-               *drop_reason = res.drop_reason;
+               *drop_reason = tcf_get_drop_reason(skb);
                mini_qdisc_qstats_cpu_drop(miniq);
                break;
        case TC_ACT_OK:
 
                                 int act_index,
                                 u32 *last_executed_chain)
 {
-       u32 orig_reason = res->drop_reason;
 #ifdef CONFIG_NET_CLS_ACT
        const int max_reclassify_loop = 16;
        const struct tcf_proto *first_tp;
                         */
                        if (unlikely(n->tp != tp || n->tp->chain != n->chain ||
                                     !tp->ops->get_exts)) {
-                               tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR);
+                               tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
                                return TC_ACT_SHOT;
                        }
 
                        exts = tp->ops->get_exts(tp, n->handle);
                        if (unlikely(!exts || n->exts != exts)) {
-                               tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR);
+                               tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
                                return TC_ACT_SHOT;
                        }
 
                        goto reset;
                }
 #endif
-               if (err >= 0) {
-                       /* Policy drop or drop reason is over-written by
-                        * classifiers with a bogus value(0) */
-                       if (err == TC_ACT_SHOT &&
-                           res->drop_reason == SKB_NOT_DROPPED_YET)
-                               tcf_set_drop_reason(res, orig_reason);
+               if (err >= 0)
                        return err;
-               }
        }
 
        if (unlikely(n)) {
-               tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR);
+               tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
                return TC_ACT_SHOT;
        }
 
                                       tp->chain->block->index,
                                       tp->prio & 0xffff,
                                       ntohs(tp->protocol));
-               tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR);
+               tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
                return TC_ACT_SHOT;
        }
 
                                n = tcf_exts_miss_cookie_lookup(ext->act_miss_cookie,
                                                                &act_index);
                                if (!n) {
-                                       tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR);
+                                       tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
                                        return TC_ACT_SHOT;
                                }
 
 
                        fchain = tcf_chain_lookup_rcu(block, chain);
                        if (!fchain) {
-                               tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR);
+                               tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
                                return TC_ACT_SHOT;
                        }
 
 
                        ext = tc_skb_ext_alloc(skb);
                        if (WARN_ON_ONCE(!ext)) {
-                               tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR);
+                               tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
                                return TC_ACT_SHOT;
                        }