Source-Changes-HG archive

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

[src/netbsd-6]: src/sys/fs Pull up revisions:



details:   https://anonhg.NetBSD.org/src/rev/36c1b6911e47
branches:  netbsd-6
changeset: 774243:36c1b6911e47
user:      jdc <jdc%NetBSD.org@localhost>
date:      Sun Jun 24 16:03:39 2012 +0000

description:
Pull up revisions:
  src/sys/fs/hfs/hfs_vfsops.c revision 1.29
  src/sys/fs/sysvbfs/sysvbfs_vfsops.c revision 1.40
  src/sys/fs/v7fs/v7fs_vfsops.c revision 1.7
(requested by joerg in ticket #344).

diffstat:

 sys/fs/hfs/hfs_vfsops.c         |  6 +++---
 sys/fs/sysvbfs/sysvbfs_vfsops.c |  6 +++---
 sys/fs/v7fs/v7fs_vfsops.c       |  6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

diffs (81 lines):

diff -r ce82756b00e0 -r 36c1b6911e47 sys/fs/hfs/hfs_vfsops.c
--- a/sys/fs/hfs/hfs_vfsops.c   Sun Jun 24 15:44:07 2012 +0000
+++ b/sys/fs/hfs/hfs_vfsops.c   Sun Jun 24 16:03:39 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hfs_vfsops.c,v 1.27 2011/06/12 03:35:53 rmind Exp $    */
+/*     $NetBSD: hfs_vfsops.c,v 1.27.8.1 2012/06/24 16:03:39 jdc Exp $  */
 
 /*-
  * Copyright (c) 2005, 2007 The NetBSD Foundation, Inc.
@@ -99,7 +99,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hfs_vfsops.c,v 1.27 2011/06/12 03:35:53 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hfs_vfsops.c,v 1.27.8.1 2012/06/24 16:03:39 jdc Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -201,7 +201,7 @@
        struct hfs_args *args = data;
        struct vnode *devvp;
        struct hfsmount *hmp;
-       int error;
+       int error = 0;
        int update;
        mode_t accessmode;
 
diff -r ce82756b00e0 -r 36c1b6911e47 sys/fs/sysvbfs/sysvbfs_vfsops.c
--- a/sys/fs/sysvbfs/sysvbfs_vfsops.c   Sun Jun 24 15:44:07 2012 +0000
+++ b/sys/fs/sysvbfs/sysvbfs_vfsops.c   Sun Jun 24 16:03:39 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sysvbfs_vfsops.c,v 1.38 2011/11/13 23:07:11 christos Exp $     */
+/*     $NetBSD: sysvbfs_vfsops.c,v 1.38.6.1 2012/06/24 16:03:39 jdc Exp $      */
 
 /*-
  * Copyright (c) 2004 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sysvbfs_vfsops.c,v 1.38 2011/11/13 23:07:11 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sysvbfs_vfsops.c,v 1.38.6.1 2012/06/24 16:03:39 jdc Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -72,7 +72,7 @@
        struct sysvbfs_args *args = data;
        struct sysvbfs_mount *bmp = NULL;
        struct vnode *devvp = NULL;
-       int error;
+       int error = 0;
        bool update;
 
        DPRINTF("%s: mnt_flag=%x\n", __func__, mp->mnt_flag);
diff -r ce82756b00e0 -r 36c1b6911e47 sys/fs/v7fs/v7fs_vfsops.c
--- a/sys/fs/v7fs/v7fs_vfsops.c Sun Jun 24 15:44:07 2012 +0000
+++ b/sys/fs/v7fs/v7fs_vfsops.c Sun Jun 24 16:03:39 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: v7fs_vfsops.c,v 1.5 2011/11/13 23:09:58 christos Exp $ */
+/*     $NetBSD: v7fs_vfsops.c,v 1.5.6.1 2012/06/24 16:03:40 jdc Exp $  */
 
 /*-
  * Copyright (c) 2004, 2011 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: v7fs_vfsops.c,v 1.5 2011/11/13 23:09:58 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: v7fs_vfsops.c,v 1.5.6.1 2012/06/24 16:03:40 jdc Exp $");
 #if defined _KERNEL_OPT
 #include "opt_v7fs.h"
 #endif
@@ -85,7 +85,7 @@
        struct v7fs_args *args = data;
        struct v7fs_mount *v7fsmount = (void *)mp->mnt_data;
        struct vnode *devvp = NULL;
-       int error;
+       int error = 0;
        bool update = mp->mnt_flag & MNT_UPDATE;
 
        DPRINTF("mnt_flag=%x %s\n", mp->mnt_flag, update ? "update" : "");



Home | Main Index | Thread Index | Old Index