arm: KVM: Fix SMCCC handling of unimplemented SMC/HVC calls
[linux/fpc-iii.git] / include / net / tc_act / tc_csum.h
blob781f3433a0be3c7e63c0a0d38d7cfe73e1e6302c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NET_TC_CSUM_H
3 #define __NET_TC_CSUM_H
5 #include <linux/types.h>
6 #include <net/act_api.h>
7 #include <linux/tc_act/tc_csum.h>
9 struct tcf_csum {
10 struct tc_action common;
12 u32 update_flags;
14 #define to_tcf_csum(a) ((struct tcf_csum *)a)
16 static inline bool is_tcf_csum(const struct tc_action *a)
18 #ifdef CONFIG_NET_CLS_ACT
19 if (a->ops && a->ops->type == TCA_ACT_CSUM)
20 return true;
21 #endif
22 return false;
25 static inline u32 tcf_csum_update_flags(const struct tc_action *a)
27 return to_tcf_csum(a)->update_flags;
30 #endif /* __NET_TC_CSUM_H */