diff options
author | phk <phk@FreeBSD.org> | 1999-10-29 18:09:36 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-10-29 18:09:36 +0000 |
commit | 8e3c3eafedf7a33a4058652691ad300f004263e7 (patch) | |
tree | 54ae4dddde04dac71ef8349b9ecc3e6ad3401152 /sys/fs | |
parent | 2997de7f2f8690623c3c48e8e176212a5a554fb9 (diff) | |
download | FreeBSD-src-8e3c3eafedf7a33a4058652691ad300f004263e7.zip FreeBSD-src-8e3c3eafedf7a33a4058652691ad300f004263e7.tar.gz |
useracc() the prequel:
Merge the contents (less some trivial bordering the silly comments)
of <vm/vm_prot.h> and <vm/vm_inherit.h> into <vm/vm.h>. This puts
the #defines for the vm_inherit_t and vm_prot_t types next to their
typedefs.
This paves the road for the commit to follow shortly: change
useracc() to use VM_PROT_{READ|WRITE} rather than B_{READ|WRITE}
as argument.
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/ntfs/ntfs_vfsops.c | 1 | ||||
-rw-r--r-- | sys/fs/ntfs/ntfs_vnops.c | 1 | ||||
-rw-r--r-- | sys/fs/nwfs/nwfs_io.c | 1 | ||||
-rw-r--r-- | sys/fs/nwfs/nwfs_node.c | 1 | ||||
-rw-r--r-- | sys/fs/procfs/procfs_map.c | 1 | ||||
-rw-r--r-- | sys/fs/procfs/procfs_mem.c | 1 | ||||
-rw-r--r-- | sys/fs/specfs/spec_vnops.c | 1 | ||||
-rw-r--r-- | sys/fs/unionfs/union_vnops.c | 1 |
8 files changed, 0 insertions, 8 deletions
diff --git a/sys/fs/ntfs/ntfs_vfsops.c b/sys/fs/ntfs/ntfs_vfsops.c index a77647e..db0023c 100644 --- a/sys/fs/ntfs/ntfs_vfsops.c +++ b/sys/fs/ntfs/ntfs_vfsops.c @@ -43,7 +43,6 @@ #include <vm/vm.h> #include <vm/vm_param.h> -#include <vm/vm_prot.h> #include <vm/vm_page.h> #include <vm/vm_object.h> #include <vm/vm_extern.h> diff --git a/sys/fs/ntfs/ntfs_vnops.c b/sys/fs/ntfs/ntfs_vnops.c index 578f8bf..9d3f6e5 100644 --- a/sys/fs/ntfs/ntfs_vnops.c +++ b/sys/fs/ntfs/ntfs_vnops.c @@ -55,7 +55,6 @@ #include <vm/vm.h> #include <vm/vm_param.h> -#include <vm/vm_prot.h> #include <vm/vm_page.h> #include <vm/vm_object.h> #include <vm/vm_pager.h> diff --git a/sys/fs/nwfs/nwfs_io.c b/sys/fs/nwfs/nwfs_io.c index e74e463..1187ae3 100644 --- a/sys/fs/nwfs/nwfs_io.c +++ b/sys/fs/nwfs/nwfs_io.c @@ -46,7 +46,6 @@ #include <sys/sysctl.h> #include <vm/vm.h> -#include <vm/vm_prot.h> #include <vm/vm_page.h> #include <vm/vm_extern.h> #include <vm/vm_object.h> diff --git a/sys/fs/nwfs/nwfs_node.c b/sys/fs/nwfs/nwfs_node.c index bd4ca7a..223143e 100644 --- a/sys/fs/nwfs/nwfs_node.c +++ b/sys/fs/nwfs/nwfs_node.c @@ -42,7 +42,6 @@ #include <sys/sysctl.h> #include <vm/vm.h> #include <vm/vm_extern.h> -#include <vm/vm_prot.h> #include <vm/vm_page.h> #include <vm/vm_object.h> #include <sys/queue.h> diff --git a/sys/fs/procfs/procfs_map.c b/sys/fs/procfs/procfs_map.c index 83d73ab..1caa630 100644 --- a/sys/fs/procfs/procfs_map.c +++ b/sys/fs/procfs/procfs_map.c @@ -46,7 +46,6 @@ #include <miscfs/procfs/procfs.h> #include <vm/vm.h> -#include <vm/vm_prot.h> #include <sys/lock.h> #include <vm/pmap.h> #include <vm/vm_map.h> diff --git a/sys/fs/procfs/procfs_mem.c b/sys/fs/procfs/procfs_mem.c index 35ee564..43652f1 100644 --- a/sys/fs/procfs/procfs_mem.c +++ b/sys/fs/procfs/procfs_mem.c @@ -52,7 +52,6 @@ #include <miscfs/procfs/procfs.h> #include <vm/vm.h> #include <vm/vm_param.h> -#include <vm/vm_prot.h> #include <sys/lock.h> #include <vm/pmap.h> #include <vm/vm_map.h> diff --git a/sys/fs/specfs/spec_vnops.c b/sys/fs/specfs/spec_vnops.c index 152c9c0..887b010 100644 --- a/sys/fs/specfs/spec_vnops.c +++ b/sys/fs/specfs/spec_vnops.c @@ -50,7 +50,6 @@ #include <sys/tty.h> #include <vm/vm.h> -#include <vm/vm_prot.h> #include <vm/vm_object.h> #include <vm/vm_page.h> #include <vm/vm_pager.h> diff --git a/sys/fs/unionfs/union_vnops.c b/sys/fs/unionfs/union_vnops.c index 0be000d..0e74f39 100644 --- a/sys/fs/unionfs/union_vnops.c +++ b/sys/fs/unionfs/union_vnops.c @@ -56,7 +56,6 @@ #include <vm/vm.h> #include <vm/vnode_pager.h> -#include <vm/vm_prot.h> #include <vm/vm_page.h> #include <vm/vm_object.h> #include <vm/vm_pager.h> |