summaryrefslogtreecommitdiffstats
path: root/sys/fs/devfs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2006-07-17 09:07:02 +0000
committerphk <phk@FreeBSD.org>2006-07-17 09:07:02 +0000
commit0f924547b0b94c68712dbdc29b14c1c063d1fda9 (patch)
tree512763ef9035836fe344023d1c28f1a46dcde8f9 /sys/fs/devfs
parent9c55065deab9f014361307109583179c6ccfe0d2 (diff)
downloadFreeBSD-src-0f924547b0b94c68712dbdc29b14c1c063d1fda9.zip
FreeBSD-src-0f924547b0b94c68712dbdc29b14c1c063d1fda9.tar.gz
Remove the NDEVFSINO and NDEVFSOVERFLOW options which no longer exists in
DEVFS. Remove the opt_devfs.h file now that it is empty.
Diffstat (limited to 'sys/fs/devfs')
-rw-r--r--sys/fs/devfs/devfs_devs.c1
-rw-r--r--sys/fs/devfs/devfs_rule.c2
-rw-r--r--sys/fs/devfs/devfs_vfsops.c2
-rw-r--r--sys/fs/devfs/devfs_vnops.c13
4 files changed, 0 insertions, 18 deletions
diff --git a/sys/fs/devfs/devfs_devs.c b/sys/fs/devfs/devfs_devs.c
index e1c82e8..d933f9f 100644
--- a/sys/fs/devfs/devfs_devs.c
+++ b/sys/fs/devfs/devfs_devs.c
@@ -28,7 +28,6 @@
* $FreeBSD$
*/
-#include "opt_devfs.h"
#include "opt_mac.h"
#include <sys/param.h>
diff --git a/sys/fs/devfs/devfs_rule.c b/sys/fs/devfs/devfs_rule.c
index bfd23b7..a0caad9 100644
--- a/sys/fs/devfs/devfs_rule.c
+++ b/sys/fs/devfs/devfs_rule.c
@@ -62,8 +62,6 @@
* know the convention).
*/
-#include "opt_devfs.h"
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
diff --git a/sys/fs/devfs/devfs_vfsops.c b/sys/fs/devfs/devfs_vfsops.c
index ecca629..17db07a 100644
--- a/sys/fs/devfs/devfs_vfsops.c
+++ b/sys/fs/devfs/devfs_vfsops.c
@@ -34,8 +34,6 @@
* $FreeBSD$
*/
-#include "opt_devfs.h"
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/fs/devfs/devfs_vnops.c b/sys/fs/devfs/devfs_vnops.c
index fda617d..9d2ca1e 100644
--- a/sys/fs/devfs/devfs_vnops.c
+++ b/sys/fs/devfs/devfs_vnops.c
@@ -40,7 +40,6 @@
* mkdir: want it ?
*/
-#include "opt_devfs.h"
#include "opt_mac.h"
#include <sys/param.h>
@@ -648,18 +647,6 @@ devfs_open(struct vop_open_args *ap)
if (dev->si_iosize_max == 0)
dev->si_iosize_max = DFLTPHYS;
- if (vn_isdisk(vp, NULL) &&
- ap->a_cred != FSCRED && (ap->a_mode & FWRITE)) {
- /*
- * When running in very secure mode, do not allow
- * opens for writing of any disks.
- * XXX: should be in geom_dev.c, but we lack the cred there.
- */
- error = securelevel_ge(td->td_ucred, 2);
- if (error)
- return (error);
- }
-
dsw = dev_refthread(dev);
if (dsw == NULL)
return (ENXIO);
OpenPOWER on IntegriCloud