Source-Changes-HG archive

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

[src/trunk]: src/sys/ufs/lfs Fix botched syscall_package. HI CHRISTOS



details:   https://anonhg.NetBSD.org/src/rev/9961560cc1cf
branches:  trunk
changeset: 339824:9961560cc1cf
user:      dholland <dholland%NetBSD.org@localhost>
date:      Wed Aug 12 18:23:59 2015 +0000

description:
Fix botched syscall_package. HI CHRISTOS

diffstat:

 sys/ufs/lfs/lfs_vfsops.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r c402414e0bd5 -r 9961560cc1cf sys/ufs/lfs/lfs_vfsops.c
--- a/sys/ufs/lfs/lfs_vfsops.c  Wed Aug 12 18:23:47 2015 +0000
+++ b/sys/ufs/lfs/lfs_vfsops.c  Wed Aug 12 18:23:59 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: lfs_vfsops.c,v 1.334 2015/08/02 18:18:46 dholland Exp $        */
+/*     $NetBSD: lfs_vfsops.c,v 1.335 2015/08/12 18:23:59 dholland Exp $        */
 
 /*-
  * Copyright (c) 1999, 2000, 2001, 2002, 2003, 2007, 2007
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lfs_vfsops.c,v 1.334 2015/08/02 18:18:46 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lfs_vfsops.c,v 1.335 2015/08/12 18:23:59 dholland Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_lfs.h"
@@ -333,7 +333,8 @@
 static const struct syscall_package lfs_syscalls[] = {
        { SYS_lfs_bmapv,        0, (sy_call_t *)sys_lfs_bmapv           },
        { SYS_lfs_markv,        0, (sy_call_t *)sys_lfs_markv           },
-       { SYS_lfs_segclean,     0, (sy_call_t *)sys___lfs_segwait50     },
+       { SYS___lfs_segwait50,  0, (sy_call_t *)sys___lfs_segwait50     },
+       { SYS_lfs_segclean,     0, (sy_call_t *)sys_lfs_segclean        },
        { 0, 0, NULL },
 };
 



Home | Main Index | Thread Index | Old Index