Martin Varghese | 571912c | 2020-02-24 10:57:50 +0530 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | |
| 3 | #ifndef __NET_BAREUDP_H |
| 4 | #define __NET_BAREUDP_H |
| 5 | |
Guillaume Nault | dcdd77e | 2021-12-10 20:56:39 +0100 | [diff] [blame] | 6 | #include <linux/netdevice.h> |
Martin Varghese | 571912c | 2020-02-24 10:57:50 +0530 | [diff] [blame] | 7 | #include <linux/types.h> |
Eli Cohen | d43600c | 2019-11-17 14:35:42 +0200 | [diff] [blame] | 8 | #include <net/rtnetlink.h> |
Martin Varghese | 571912c | 2020-02-24 10:57:50 +0530 | [diff] [blame] | 9 | |
Eli Cohen | d43600c | 2019-11-17 14:35:42 +0200 | [diff] [blame] | 10 | static inline bool netif_is_bareudp(const struct net_device *dev) |
| 11 | { |
| 12 | return dev->rtnl_link_ops && |
| 13 | !strcmp(dev->rtnl_link_ops->kind, "bareudp"); |
| 14 | } |
| 15 | |
Martin Varghese | 571912c | 2020-02-24 10:57:50 +0530 | [diff] [blame] | 16 | #endif |