From 1fb76f9bad504cbd0c942dc7f880749c5ef1f704 Mon Sep 17 00:00:00 2001 From: yamt Date: Tue, 14 Oct 2003 13:51:51 +0000 Subject: [PATCH] add a prototype of check_segsum(). --- sys/ufs/lfs/lfs_vfsops.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/ufs/lfs/lfs_vfsops.c b/sys/ufs/lfs/lfs_vfsops.c index 2910346f8874..06212b2b3cb6 100644 --- a/sys/ufs/lfs/lfs_vfsops.c +++ b/sys/ufs/lfs/lfs_vfsops.c @@ -1,4 +1,4 @@ -/* $NetBSD: lfs_vfsops.c,v 1.133 2003/10/14 13:46:30 yamt Exp $ */ +/* $NetBSD: lfs_vfsops.c,v 1.134 2003/10/14 13:51:51 yamt Exp $ */ /*- * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc. @@ -67,7 +67,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: lfs_vfsops.c,v 1.133 2003/10/14 13:46:30 yamt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: lfs_vfsops.c,v 1.134 2003/10/14 13:51:51 yamt Exp $"); #if defined(_KERNEL_OPT) #include "opt_quota.h" @@ -118,6 +118,8 @@ static boolean_t lfs_issequential_hole(const struct ufsmount *, daddr_t, daddr_t); static int lfs_mountfs(struct vnode *, struct mount *, struct proc *); +static daddr_t check_segsum(struct lfs *, daddr_t, u_int64_t, + struct ucred *, int, int *, struct proc *); extern const struct vnodeopv_desc lfs_vnodeop_opv_desc; extern const struct vnodeopv_desc lfs_specop_opv_desc;