]> Git Repo - linux.git/blame - include/net/bareudp.h
Merge tag 'linux-watchdog-6.6-rc1' of git://www.linux-watchdog.org/linux-watchdog
[linux.git] / include / net / bareudp.h
CommitLineData
571912c6
MV
1/* SPDX-License-Identifier: GPL-2.0 */
2
3#ifndef __NET_BAREUDP_H
4#define __NET_BAREUDP_H
5
dcdd77ee 6#include <linux/netdevice.h>
571912c6 7#include <linux/types.h>
d43600c0 8#include <net/rtnetlink.h>
571912c6 9
d43600c0
EC
10static 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
571912c6 16#endif
This page took 0.242468 seconds and 4 git commands to generate.