1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 2 3 #ifndef __NET_BAREUDP_H 3 #ifndef __NET_BAREUDP_H 4 #define __NET_BAREUDP_H 4 #define __NET_BAREUDP_H 5 5 6 #include <linux/netdevice.h> 6 #include <linux/netdevice.h> 7 #include <linux/types.h> 7 #include <linux/types.h> 8 #include <net/rtnetlink.h> 8 #include <net/rtnetlink.h> 9 9 10 static inline bool netif_is_bareudp(const stru 10 static inline bool netif_is_bareudp(const struct net_device *dev) 11 { 11 { 12 return dev->rtnl_link_ops && 12 return dev->rtnl_link_ops && 13 !strcmp(dev->rtnl_link_ops->kin 13 !strcmp(dev->rtnl_link_ops->kind, "bareudp"); 14 } 14 } 15 15 16 #endif 16 #endif 17 17
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.