[BACK]Return to xfs_behavior.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / mainline-patches

File: [Development] / linux-2.6-xfs / mainline-patches / xfs_behavior.h (download)

Revision 1.3, Tue Jan 16 14:56:58 2007 UTC (10 years, 8 months ago) by vapo.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +20 -0 lines

Merge of 2.6.x-xfs-melb:linux:27935a by kenmcd.

  Reinstate delete file.

ioops module needs locking in the behaviour chain.

--- /home/chatz/isms/linux-2.6.19/fs/xfs/xfs_behavior.h	2006-11-30 08:57:37.000000000 +1100
+++ xfs_behavior.h	2006-12-15 17:48:30.000000000 +1100
@@ -78,12 +78,15 @@
  *
  */
 
+struct bhv_head_lock;
+
 /*
  * Behavior head.  Head of the chain of behaviors.
  * Contained within each virtualized object data structure.
  */
 typedef struct bhv_head {
 	struct bhv_desc *bh_first;	/* first behavior in chain */
+	struct bhv_head_lock *bh_lockp;	/* pointer to lock info struct */
 } bhv_head_t;
 
 /*