mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
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
361 B
C
20 lines
361 B
C
#ifndef __LINUX_TC_IPT_H
|
|
#define __LINUX_TC_IPT_H
|
|
|
|
#include <linux/pkt_cls.h>
|
|
|
|
#define TCA_ACT_IPT 6
|
|
|
|
enum {
|
|
TCA_IPT_UNSPEC,
|
|
TCA_IPT_TABLE,
|
|
TCA_IPT_HOOK,
|
|
TCA_IPT_INDEX,
|
|
TCA_IPT_CNT,
|
|
TCA_IPT_TM,
|
|
TCA_IPT_TARG,
|
|
__TCA_IPT_MAX
|
|
};
|
|
#define TCA_IPT_MAX (__TCA_IPT_MAX - 1)
|
|
|
|
#endif
|