dummymbuf: Explicitly include if_private.h

struct ifnet is expected to be private for everything outside of the
network stack (sys/net*, except netlink.  Since dummymbuf is part of the
network stack, explicitly include the header to get access to the
private members.

Sponsored by:	Juniper Networks, Inc.
This commit is contained in:
Justin Hibbits 2024-10-31 10:53:43 -04:00
parent 84d7ec4c65
commit 3f2eb1ac23

View File

@ -37,6 +37,7 @@
#include <net/if.h>
#include <net/if_var.h>
#include <net/if_private.h>
#include <net/vnet.h>
#include <net/pfil.h>