blob: 65f024b809589bc638de15053257d31da5b206cc [file] [log] [blame]
Jamal Hadi Salimdb753072005-04-24 20:10:16 -07001#ifndef __NET_TC_DEF_H
2#define __NET_TC_DEF_H
3
4#include <net/act_api.h>
5
David S. Millere9ce1cd2006-08-21 23:54:55 -07006struct tcf_defact {
7 struct tcf_common common;
8 u32 tcfd_datalen;
9 void *tcfd_defdata;
Jamal Hadi Salimdb753072005-04-24 20:10:16 -070010};
David S. Millere9ce1cd2006-08-21 23:54:55 -070011#define to_defact(pc) \
12 container_of(pc, struct tcf_defact, common)
Jamal Hadi Salimdb753072005-04-24 20:10:16 -070013
David S. Millere9ce1cd2006-08-21 23:54:55 -070014#endif /* __NET_TC_DEF_H */