summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs/ffs_softdep.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-07-13 21:04:30 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-07-13 21:04:30 +0000
commit808ea3c6ef13210b97a953d1af60f18af8fedade (patch)
tree76e658442d20a298bbbec645963b0ef98fe8a653 /sys/ufs/ffs/ffs_softdep.c
parent79acdfbd39f0127e25ba7aad63839b6455171e08 (diff)
Change mode_t and nlink_t from 16bit to 32bit. This allows us to
use mode_t in syscalls.master and to use mode_t in more places in the kernel. It also makes lint much more useful on kernel code. I've also added a placeholder for st_birthtime to make a UFS2 import easier at some future date. Requested by and OK deraadt@
Diffstat (limited to 'sys/ufs/ffs/ffs_softdep.c')
-rw-r--r--sys/ufs/ffs/ffs_softdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_softdep.c b/sys/ufs/ffs/ffs_softdep.c
index 9c82db74e9c..37f589f023d 100644
--- a/sys/ufs/ffs/ffs_softdep.c
+++ b/sys/ufs/ffs/ffs_softdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ffs_softdep.c,v 1.51 2004/06/24 19:35:26 tholo Exp $ */
+/* $OpenBSD: ffs_softdep.c,v 1.52 2004/07/13 21:04:29 millert Exp $ */
/*
* Copyright 1998, 2000 Marshall Kirk McKusick. All Rights Reserved.
*
@@ -2211,7 +2211,7 @@ void
softdep_freefile(pvp, ino, mode)
struct vnode *pvp;
ino_t ino;
- int mode;
+ mode_t mode;
{
struct inode *ip = VTOI(pvp);
struct inodedep *inodedep;