summaryrefslogtreecommitdiffstats
path: root/sys/fs/cd9660/cd9660_node.h
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1997-10-17 12:36:19 +0000
committerphk <phk@FreeBSD.org>1997-10-17 12:36:19 +0000
commit14aa7b01ea93949392e6e18666f790095eac2ebf (patch)
treeaf234d30cce9d801c011d9f4154cc8c26d406c53 /sys/fs/cd9660/cd9660_node.h
parent988fe95f9897d896424ea0328f166e0e740afeaa (diff)
downloadFreeBSD-src-14aa7b01ea93949392e6e18666f790095eac2ebf.zip
FreeBSD-src-14aa7b01ea93949392e6e18666f790095eac2ebf.tar.gz
Make a set of VOP standard lock, unlock & islocked VOP operators, which
depend on the lock being located at vp->v_data. Saves 3x3 identical vop procs, more as the other filesystems becomes lock aware.
Diffstat (limited to 'sys/fs/cd9660/cd9660_node.h')
-rw-r--r--sys/fs/cd9660/cd9660_node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/cd9660/cd9660_node.h b/sys/fs/cd9660/cd9660_node.h
index 5c0b721..971cdba 100644
--- a/sys/fs/cd9660/cd9660_node.h
+++ b/sys/fs/cd9660/cd9660_node.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)cd9660_node.h 8.6 (Berkeley) 5/14/95
- * $Id: cd9660_node.h,v 1.13 1997/10/12 20:23:36 phk Exp $
+ * $Id: cd9660_node.h,v 1.14 1997/10/16 10:47:39 phk Exp $
*/
/*
@@ -61,6 +61,7 @@ typedef struct {
struct iso_node {
+ struct lock i_lock; /* node lock > Keep this first< */
struct iso_node *i_next, **i_prev; /* hash chain */
struct vnode *i_vnode; /* vnode associated with this inode */
struct vnode *i_devvp; /* vnode for block I/O */
@@ -74,7 +75,6 @@ struct iso_node {
doff_t i_diroff; /* offset in dir, where we found last entry */
doff_t i_offset; /* offset of free space in directory */
ino_t i_ino; /* inode number of found directory */
- struct lock i_lock; /* node lock */
long iso_extent; /* extent of file */
long i_size;
OpenPOWER on IntegriCloud