Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/miscfs/nullfs Change the nullfs module's actual name to ...



details:   https://anonhg.NetBSD.org/src/rev/a4c54f855053
branches:  trunk
changeset: 753798:a4c54f855053
user:      jld <jld%NetBSD.org@localhost>
date:      Sat Apr 10 18:14:54 2010 +0000

description:
Change the nullfs module's actual name to "null", to match the name
it's installed under and the name of the filesystem.

Fixes PR kern/43110.

diffstat:

 sys/miscfs/nullfs/null_vfsops.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 9f4224e3b08c -r a4c54f855053 sys/miscfs/nullfs/null_vfsops.c
--- a/sys/miscfs/nullfs/null_vfsops.c   Sat Apr 10 18:02:05 2010 +0000
+++ b/sys/miscfs/nullfs/null_vfsops.c   Sat Apr 10 18:14:54 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: null_vfsops.c,v 1.79 2009/03/14 15:36:22 dsl Exp $     */
+/*     $NetBSD: null_vfsops.c,v 1.80 2010/04/10 18:14:54 jld Exp $     */
 
 /*
  * Copyright (c) 1999 National Aeronautics & Space Administration
@@ -74,7 +74,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.79 2009/03/14 15:36:22 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.80 2010/04/10 18:14:54 jld Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -90,7 +90,7 @@
 #include <miscfs/nullfs/null.h>
 #include <miscfs/genfs/layer_extern.h>
 
-MODULE(MODULE_CLASS_VFS, nullfs, "layerfs");
+MODULE(MODULE_CLASS_VFS, null, "layerfs");
 
 VFS_PROTOS(nullfs);
 
@@ -286,7 +286,7 @@
 };
 
 static int
-nullfs_modcmd(modcmd_t cmd, void *arg)
+null_modcmd(modcmd_t cmd, void *arg)
 {
        int error;
 



Home | Main Index | Thread Index | Old Index