aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/dlm/dlmcommon.h
diff options
context:
space:
mode:
authorSunil Mushran <sunil.mushran@oracle.com>2009-02-26 18:00:45 -0500
committerMark Fasheh <mfasheh@suse.com>2009-04-03 14:39:21 -0400
commit7d62a978a8c85cd82301615840d744f0d83b87e7 (patch)
treec8e3e59f85ddbfef31a41e8f966e6e88e9d4890b /fs/ocfs2/dlm/dlmcommon.h
parent6800791ab773453bdec337efb3f0cec6557f3bb3 (diff)
ocfs2/dlm: dlm_set_lockres_owner() and dlm_change_lockres_owner() inlined
This patch inlines dlm_set_lockres_owner() and dlm_change_lockres_owner(). Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com> Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/dlm/dlmcommon.h')
-rw-r--r--fs/ocfs2/dlm/dlmcommon.h21
1 files changed, 18 insertions, 3 deletions
diff --git a/fs/ocfs2/dlm/dlmcommon.h b/fs/ocfs2/dlm/dlmcommon.h
index e5026ce862a..266fde9354b 100644
--- a/fs/ocfs2/dlm/dlmcommon.h
+++ b/fs/ocfs2/dlm/dlmcommon.h
@@ -858,9 +858,7 @@ struct dlm_lock_resource * dlm_lookup_lockres(struct dlm_ctxt *dlm,
858 unsigned int len); 858 unsigned int len);
859 859
860int dlm_is_host_down(int errno); 860int dlm_is_host_down(int errno);
861void dlm_change_lockres_owner(struct dlm_ctxt *dlm, 861
862 struct dlm_lock_resource *res,
863 u8 owner);
864struct dlm_lock_resource * dlm_get_lock_resource(struct dlm_ctxt *dlm, 862struct dlm_lock_resource * dlm_get_lock_resource(struct dlm_ctxt *dlm,
865 const char *lockid, 863 const char *lockid,
866 int namelen, 864 int namelen,
@@ -1123,6 +1121,23 @@ static inline int dlm_node_iter_next(struct dlm_node_iter *iter)
1123 return bit; 1121 return bit;
1124} 1122}
1125 1123
1124static inline void dlm_set_lockres_owner(struct dlm_ctxt *dlm,
1125 struct dlm_lock_resource *res,
1126 u8 owner)
1127{
1128 assert_spin_locked(&res->spinlock);
1129
1130 res->owner = owner;
1131}
1126 1132
1133static inline void dlm_change_lockres_owner(struct dlm_ctxt *dlm,
1134 struct dlm_lock_resource *res,
1135 u8 owner)
1136{
1137 assert_spin_locked(&res->spinlock);
1138
1139 if (owner != res->owner)
1140 dlm_set_lockres_owner(dlm, res, owner);
1141}
1127 1142
1128#endif /* DLMCOMMON_H */ 1143#endif /* DLMCOMMON_H */