Displaying 1 result from an estimated 1 matches for "osb_dealloc_lockr".
Did you mean:
  osb_dealloc_lockres
  
2008 Oct 23
2
[PATCH 1/1] OCFS2: fix for nfs getting stale inode.
...usters;
 	struct rb_root	em_extents;
@@ -267,6 +269,11 @@ struct ocfs2_super
 	struct dlm_ctxt *dlm;
 	struct ocfs2_lock_res osb_super_lockres;
 	struct ocfs2_lock_res osb_rename_lockres;
+
+	/* holds block locks which protect updating/reading 
+ 	 * on the same disk block*/
+	struct ocfs2_lock_res osb_dealloc_lockres[OCFS2_DEALLOC_NR];
+
 	struct dlm_eviction_cb osb_eviction_cb;
 	struct ocfs2_dlm_debug *osb_dlm_debug;
 
Index: fs/ocfs2/dlmglue.c
===================================================================
--- fs/ocfs2/dlmglue.c	(revision 3101)
+++ fs/ocfs2/dlmglue.c	(working copy)
@@ -66,6 +66,9 @@ st...