Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/ufs/ufs/inode.h,v rcsdiff: /ftp/cvs/cvsroot/src/sys/ufs/ufs/inode.h,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- src/sys/ufs/ufs/inode.h 2008/11/23 10:09:26 1.55 +++ src/sys/ufs/ufs/inode.h 2009/02/22 20:28:07 1.56 @@ -1,4 +1,4 @@ -/* $NetBSD: inode.h,v 1.55 2008/11/23 10:09:26 mrg Exp $ */ +/* $NetBSD: inode.h,v 1.56 2009/02/22 20:28:07 ad Exp $ */ /* * Copyright (c) 1982, 1989, 1993 @@ -92,7 +92,7 @@ struct inode { #define i_lfs inode_u.lfs #define i_e2fs inode_u.e2fs - struct buflists i_pcbufhd; /* softdep pagecache buffer head */ + void *i_unused1; /* Unused. */ struct dquot *i_dquot[MAXQUOTAS]; /* Dquot structures. */ u_quad_t i_modrev; /* Revision level for NFS lease. */ struct lockf *i_lockf;/* Head of byte-level lock list. */ @@ -105,7 +105,7 @@ struct inode { doff_t i_diroff; /* Offset in dir, where we found last entry. */ doff_t i_offset; /* Offset of free space in directory. */ u_int32_t i_reclen; /* Size of found directory entry. */ - int i_ffs_effnlink; /* i_nlink when I/O completes */ + int i_unused; /* was for softdep, now unused */ /* * Inode extensions */ @@ -273,9 +273,6 @@ struct indir { #define VTOI(vp) ((struct inode *)(vp)->v_data) #define ITOV(ip) ((ip)->i_vnode) -/* Determine if soft dependencies are being done */ -#define DOINGSOFTDEP(vp) ((vp)->v_uflag & VU_SOFTDEP) - /* This overlays the fid structure (see fstypes.h). */ struct ufid { u_int16_t ufid_len; /* Length of structure. */