diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2018-03-27 15:20:03 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2018-03-27 15:20:03 +0000 |
commit | 34a77b974108eecc559c97b3ef170e3f18ffb644 (patch) | |
tree | af4d51237029eeac6c7bd3bc6f037b8d302626b5 /sys/dev/md/md.c | |
parent | 2cb2ba6df8e31d389fd4bbfa73f0e6227dccb056 (diff) | |
download | src-34a77b974108eecc559c97b3ef170e3f18ffb644.tar.gz src-34a77b974108eecc559c97b3ef170e3f18ffb644.zip |
Move uio enums to sys/_uio.h.
Include _uio.h instead of uio.h in several headers to reduce header
polution.
Fix a few places that relied on header polution to get the uio.h header.
I have not moved struct uio as many more things that use it rely on
header polution to get other definitions from uio.h.
Reviewed by: cem, kib, markj
Sponsored by: DARPA, AFRL
Differential Revision: https://reviews.freebsd.org/D14811
Notes
Notes:
svn path=/head/; revision=331621
Diffstat (limited to 'sys/dev/md/md.c')
-rw-r--r-- | sys/dev/md/md.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index 0f494a2fa1d6..d976ced2391b 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -89,6 +89,7 @@ #include <sys/sched.h> #include <sys/sf_buf.h> #include <sys/sysctl.h> +#include <sys/uio.h> #include <sys/vnode.h> #include <sys/disk.h> |