Source-Changes-HG archive

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

[src/trunk]: src/sys The *_modcmd functions use the module name as prefix.



details:   https://anonhg.NetBSD.org/src/rev/b2bfffb1de30
branches:  trunk
changeset: 753827:b2bfffb1de30
user:      mlelstv <mlelstv%NetBSD.org@localhost>
date:      Sun Apr 11 10:26:25 2010 +0000

description:
The *_modcmd functions use the module name as prefix.

diffstat:

 sys/fs/filecorefs/filecore_vfsops.c |  6 +++---
 sys/fs/msdosfs/msdosfs_vfsops.c     |  6 +++---
 sys/miscfs/umapfs/umap_vfsops.c     |  6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

diffs (81 lines):

diff -r 7e808d9c25c0 -r b2bfffb1de30 sys/fs/filecorefs/filecore_vfsops.c
--- a/sys/fs/filecorefs/filecore_vfsops.c       Sun Apr 11 09:58:36 2010 +0000
+++ b/sys/fs/filecorefs/filecore_vfsops.c       Sun Apr 11 10:26:25 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: filecore_vfsops.c,v 1.62 2010/04/11 06:36:25 pooka Exp $       */
+/*     $NetBSD: filecore_vfsops.c,v 1.63 2010/04/11 10:26:26 mlelstv Exp $     */
 
 /*-
  * Copyright (c) 1994 The Regents of the University of California.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: filecore_vfsops.c,v 1.62 2010/04/11 06:36:25 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: filecore_vfsops.c,v 1.63 2010/04/11 10:26:26 mlelstv Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_netbsd.h"
@@ -145,7 +145,7 @@
 };
 
 static int
-filecorefs_modcmd(modcmd_t cmd, void *arg)
+filecore_modcmd(modcmd_t cmd, void *arg)
 {
        int error;
 
diff -r 7e808d9c25c0 -r b2bfffb1de30 sys/fs/msdosfs/msdosfs_vfsops.c
--- a/sys/fs/msdosfs/msdosfs_vfsops.c   Sun Apr 11 09:58:36 2010 +0000
+++ b/sys/fs/msdosfs/msdosfs_vfsops.c   Sun Apr 11 10:26:25 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msdosfs_vfsops.c,v 1.82 2010/04/11 06:36:25 pooka Exp $        */
+/*     $NetBSD: msdosfs_vfsops.c,v 1.83 2010/04/11 10:26:25 mlelstv Exp $      */
 
 /*-
  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
@@ -48,7 +48,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.82 2010/04/11 06:36:25 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.83 2010/04/11 10:26:25 mlelstv Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_netbsd.h"
@@ -147,7 +147,7 @@
 };
 
 static int
-msdosfs_modcmd(modcmd_t cmd, void *arg)
+msdos_modcmd(modcmd_t cmd, void *arg)
 {
        int error;
 
diff -r 7e808d9c25c0 -r b2bfffb1de30 sys/miscfs/umapfs/umap_vfsops.c
--- a/sys/miscfs/umapfs/umap_vfsops.c   Sun Apr 11 09:58:36 2010 +0000
+++ b/sys/miscfs/umapfs/umap_vfsops.c   Sun Apr 11 10:26:25 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: umap_vfsops.c,v 1.83 2010/04/11 06:36:25 pooka Exp $   */
+/*     $NetBSD: umap_vfsops.c,v 1.84 2010/04/11 10:26:25 mlelstv Exp $ */
 
 /*
  * Copyright (c) 1992, 1993
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: umap_vfsops.c,v 1.83 2010/04/11 06:36:25 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: umap_vfsops.c,v 1.84 2010/04/11 10:26:25 mlelstv Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -308,7 +308,7 @@
 };
 
 static int
-umapfs_modcmd(modcmd_t cmd, void *arg)
+umap_modcmd(modcmd_t cmd, void *arg)
 {
        int error;
 



Home | Main Index | Thread Index | Old Index