Adjust comment location to make it make sense.
no functional change
This commit is contained in:
parent
0528da675e
commit
f06b295c56
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: vfs_subr.c,v 1.353 2008/07/16 20:06:19 pooka Exp $ */
|
/* $NetBSD: vfs_subr.c,v 1.354 2008/07/27 15:08:37 pooka Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1997, 1998, 2004, 2005, 2007, 2008 The NetBSD Foundation, Inc.
|
* Copyright (c) 1997, 1998, 2004, 2005, 2007, 2008 The NetBSD Foundation, Inc.
|
||||||
|
@ -81,7 +81,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.353 2008/07/16 20:06:19 pooka Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.354 2008/07/27 15:08:37 pooka Exp $");
|
||||||
|
|
||||||
#include "opt_ddb.h"
|
#include "opt_ddb.h"
|
||||||
#include "opt_compat_netbsd.h"
|
#include "opt_compat_netbsd.h"
|
||||||
|
@ -2056,9 +2056,9 @@ sysctl_vfs_generic_fstypes(SYSCTLFN_ARGS)
|
||||||
slen = strlen(bf);
|
slen = strlen(bf);
|
||||||
if (left < slen + 1)
|
if (left < slen + 1)
|
||||||
break;
|
break;
|
||||||
/* +1 to copy out the trailing NUL byte */
|
|
||||||
v->vfs_refcount++;
|
v->vfs_refcount++;
|
||||||
mutex_exit(&vfs_list_lock);
|
mutex_exit(&vfs_list_lock);
|
||||||
|
/* +1 to copy out the trailing NUL byte */
|
||||||
error = copyout(bf, where, slen + 1);
|
error = copyout(bf, where, slen + 1);
|
||||||
mutex_enter(&vfs_list_lock);
|
mutex_enter(&vfs_list_lock);
|
||||||
v->vfs_refcount--;
|
v->vfs_refcount--;
|
||||||
|
|
Loading…
Reference in New Issue