mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 04:26:42 +07:00
ec0595cc44
After the previous patch, struct tc_action should be enough to represent the generic tc action, tcf_common is not necessary any more. This patch gets rid of it to make tc action code more readable. Cc: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
19 lines
281 B
C
19 lines
281 B
C
#ifndef __NET_TC_NAT_H
|
|
#define __NET_TC_NAT_H
|
|
|
|
#include <linux/types.h>
|
|
#include <net/act_api.h>
|
|
|
|
struct tcf_nat {
|
|
struct tc_action common;
|
|
|
|
__be32 old_addr;
|
|
__be32 new_addr;
|
|
__be32 mask;
|
|
u32 flags;
|
|
};
|
|
|
|
#define to_tcf_nat(a) ((struct tcf_nat *)a)
|
|
|
|
#endif /* __NET_TC_NAT_H */
|