diff options
author | 2005-11-30 10:35:07 +0000 | |
---|---|---|
committer | 2005-11-30 10:35:07 +0000 | |
commit | 139e3b108cc426cdf4aed76e50a3534d0c9888c7 (patch) | |
tree | 529a02cb7a9f1aae0693ee190d71d100f5bd2dda /sys/xfs | |
parent | `-ztz' is only here for compatibility; (diff) | |
download | wireguard-openbsd-139e3b108cc426cdf4aed76e50a3534d0c9888c7.tar.xz wireguard-openbsd-139e3b108cc426cdf4aed76e50a3534d0c9888c7.zip |
No need for vfs_busy() and vfs_unbusy() to take a process pointer
anymore. Testing by jolan@, thanks.
Diffstat (limited to 'sys/xfs')
-rw-r--r-- | sys/xfs/xfs_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/xfs/xfs_config.h b/sys/xfs/xfs_config.h index 57cf01c741e..32e33f0ec59 100644 --- a/sys/xfs/xfs_config.h +++ b/sys/xfs/xfs_config.h @@ -228,7 +228,7 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "@(#)" msg } /* #undef HAVE_FOUR_ARGUMENT_LOCKMGR */ /* define if vfs_busy takes four arguments */ -#define HAVE_FOUR_ARGUMENT_VFS_BUSY 1 +/* #undef HAVE_FOUR_ARGUMENT_VFS_BUSY */ /* define if vfs_name_hash takes four arguments */ /* #undef HAVE_FOUR_ARGUMENT_VFS_NAME_HASH */ @@ -1260,7 +1260,7 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "@(#)" msg } /* #undef HAVE_THREE_ARGUMENT_SELRECORD */ /* define if vfs_busy takes three arguments */ -/* #undef HAVE_THREE_ARGUMENT_VFS_BUSY */ +#define HAVE_THREE_ARGUMENT_VFS_BUSY 1 /* define if vfs_name_hash takes three arguments */ /* #undef HAVE_THREE_ARGUMENT_VFS_NAME_HASH */ |