vm/vm_pager.h: use sys/systm.h header

it is needed for __read_mostly attribute definition, which right now
comes from vm/vm_page.h including sys/systm.h

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D34089
This commit is contained in:
Konstantin Belousov 2022-02-01 05:54:26 +02:00
parent 54d34bfbdf
commit f4cdb9d7c3

View File

@ -44,7 +44,7 @@
#ifndef _VM_PAGER_
#define _VM_PAGER_
#include <sys/queue.h>
#include <sys/systm.h>
TAILQ_HEAD(pagerlst, vm_object);
struct vnode;