diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-07-05 21:28:22 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-07-05 21:28:22 +0000 |
commit | e02df503da80168b71a858e6a8c7131e586e322a (patch) | |
tree | 8a853c09c7d181d807239b300be869153446915c /sys | |
parent | 945f6b1a8a8c9593f17410985d9a0ade54789f16 (diff) |
syncdelay is defined as int, not time_t, in kern/vfs_sync.c, and that's
Just Fine
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/vnode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index af4e2158b05..71dc6f6327c 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vnode.h,v 1.117 2013/06/11 16:42:18 deraadt Exp $ */ +/* $OpenBSD: vnode.h,v 1.118 2013/07/05 21:28:21 guenther Exp $ */ /* $NetBSD: vnode.h,v 1.38 1996/02/29 20:59:05 cgd Exp $ */ /* @@ -253,7 +253,7 @@ extern struct freelst vnode_free_list; /* vnode free list */ extern struct vnode *rootvnode; /* root (i.e. "/") vnode */ extern int desiredvnodes; /* XXX number of vnodes desired */ extern int maxvnodes; /* XXX number of vnodes to allocate */ -extern time_t syncdelay; /* time to delay syncing vnodes */ +extern int syncdelay; /* seconds to delay syncing vnodes */ extern int rushjob; /* # of slots syncer should run ASAP */ extern void vhold(struct vnode *); extern void vdrop(struct vnode *); |