dpaa2: fix build without WITNESS

Using mutex(9) requires including <sys/lock.h> per manual page.  With
WITNESS the header was cryptically included via dpaa_ni.h -> mbuf.h.
This commit is contained in:
Gleb Smirnoff 2022-10-17 22:38:40 -07:00
parent 2782ed8f6c
commit d6eabdac2e

View file

@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$");
#include <sys/rman.h>
#include <sys/module.h>
#include <sys/malloc.h>
#include <sys/lock.h>
#include <sys/mutex.h>
#include <sys/_cpuset.h>
#include <sys/cpuset.h>