net_sched: act: hide struct tcf_common from API

Now we can totally hide it from modules. tcf_hash_*() API's
will operate on struct tc_action, modules don't need to care about
the details.

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: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
WANG Cong
2014-02-11 17:07:31 -08:00
committad av David S. Miller
förälder 7282ec8cb4
incheckning 86062033fe
19 ändrade filer med 135 tillägg och 206 borttagningar

Visa fil

@@ -9,7 +9,7 @@ struct tcf_csum {
u32 update_flags;
};
#define to_tcf_csum(pc) \
container_of(pc,struct tcf_csum,common)
#define to_tcf_csum(a) \
container_of(a->priv,struct tcf_csum,common)
#endif /* __NET_TC_CSUM_H */