d94d9fee9f
This cleanup patch puts struct/union/enum opening braces, in first line to ease grep games. struct something { becomes : struct something { Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
20 lines
325 B
C
20 lines
325 B
C
#ifndef __LINUX_TC_DEF_H
|
|
#define __LINUX_TC_DEF_H
|
|
|
|
#include <linux/pkt_cls.h>
|
|
|
|
struct tc_defact {
|
|
tc_gen;
|
|
};
|
|
|
|
enum {
|
|
TCA_DEF_UNSPEC,
|
|
TCA_DEF_TM,
|
|
TCA_DEF_PARMS,
|
|
TCA_DEF_DATA,
|
|
__TCA_DEF_MAX
|
|
};
|
|
#define TCA_DEF_MAX (__TCA_DEF_MAX - 1)
|
|
|
|
#endif
|