1 /* SPDX-License-Identifier: GPL-2.0 */ << 2 #ifndef __NET_IFE_H 1 #ifndef __NET_IFE_H 3 #define __NET_IFE_H 2 #define __NET_IFE_H 4 3 5 #include <linux/etherdevice.h> 4 #include <linux/etherdevice.h> 6 #include <linux/rtnetlink.h> 5 #include <linux/rtnetlink.h> >> 6 #include <linux/module.h> 7 #include <uapi/linux/ife.h> 7 #include <uapi/linux/ife.h> 8 8 9 #if IS_ENABLED(CONFIG_NET_IFE) 9 #if IS_ENABLED(CONFIG_NET_IFE) 10 10 11 void *ife_encode(struct sk_buff *skb, u16 meta 11 void *ife_encode(struct sk_buff *skb, u16 metalen); 12 void *ife_decode(struct sk_buff *skb, u16 *met 12 void *ife_decode(struct sk_buff *skb, u16 *metalen); 13 13 14 void *ife_tlv_meta_decode(void *skbdata, const !! 14 void *ife_tlv_meta_decode(void *skbdata, u16 *attrtype, u16 *dlen, u16 *totlen); 15 u16 *dlen, u16 *totl << 16 int ife_tlv_meta_encode(void *skbdata, u16 att 15 int ife_tlv_meta_encode(void *skbdata, u16 attrtype, u16 dlen, 17 const void *dval); 16 const void *dval); 18 17 19 void *ife_tlv_meta_next(void *skbdata); 18 void *ife_tlv_meta_next(void *skbdata); 20 19 21 #else 20 #else 22 21 23 static inline void *ife_encode(struct sk_buff 22 static inline void *ife_encode(struct sk_buff *skb, u16 metalen) 24 { 23 { 25 return NULL; 24 return NULL; 26 } 25 } 27 26 28 static inline void *ife_decode(struct sk_buff 27 static inline void *ife_decode(struct sk_buff *skb, u16 *metalen) 29 { 28 { 30 return NULL; 29 return NULL; 31 } 30 } 32 31 33 static inline void *ife_tlv_meta_decode(void * 32 static inline void *ife_tlv_meta_decode(void *skbdata, u16 *attrtype, u16 *dlen, 34 u16 *t 33 u16 *totlen) 35 { 34 { 36 return NULL; 35 return NULL; 37 } 36 } 38 37 39 static inline int ife_tlv_meta_encode(void *sk 38 static inline int ife_tlv_meta_encode(void *skbdata, u16 attrtype, u16 dlen, 40 const void *dval) 39 const void *dval) 41 { 40 { 42 return 0; 41 return 0; 43 } 42 } 44 43 45 static inline void *ife_tlv_meta_next(void *sk 44 static inline void *ife_tlv_meta_next(void *skbdata) 46 { 45 { 47 return NULL; 46 return NULL; 48 } 47 } 49 48 50 #endif 49 #endif 51 50 52 #endif /* __NET_IFE_H */ 51 #endif /* __NET_IFE_H */ 53 52
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.