diff options
author | kib <kib@FreeBSD.org> | 2015-04-08 02:15:13 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2015-04-08 02:15:13 +0000 |
commit | e5886b520a9b363350787735e15fcff6b2b69b8a (patch) | |
tree | 3005e659d8e4276f2e8292cf6111769e9853315d /sys/fs/devfs/devfs_devs.c | |
parent | 3713ef6b03e4017a5ba9e902268968038c9c14de (diff) | |
download | FreeBSD-src-e5886b520a9b363350787735e15fcff6b2b69b8a.zip FreeBSD-src-e5886b520a9b363350787735e15fcff6b2b69b8a.tar.gz |
MFC r280308 (by delphij):
Disable timestamping on devfs read/write operations by default.
MFC r280949:
Refine r280308. Use seconds precision for devfs timestamps by default.
Diffstat (limited to 'sys/fs/devfs/devfs_devs.c')
-rw-r--r-- | sys/fs/devfs/devfs_devs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/devfs/devfs_devs.c b/sys/fs/devfs/devfs_devs.c index c2d40d3..5070985 100644 --- a/sys/fs/devfs/devfs_devs.c +++ b/sys/fs/devfs/devfs_devs.c @@ -61,7 +61,7 @@ static MALLOC_DEFINE(M_DEVFS2, "DEVFS2", "DEVFS data 2"); static MALLOC_DEFINE(M_DEVFS3, "DEVFS3", "DEVFS data 3"); static MALLOC_DEFINE(M_CDEVP, "DEVFS1", "DEVFS cdev_priv storage"); -static SYSCTL_NODE(_vfs, OID_AUTO, devfs, CTLFLAG_RW, 0, "DEVFS filesystem"); +SYSCTL_NODE(_vfs, OID_AUTO, devfs, CTLFLAG_RW, 0, "DEVFS filesystem"); static unsigned devfs_generation; SYSCTL_UINT(_vfs_devfs, OID_AUTO, generation, CTLFLAG_RD, |