diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2011-04-16 16:37:22 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2011-04-16 16:37:22 +0000 |
commit | c9c962ef3d8d8b60db309c45a20d99b6e27cad53 (patch) | |
tree | e962ab2baaf76984978ccd2fdfa764779d66a200 /sbin/fsck_ffs/extern.h | |
parent | dec35c38d9c9a61a44ab91d3ed9421880058b08d (diff) |
Blend in some code from netbsd and freebsd that reduces memory consumption
and speeds things up in a lot of cases.
Prompted by Amit Kulkarni; ok krw@ on a slighly diffrenent incarnation
Diffstat (limited to 'sbin/fsck_ffs/extern.h')
-rw-r--r-- | sbin/fsck_ffs/extern.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/fsck_ffs/extern.h b/sbin/fsck_ffs/extern.h index fea3f42337c..8bcefe836c3 100644 --- a/sbin/fsck_ffs/extern.h +++ b/sbin/fsck_ffs/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.10 2007/06/25 19:59:55 otto Exp $ */ +/* $OpenBSD: extern.h,v 1.11 2011/04/16 16:37:21 otto Exp $ */ /* $NetBSD: extern.h,v 1.6 1996/09/27 22:45:12 christos Exp $ */ /* @@ -54,6 +54,7 @@ int ftypeok(union dinode *); void getpathname(char *, size_t, ino_t, ino_t); void inocleanup(void); void inodirty(void); +struct inostat *inoinfo(ino_t); int linkup(ino_t, ino_t); int makeentry(ino_t, ino_t, char *); void pass1(void); |