Reduce reliance on sys/sysproto.h pollution

Add sys/errno.h, sys/malloc.h, sys/queue.h, and vm/uma.h as needed.

sys/sysproto.h currently includes sys/acl.h which currently includes
sys/param.h, sys/queue.h, and vm/uma.h which in turn bring in
sys/errno.h sys/malloc.h.

Reviewed by:	kib
Differential Revision:	https://reviews.freebsd.org/D44465
This commit is contained in:
Brooks Davis 2024-04-15 17:53:05 +01:00
parent 101c80fe46
commit 6bb132ba1e
16 changed files with 21 additions and 0 deletions

View file

@ -37,6 +37,7 @@
#include <sys/param.h>
#include <sys/file.h>
#include <sys/mtio.h>
#include <sys/queue.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/extattr.h>

View file

@ -34,6 +34,7 @@
#include <sys/capsicum.h>
#include <sys/conf.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/module.h>
#include <sys/file.h>
#include <sys/proc.h>

View file

@ -33,6 +33,7 @@
#include <sys/file.h>
#include <sys/ktr.h>
#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/mman.h>
#include <sys/proc.h>
#include <sys/resourcevar.h>

View file

@ -35,6 +35,7 @@
#ifndef _LINUX_UTIL_H_
#define _LINUX_UTIL_H_
#include <sys/malloc.h>
#include <sys/uio.h>
extern int linux_debug;

View file

@ -31,6 +31,7 @@
#include <sys/conf.h>
#include <sys/fcntl.h>
#include <sys/kthread.h>
#include <sys/malloc.h>
#include <sys/module.h>
#include <sys/proc.h>
#include <sys/syscallsubr.h>

View file

@ -31,6 +31,8 @@
#ifndef AUTOFS_H
#define AUTOFS_H
#include <vm/uma.h>
#define VFSTOAUTOFS(mp) ((struct autofs_mount *)((mp)->mnt_data))
MALLOC_DECLARE(M_AUTOFS);

View file

@ -64,6 +64,7 @@
#include <vm/vm_pager.h>
#include <vm/vm_extern.h>
#include <vm/swap_pager.h>
#include <vm/uma.h>
#include <fs/tmpfs/tmpfs.h>
#include <fs/tmpfs/tmpfs_fifoops.h>

View file

@ -54,6 +54,8 @@
#include <security/mac/mac_framework.h>
#include <vm/uma.h>
static char *_getenv_dynamic_locked(const char *name, int *idx);
static char *_getenv_dynamic(const char *name, int *idx);

View file

@ -30,6 +30,7 @@
#include <sys/systm.h>
#include <sys/cpuset.h>
#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/membarrier.h>
#include <sys/mutex.h>
#include <sys/proc.h>

View file

@ -34,6 +34,7 @@
#include <sys/systm.h>
#include <sys/capsicum.h>
#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/mman.h>
#include <sys/mutex.h>
#include <sys/priv.h>

View file

@ -72,6 +72,8 @@
#include <sys/syscallsubr.h>
#include <sys/sysctl.h>
#include <vm/uma.h>
#ifdef REGRESSION
FEATURE(regression,
"Kernel support for interfaces necessary for regression testing (SECURITY RISK!)");

View file

@ -39,6 +39,7 @@
#include <sys/kernel.h>
#include <sys/limits.h>
#include <sys/loginclass.h>
#include <sys/malloc.h>
#include <sys/priv.h>
#include <sys/proc.h>
#include <sys/racct.h>
@ -2205,6 +2206,7 @@ rctl_init(void)
#else /* !RCTL */
#include <sys/types.h>
#include <sys/errno.h>
#include <sys/sysproto.h>
int

View file

@ -58,6 +58,7 @@
#include <vm/vm.h>
#include <vm/vm_extern.h>
#include <vm/uma.h>
#define MAX_CLOCKS (CLOCK_MONOTONIC+1)
#define CPUCLOCK_BIT 0x80000000

View file

@ -67,6 +67,7 @@
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <vm/uma.h>
#include <vm/vm_map.h>
#include <vm/vm_object.h>

View file

@ -30,6 +30,7 @@
#include <sys/endian.h>
#include <sys/kernel.h>
#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/mutex.h>
#include <sys/sbuf.h>
#include <sys/socket.h>

View file

@ -38,6 +38,8 @@
#include <sys/_seqc.h>
#include <sys/_uio.h>
#include <vm/uma.h>
enum nameiop { LOOKUP, CREATE, DELETE, RENAME };
struct componentname {