| 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
|---|---|
| 2 | #ifndef __NET_NETDEV_NETLINK_H |
| 3 | #define __NET_NETDEV_NETLINK_H |
| 4 | |
| 5 | #include <linux/list.h> |
| 6 | |
| 7 | struct netdev_nl_sock { |
| 8 | struct mutex lock; |
| 9 | struct list_head bindings; |
| 10 | }; |
| 11 | |
| 12 | #endif /* __NET_NETDEV_NETLINK_H */ |
| 13 |
