netdev_netlink.h 239 B

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