diff options
author | 2013-07-05 21:28:21 +0000 | |
---|---|---|
committer | 2013-07-05 21:28:21 +0000 | |
commit | e04e29812f934c4e603791cba93eaa7a41ea0ec9 (patch) | |
tree | 8f9787b03e93151083e999c0856960adde4d3aba | |
parent | Add submatch function for use with config_found_sm(9). (diff) | |
download | wireguard-openbsd-e04e29812f934c4e603791cba93eaa7a41ea0ec9.tar.xz wireguard-openbsd-e04e29812f934c4e603791cba93eaa7a41ea0ec9.zip |
syncdelay is defined as int, not time_t, in kern/vfs_sync.c, and that's
Just Fine
-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 *); |