It is not actually implemented.
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        struct list_head        list;
 };
 
-#define TCA_CAP_NONE 0
 struct tc_action_ops {
        struct list_head head;
        struct tcf_hashinfo *hinfo;
        char    kind[IFNAMSIZ];
        __u32   type; /* TBD to match kind */
-       __u32   capab;  /* capabilities includes 4 bit version */
        struct module           *owner;
        int     (*act)(struct sk_buff *, const struct tc_action *, struct tcf_result *);
        int     (*dump)(struct sk_buff *, struct tc_action *, int, int);
 
        .kind           = "csum",
        .hinfo          = &csum_hash_info,
        .type           = TCA_ACT_CSUM,
-       .capab          = TCA_CAP_NONE,
        .owner          = THIS_MODULE,
        .act            = tcf_csum,
        .dump           = tcf_csum_dump,
 
        .kind           =       "gact",
        .hinfo          =       &gact_hash_info,
        .type           =       TCA_ACT_GACT,
-       .capab          =       TCA_CAP_NONE,
        .owner          =       THIS_MODULE,
        .act            =       tcf_gact,
        .dump           =       tcf_gact_dump,
 
        .kind           =       "ipt",
        .hinfo          =       &ipt_hash_info,
        .type           =       TCA_ACT_IPT,
-       .capab          =       TCA_CAP_NONE,
        .owner          =       THIS_MODULE,
        .act            =       tcf_ipt,
        .dump           =       tcf_ipt_dump,
        .kind           =       "xt",
        .hinfo          =       &ipt_hash_info,
        .type           =       TCA_ACT_XT,
-       .capab          =       TCA_CAP_NONE,
        .owner          =       THIS_MODULE,
        .act            =       tcf_ipt,
        .dump           =       tcf_ipt_dump,
 
        .kind           =       "mirred",
        .hinfo          =       &mirred_hash_info,
        .type           =       TCA_ACT_MIRRED,
-       .capab          =       TCA_CAP_NONE,
        .owner          =       THIS_MODULE,
        .act            =       tcf_mirred,
        .dump           =       tcf_mirred_dump,
 
        .kind           =       "nat",
        .hinfo          =       &nat_hash_info,
        .type           =       TCA_ACT_NAT,
-       .capab          =       TCA_CAP_NONE,
        .owner          =       THIS_MODULE,
        .act            =       tcf_nat,
        .dump           =       tcf_nat_dump,
 
        .kind           =       "pedit",
        .hinfo          =       &pedit_hash_info,
        .type           =       TCA_ACT_PEDIT,
-       .capab          =       TCA_CAP_NONE,
        .owner          =       THIS_MODULE,
        .act            =       tcf_pedit,
        .dump           =       tcf_pedit_dump,
 
        .kind           =       "police",
        .hinfo          =       &police_hash_info,
        .type           =       TCA_ID_POLICE,
-       .capab          =       TCA_CAP_NONE,
        .owner          =       THIS_MODULE,
        .act            =       tcf_act_police,
        .dump           =       tcf_act_police_dump,
 
        .kind           =       "simple",
        .hinfo          =       &simp_hash_info,
        .type           =       TCA_ACT_SIMP,
-       .capab          =       TCA_CAP_NONE,
        .owner          =       THIS_MODULE,
        .act            =       tcf_simp,
        .dump           =       tcf_simp_dump,
 
        .kind           =       "skbedit",
        .hinfo          =       &skbedit_hash_info,
        .type           =       TCA_ACT_SKBEDIT,
-       .capab          =       TCA_CAP_NONE,
        .owner          =       THIS_MODULE,
        .act            =       tcf_skbedit,
        .dump           =       tcf_skbedit_dump,