return 0;
 }
 
-/**
- * tcf_exts_is_predicative - check if a predicative extension is present
- * @exts: tc filter extensions handle
- *
- * Returns 1 if a predicative extension is present, i.e. an extension which
- * might cause further actions and thus overrule the regular tcf_result.
- */
-static inline int
-tcf_exts_is_predicative(struct tcf_exts *exts)
-{
-#ifdef CONFIG_NET_CLS_ACT
-       return exts->nr_actions;
-#else
-       return 0;
-#endif
-}
-
-/**
- * tcf_exts_is_available - check if at least one extension is present
- * @exts: tc filter extensions handle
- *
- * Returns 1 if at least one extension is present.
- */
-static inline int
-tcf_exts_is_available(struct tcf_exts *exts)
-{
-       /* All non-predicative extensions must be added here. */
-       return tcf_exts_is_predicative(exts);
-}
-
 static inline void tcf_exts_to_list(const struct tcf_exts *exts,
                                    struct list_head *actions)
 {
 
 
        t->tcm_handle = f->id;
 
-       if (!f->res.classid && !tcf_exts_is_available(&f->exts))
+       if (!f->res.classid && !tcf_exts_has_actions(&f->exts))
                return skb->len;
 
        nest = nla_nest_start(skb, TCA_OPTIONS);
 
 #define ROUTE4_APPLY_RESULT()                                  \
 {                                                              \
        *res = f->res;                                          \
-       if (tcf_exts_is_available(&f->exts)) {                  \
+       if (tcf_exts_has_actions(&f->exts)) {                   \
                int r = tcf_exts_exec(skb, &f->exts, res);      \
                if (r < 0) {                                    \
                        dont_cache = 1;                         \
 
 
 static inline int tcindex_filter_is_set(struct tcindex_filter_result *r)
 {
-       return tcf_exts_is_predicative(&r->exts) || r->res.classid;
+       return tcf_exts_has_actions(&r->exts) || r->res.classid;
 }
 
 static struct tcindex_filter_result *tcindex_lookup(struct tcindex_data *p,