diff options
author | jake <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
commit | 961b97d43458f3c57241940cabebb3bedf7e4c00 (patch) | |
tree | 6014972d9b90b4e3a8b20dbea641a88cf6355c13 /sys/fs/ntfs/ntfs_inode.h | |
parent | 06b64672180d9b04ae6d35db819c854df3c3c684 (diff) | |
download | FreeBSD-src-961b97d43458f3c57241940cabebb3bedf7e4c00.zip FreeBSD-src-961b97d43458f3c57241940cabebb3bedf7e4c00.tar.gz |
Back out the previous change to the queue(3) interface.
It was not discussed and should probably not happen.
Requested by: msmith and others
Diffstat (limited to 'sys/fs/ntfs/ntfs_inode.h')
-rw-r--r-- | sys/fs/ntfs/ntfs_inode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/ntfs/ntfs_inode.h b/sys/fs/ntfs/ntfs_inode.h index a14e008..a86d5f7 100644 --- a/sys/fs/ntfs/ntfs_inode.h +++ b/sys/fs/ntfs/ntfs_inode.h @@ -60,7 +60,7 @@ struct ntnode { struct vnode *i_devvp; /* vnode of blk dev we live on */ dev_t i_dev; /* Device associated with the inode. */ - LIST_ENTRY(struct ntnode) i_hash; + LIST_ENTRY(ntnode) i_hash; struct ntnode *i_next; struct ntnode **i_prev; struct ntfsmount *i_mp; @@ -72,8 +72,8 @@ struct ntnode { struct simplelock i_interlock; int i_usecount; - LIST_HEAD(, struct fnode) i_fnlist; - LIST_HEAD(, struct ntvattr) i_valist; + LIST_HEAD(,fnode) i_fnlist; + LIST_HEAD(,ntvattr) i_valist; long i_nlink; /* MFR */ ino_t i_mainrec; /* MFR */ @@ -88,7 +88,7 @@ struct fnode { struct lock f_lock; /* fnode lock >Keep this first< */ #endif - LIST_ENTRY(struct fnode) f_fnlist; + LIST_ENTRY(fnode) f_fnlist; struct vnode *f_vp; /* Associatied vnode */ struct ntnode *f_ip; /* Associated ntnode */ u_long f_flag; |