1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Code which implements an OCFS2 specific interface to our DLM.
8 * Copyright (C) 2003, 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
26 #include <linux/types.h>
27 #include <linux/slab.h>
28 #include <linux/highmem.h>
30 #include <linux/crc32.h>
31 #include <linux/kthread.h>
32 #include <linux/pagemap.h>
33 #include <linux/debugfs.h>
34 #include <linux/seq_file.h>
36 #include <cluster/heartbeat.h>
37 #include <cluster/nodemanager.h>
38 #include <cluster/tcp.h>
40 #include <dlm/dlmapi.h>
42 #define MLOG_MASK_PREFIX ML_DLM_GLUE
43 #include <cluster/masklog.h>
50 #include "extent_map.h"
52 #include "heartbeat.h"
59 #include "buffer_head_io.h"
61 struct ocfs2_mask_waiter {
62 struct list_head mw_item;
64 struct completion mw_complete;
65 unsigned long mw_mask;
66 unsigned long mw_goal;
69 static struct ocfs2_super *ocfs2_get_dentry_osb(struct ocfs2_lock_res *lockres);
70 static struct ocfs2_super *ocfs2_get_inode_osb(struct ocfs2_lock_res *lockres);
71 static struct ocfs2_super *ocfs2_get_file_osb(struct ocfs2_lock_res *lockres);
74 * Return value from ->downconvert_worker functions.
76 * These control the precise actions of ocfs2_unblock_lock()
77 * and ocfs2_process_blocked_lock()
80 enum ocfs2_unblock_action {
81 UNBLOCK_CONTINUE = 0, /* Continue downconvert */
82 UNBLOCK_CONTINUE_POST = 1, /* Continue downconvert, fire
83 * ->post_unlock callback */
84 UNBLOCK_STOP_POST = 2, /* Do not downconvert, fire
85 * ->post_unlock() callback. */
88 struct ocfs2_unblock_ctl {
90 enum ocfs2_unblock_action unblock_action;
93 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res *lockres,
95 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res *lockres);
97 static int ocfs2_data_convert_worker(struct ocfs2_lock_res *lockres,
100 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res *lockres,
103 static void ocfs2_dentry_post_unlock(struct ocfs2_super *osb,
104 struct ocfs2_lock_res *lockres);
107 #define mlog_meta_lvb(__level, __lockres) ocfs2_dump_meta_lvb_info(__level, __PRETTY_FUNCTION__, __LINE__, __lockres)
109 /* This aids in debugging situations where a bad LVB might be involved. */
110 static void ocfs2_dump_meta_lvb_info(u64 level,
111 const char *function,
113 struct ocfs2_lock_res *lockres)
115 struct ocfs2_meta_lvb *lvb = (struct ocfs2_meta_lvb *) lockres->l_lksb.lvb;
117 mlog(level, "LVB information for %s (called from %s:%u):\n",
118 lockres->l_name, function, line);
119 mlog(level, "version: %u, clusters: %u, generation: 0x%x\n",
120 lvb->lvb_version, be32_to_cpu(lvb->lvb_iclusters),
121 be32_to_cpu(lvb->lvb_igeneration));
122 mlog(level, "size: %llu, uid %u, gid %u, mode 0x%x\n",
123 (unsigned long long)be64_to_cpu(lvb->lvb_isize),
124 be32_to_cpu(lvb->lvb_iuid), be32_to_cpu(lvb->lvb_igid),
125 be16_to_cpu(lvb->lvb_imode));
126 mlog(level, "nlink %u, atime_packed 0x%llx, ctime_packed 0x%llx, "
127 "mtime_packed 0x%llx iattr 0x%x\n", be16_to_cpu(lvb->lvb_inlink),
128 (long long)be64_to_cpu(lvb->lvb_iatime_packed),
129 (long long)be64_to_cpu(lvb->lvb_ictime_packed),
130 (long long)be64_to_cpu(lvb->lvb_imtime_packed),
131 be32_to_cpu(lvb->lvb_iattr));
136 * OCFS2 Lock Resource Operations
138 * These fine tune the behavior of the generic dlmglue locking infrastructure.
140 * The most basic of lock types can point ->l_priv to their respective
141 * struct ocfs2_super and allow the default actions to manage things.
143 * Right now, each lock type also needs to implement an init function,
144 * and trivial lock/unlock wrappers. ocfs2_simple_drop_lockres()
145 * should be called when the lock is no longer needed (i.e., object
148 struct ocfs2_lock_res_ops {
150 * Translate an ocfs2_lock_res * into an ocfs2_super *. Define
151 * this callback if ->l_priv is not an ocfs2_super pointer
153 struct ocfs2_super * (*get_osb)(struct ocfs2_lock_res *);
156 * Optionally called in the downconvert thread after a
157 * successful downconvert. The lockres will not be referenced
158 * after this callback is called, so it is safe to free
161 * The exact semantics of when this is called are controlled
162 * by ->downconvert_worker()
164 void (*post_unlock)(struct ocfs2_super *, struct ocfs2_lock_res *);
167 * Allow a lock type to add checks to determine whether it is
168 * safe to downconvert a lock. Return 0 to re-queue the
169 * downconvert at a later time, nonzero to continue.
171 * For most locks, the default checks that there are no
172 * incompatible holders are sufficient.
174 * Called with the lockres spinlock held.
176 int (*check_downconvert)(struct ocfs2_lock_res *, int);
179 * Allows a lock type to populate the lock value block. This
180 * is called on downconvert, and when we drop a lock.
182 * Locks that want to use this should set LOCK_TYPE_USES_LVB
183 * in the flags field.
185 * Called with the lockres spinlock held.
187 void (*set_lvb)(struct ocfs2_lock_res *);
190 * Called from the downconvert thread when it is determined
191 * that a lock will be downconverted. This is called without
192 * any locks held so the function can do work that might
193 * schedule (syncing out data, etc).
195 * This should return any one of the ocfs2_unblock_action
196 * values, depending on what it wants the thread to do.
198 int (*downconvert_worker)(struct ocfs2_lock_res *, int);
201 * LOCK_TYPE_* flags which describe the specific requirements
202 * of a lock type. Descriptions of each individual flag follow.
208 * Some locks want to "refresh" potentially stale data when a
209 * meaningful (PRMODE or EXMODE) lock level is first obtained. If this
210 * flag is set, the OCFS2_LOCK_NEEDS_REFRESH flag will be set on the
211 * individual lockres l_flags member from the ast function. It is
212 * expected that the locking wrapper will clear the
213 * OCFS2_LOCK_NEEDS_REFRESH flag when done.
215 #define LOCK_TYPE_REQUIRES_REFRESH 0x1
218 * Indicate that a lock type makes use of the lock value block. The
219 * ->set_lvb lock type callback must be defined.
221 #define LOCK_TYPE_USES_LVB 0x2
223 static struct ocfs2_lock_res_ops ocfs2_inode_rw_lops = {
224 .get_osb = ocfs2_get_inode_osb,
228 static struct ocfs2_lock_res_ops ocfs2_inode_inode_lops = {
229 .get_osb = ocfs2_get_inode_osb,
230 .check_downconvert = ocfs2_check_meta_downconvert,
231 .set_lvb = ocfs2_set_meta_lvb,
232 .downconvert_worker = ocfs2_data_convert_worker,
233 .flags = LOCK_TYPE_REQUIRES_REFRESH|LOCK_TYPE_USES_LVB,
236 static struct ocfs2_lock_res_ops ocfs2_super_lops = {
237 .flags = LOCK_TYPE_REQUIRES_REFRESH,
240 static struct ocfs2_lock_res_ops ocfs2_rename_lops = {
244 static struct ocfs2_lock_res_ops ocfs2_dentry_lops = {
245 .get_osb = ocfs2_get_dentry_osb,
246 .post_unlock = ocfs2_dentry_post_unlock,
247 .downconvert_worker = ocfs2_dentry_convert_worker,
251 static struct ocfs2_lock_res_ops ocfs2_inode_open_lops = {
252 .get_osb = ocfs2_get_inode_osb,
256 static struct ocfs2_lock_res_ops ocfs2_flock_lops = {
257 .get_osb = ocfs2_get_file_osb,
261 static inline int ocfs2_is_inode_lock(struct ocfs2_lock_res *lockres)
263 return lockres->l_type == OCFS2_LOCK_TYPE_META ||
264 lockres->l_type == OCFS2_LOCK_TYPE_RW ||
265 lockres->l_type == OCFS2_LOCK_TYPE_OPEN;
268 static inline struct inode *ocfs2_lock_res_inode(struct ocfs2_lock_res *lockres)
270 BUG_ON(!ocfs2_is_inode_lock(lockres));
272 return (struct inode *) lockres->l_priv;
275 static inline struct ocfs2_dentry_lock *ocfs2_lock_res_dl(struct ocfs2_lock_res *lockres)
277 BUG_ON(lockres->l_type != OCFS2_LOCK_TYPE_DENTRY);
279 return (struct ocfs2_dentry_lock *)lockres->l_priv;
282 static inline struct ocfs2_super *ocfs2_get_lockres_osb(struct ocfs2_lock_res *lockres)
284 if (lockres->l_ops->get_osb)
285 return lockres->l_ops->get_osb(lockres);
287 return (struct ocfs2_super *)lockres->l_priv;
290 static int ocfs2_lock_create(struct ocfs2_super *osb,
291 struct ocfs2_lock_res *lockres,
294 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res *lockres,
296 static void ocfs2_cluster_unlock(struct ocfs2_super *osb,
297 struct ocfs2_lock_res *lockres,
299 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res *lockres);
300 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res *lockres);
301 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res *lockres);
302 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res *lockres, int level);
303 static void ocfs2_schedule_blocked_lock(struct ocfs2_super *osb,
304 struct ocfs2_lock_res *lockres);
305 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res *lockres,
307 #define ocfs2_log_dlm_error(_func, _stat, _lockres) do { \
308 mlog(ML_ERROR, "Dlm error \"%s\" while calling %s on " \
309 "resource %s: %s\n", dlm_errname(_stat), _func, \
310 _lockres->l_name, dlm_errmsg(_stat)); \
312 static int ocfs2_downconvert_thread(void *arg);
313 static void ocfs2_downconvert_on_unlock(struct ocfs2_super *osb,
314 struct ocfs2_lock_res *lockres);
315 static int ocfs2_inode_lock_update(struct inode *inode,
316 struct buffer_head **bh);
317 static void ocfs2_drop_osb_locks(struct ocfs2_super *osb);
318 static inline int ocfs2_highest_compat_lock_level(int level);
319 static void ocfs2_prepare_downconvert(struct ocfs2_lock_res *lockres,
321 static int ocfs2_downconvert_lock(struct ocfs2_super *osb,
322 struct ocfs2_lock_res *lockres,
325 static int ocfs2_prepare_cancel_convert(struct ocfs2_super *osb,
326 struct ocfs2_lock_res *lockres);
327 static int ocfs2_cancel_convert(struct ocfs2_super *osb,
328 struct ocfs2_lock_res *lockres);
331 static void ocfs2_build_lock_name(enum ocfs2_lock_type type,
340 BUG_ON(type >= OCFS2_NUM_LOCK_TYPES);
342 len = snprintf(name, OCFS2_LOCK_ID_MAX_LEN, "%c%s%016llx%08x",
343 ocfs2_lock_type_char(type), OCFS2_LOCK_ID_PAD,
344 (long long)blkno, generation);
346 BUG_ON(len != (OCFS2_LOCK_ID_MAX_LEN - 1));
348 mlog(0, "built lock resource with name: %s\n", name);
353 static DEFINE_SPINLOCK(ocfs2_dlm_tracking_lock);
355 static void ocfs2_add_lockres_tracking(struct ocfs2_lock_res *res,
356 struct ocfs2_dlm_debug *dlm_debug)
358 mlog(0, "Add tracking for lockres %s\n", res->l_name);
360 spin_lock(&ocfs2_dlm_tracking_lock);
361 list_add(&res->l_debug_list, &dlm_debug->d_lockres_tracking);
362 spin_unlock(&ocfs2_dlm_tracking_lock);
365 static void ocfs2_remove_lockres_tracking(struct ocfs2_lock_res *res)
367 spin_lock(&ocfs2_dlm_tracking_lock);
368 if (!list_empty(&res->l_debug_list))
369 list_del_init(&res->l_debug_list);
370 spin_unlock(&ocfs2_dlm_tracking_lock);
373 static void ocfs2_lock_res_init_common(struct ocfs2_super *osb,
374 struct ocfs2_lock_res *res,
375 enum ocfs2_lock_type type,
376 struct ocfs2_lock_res_ops *ops,
383 res->l_level = LKM_IVMODE;
384 res->l_requested = LKM_IVMODE;
385 res->l_blocking = LKM_IVMODE;
386 res->l_action = OCFS2_AST_INVALID;
387 res->l_unlock_action = OCFS2_UNLOCK_INVALID;
389 res->l_flags = OCFS2_LOCK_INITIALIZED;
391 ocfs2_add_lockres_tracking(res, osb->osb_dlm_debug);
394 void ocfs2_lock_res_init_once(struct ocfs2_lock_res *res)
396 /* This also clears out the lock status block */
397 memset(res, 0, sizeof(struct ocfs2_lock_res));
398 spin_lock_init(&res->l_lock);
399 init_waitqueue_head(&res->l_event);
400 INIT_LIST_HEAD(&res->l_blocked_list);
401 INIT_LIST_HEAD(&res->l_mask_waiters);
404 void ocfs2_inode_lock_res_init(struct ocfs2_lock_res *res,
405 enum ocfs2_lock_type type,
406 unsigned int generation,
409 struct ocfs2_lock_res_ops *ops;
412 case OCFS2_LOCK_TYPE_RW:
413 ops = &ocfs2_inode_rw_lops;
415 case OCFS2_LOCK_TYPE_META:
416 ops = &ocfs2_inode_inode_lops;
418 case OCFS2_LOCK_TYPE_OPEN:
419 ops = &ocfs2_inode_open_lops;
422 mlog_bug_on_msg(1, "type: %d\n", type);
423 ops = NULL; /* thanks, gcc */
427 ocfs2_build_lock_name(type, OCFS2_I(inode)->ip_blkno,
428 generation, res->l_name);
429 ocfs2_lock_res_init_common(OCFS2_SB(inode->i_sb), res, type, ops, inode);
432 static struct ocfs2_super *ocfs2_get_inode_osb(struct ocfs2_lock_res *lockres)
434 struct inode *inode = ocfs2_lock_res_inode(lockres);
436 return OCFS2_SB(inode->i_sb);
439 static struct ocfs2_super *ocfs2_get_file_osb(struct ocfs2_lock_res *lockres)
441 struct ocfs2_file_private *fp = lockres->l_priv;
443 return OCFS2_SB(fp->fp_file->f_mapping->host->i_sb);
446 static __u64 ocfs2_get_dentry_lock_ino(struct ocfs2_lock_res *lockres)
448 __be64 inode_blkno_be;
450 memcpy(&inode_blkno_be, &lockres->l_name[OCFS2_DENTRY_LOCK_INO_START],
453 return be64_to_cpu(inode_blkno_be);
456 static struct ocfs2_super *ocfs2_get_dentry_osb(struct ocfs2_lock_res *lockres)
458 struct ocfs2_dentry_lock *dl = lockres->l_priv;
460 return OCFS2_SB(dl->dl_inode->i_sb);
463 void ocfs2_dentry_lock_res_init(struct ocfs2_dentry_lock *dl,
464 u64 parent, struct inode *inode)
467 u64 inode_blkno = OCFS2_I(inode)->ip_blkno;
468 __be64 inode_blkno_be = cpu_to_be64(inode_blkno);
469 struct ocfs2_lock_res *lockres = &dl->dl_lockres;
471 ocfs2_lock_res_init_once(lockres);
474 * Unfortunately, the standard lock naming scheme won't work
475 * here because we have two 16 byte values to use. Instead,
476 * we'll stuff the inode number as a binary value. We still
477 * want error prints to show something without garbling the
478 * display, so drop a null byte in there before the inode
479 * number. A future version of OCFS2 will likely use all
480 * binary lock names. The stringified names have been a
481 * tremendous aid in debugging, but now that the debugfs
482 * interface exists, we can mangle things there if need be.
484 * NOTE: We also drop the standard "pad" value (the total lock
485 * name size stays the same though - the last part is all
486 * zeros due to the memset in ocfs2_lock_res_init_once()
488 len = snprintf(lockres->l_name, OCFS2_DENTRY_LOCK_INO_START,
490 ocfs2_lock_type_char(OCFS2_LOCK_TYPE_DENTRY),
493 BUG_ON(len != (OCFS2_DENTRY_LOCK_INO_START - 1));
495 memcpy(&lockres->l_name[OCFS2_DENTRY_LOCK_INO_START], &inode_blkno_be,
498 ocfs2_lock_res_init_common(OCFS2_SB(inode->i_sb), lockres,
499 OCFS2_LOCK_TYPE_DENTRY, &ocfs2_dentry_lops,
503 static void ocfs2_super_lock_res_init(struct ocfs2_lock_res *res,
504 struct ocfs2_super *osb)
506 /* Superblock lockres doesn't come from a slab so we call init
507 * once on it manually. */
508 ocfs2_lock_res_init_once(res);
509 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_SUPER, OCFS2_SUPER_BLOCK_BLKNO,
511 ocfs2_lock_res_init_common(osb, res, OCFS2_LOCK_TYPE_SUPER,
512 &ocfs2_super_lops, osb);
515 static void ocfs2_rename_lock_res_init(struct ocfs2_lock_res *res,
516 struct ocfs2_super *osb)
518 /* Rename lockres doesn't come from a slab so we call init
519 * once on it manually. */
520 ocfs2_lock_res_init_once(res);
521 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_RENAME, 0, 0, res->l_name);
522 ocfs2_lock_res_init_common(osb, res, OCFS2_LOCK_TYPE_RENAME,
523 &ocfs2_rename_lops, osb);
526 void ocfs2_file_lock_res_init(struct ocfs2_lock_res *lockres,
527 struct ocfs2_file_private *fp)
529 struct inode *inode = fp->fp_file->f_mapping->host;
530 struct ocfs2_inode_info *oi = OCFS2_I(inode);
532 ocfs2_lock_res_init_once(lockres);
533 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_FLOCK, oi->ip_blkno,
534 inode->i_generation, lockres->l_name);
535 ocfs2_lock_res_init_common(OCFS2_SB(inode->i_sb), lockres,
536 OCFS2_LOCK_TYPE_FLOCK, &ocfs2_flock_lops,
538 lockres->l_flags |= OCFS2_LOCK_NOCACHE;
541 void ocfs2_lock_res_free(struct ocfs2_lock_res *res)
545 if (!(res->l_flags & OCFS2_LOCK_INITIALIZED))
548 ocfs2_remove_lockres_tracking(res);
550 mlog_bug_on_msg(!list_empty(&res->l_blocked_list),
551 "Lockres %s is on the blocked list\n",
553 mlog_bug_on_msg(!list_empty(&res->l_mask_waiters),
554 "Lockres %s has mask waiters pending\n",
556 mlog_bug_on_msg(spin_is_locked(&res->l_lock),
557 "Lockres %s is locked\n",
559 mlog_bug_on_msg(res->l_ro_holders,
560 "Lockres %s has %u ro holders\n",
561 res->l_name, res->l_ro_holders);
562 mlog_bug_on_msg(res->l_ex_holders,
563 "Lockres %s has %u ex holders\n",
564 res->l_name, res->l_ex_holders);
566 /* Need to clear out the lock status block for the dlm */
567 memset(&res->l_lksb, 0, sizeof(res->l_lksb));
573 static inline void ocfs2_inc_holders(struct ocfs2_lock_res *lockres,
582 lockres->l_ex_holders++;
585 lockres->l_ro_holders++;
594 static inline void ocfs2_dec_holders(struct ocfs2_lock_res *lockres,
603 BUG_ON(!lockres->l_ex_holders);
604 lockres->l_ex_holders--;
607 BUG_ON(!lockres->l_ro_holders);
608 lockres->l_ro_holders--;
616 /* WARNING: This function lives in a world where the only three lock
617 * levels are EX, PR, and NL. It *will* have to be adjusted when more
618 * lock types are added. */
619 static inline int ocfs2_highest_compat_lock_level(int level)
621 int new_level = LKM_EXMODE;
623 if (level == LKM_EXMODE)
624 new_level = LKM_NLMODE;
625 else if (level == LKM_PRMODE)
626 new_level = LKM_PRMODE;
630 static void lockres_set_flags(struct ocfs2_lock_res *lockres,
631 unsigned long newflags)
633 struct ocfs2_mask_waiter *mw, *tmp;
635 assert_spin_locked(&lockres->l_lock);
637 lockres->l_flags = newflags;
639 list_for_each_entry_safe(mw, tmp, &lockres->l_mask_waiters, mw_item) {
640 if ((lockres->l_flags & mw->mw_mask) != mw->mw_goal)
643 list_del_init(&mw->mw_item);
645 complete(&mw->mw_complete);
648 static void lockres_or_flags(struct ocfs2_lock_res *lockres, unsigned long or)
650 lockres_set_flags(lockres, lockres->l_flags | or);
652 static void lockres_clear_flags(struct ocfs2_lock_res *lockres,
655 lockres_set_flags(lockres, lockres->l_flags & ~clear);
658 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res *lockres)
662 BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BUSY));
663 BUG_ON(!(lockres->l_flags & OCFS2_LOCK_ATTACHED));
664 BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BLOCKED));
665 BUG_ON(lockres->l_blocking <= LKM_NLMODE);
667 lockres->l_level = lockres->l_requested;
668 if (lockres->l_level <=
669 ocfs2_highest_compat_lock_level(lockres->l_blocking)) {
670 lockres->l_blocking = LKM_NLMODE;
671 lockres_clear_flags(lockres, OCFS2_LOCK_BLOCKED);
673 lockres_clear_flags(lockres, OCFS2_LOCK_BUSY);
678 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res *lockres)
682 BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BUSY));
683 BUG_ON(!(lockres->l_flags & OCFS2_LOCK_ATTACHED));
685 /* Convert from RO to EX doesn't really need anything as our
686 * information is already up to data. Convert from NL to
687 * *anything* however should mark ourselves as needing an
689 if (lockres->l_level == LKM_NLMODE &&
690 lockres->l_ops->flags & LOCK_TYPE_REQUIRES_REFRESH)
691 lockres_or_flags(lockres, OCFS2_LOCK_NEEDS_REFRESH);
693 lockres->l_level = lockres->l_requested;
694 lockres_clear_flags(lockres, OCFS2_LOCK_BUSY);
699 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res *lockres)
703 BUG_ON((!(lockres->l_flags & OCFS2_LOCK_BUSY)));
704 BUG_ON(lockres->l_flags & OCFS2_LOCK_ATTACHED);
706 if (lockres->l_requested > LKM_NLMODE &&
707 !(lockres->l_flags & OCFS2_LOCK_LOCAL) &&
708 lockres->l_ops->flags & LOCK_TYPE_REQUIRES_REFRESH)
709 lockres_or_flags(lockres, OCFS2_LOCK_NEEDS_REFRESH);
711 lockres->l_level = lockres->l_requested;
712 lockres_or_flags(lockres, OCFS2_LOCK_ATTACHED);
713 lockres_clear_flags(lockres, OCFS2_LOCK_BUSY);
718 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res *lockres,
721 int needs_downconvert = 0;
724 assert_spin_locked(&lockres->l_lock);
726 lockres_or_flags(lockres, OCFS2_LOCK_BLOCKED);
728 if (level > lockres->l_blocking) {
729 /* only schedule a downconvert if we haven't already scheduled
730 * one that goes low enough to satisfy the level we're
731 * blocking. this also catches the case where we get
733 if (ocfs2_highest_compat_lock_level(level) <
734 ocfs2_highest_compat_lock_level(lockres->l_blocking))
735 needs_downconvert = 1;
737 lockres->l_blocking = level;
740 mlog_exit(needs_downconvert);
741 return needs_downconvert;
744 static void ocfs2_blocking_ast(void *opaque, int level)
746 struct ocfs2_lock_res *lockres = opaque;
747 struct ocfs2_super *osb = ocfs2_get_lockres_osb(lockres);
748 int needs_downconvert;
751 BUG_ON(level <= LKM_NLMODE);
753 mlog(0, "BAST fired for lockres %s, blocking %d, level %d type %s\n",
754 lockres->l_name, level, lockres->l_level,
755 ocfs2_lock_type_string(lockres->l_type));
758 * We can skip the bast for locks which don't enable caching -
759 * they'll be dropped at the earliest possible time anyway.
761 if (lockres->l_flags & OCFS2_LOCK_NOCACHE)
764 spin_lock_irqsave(&lockres->l_lock, flags);
765 needs_downconvert = ocfs2_generic_handle_bast(lockres, level);
766 if (needs_downconvert)
767 ocfs2_schedule_blocked_lock(osb, lockres);
768 spin_unlock_irqrestore(&lockres->l_lock, flags);
770 wake_up(&lockres->l_event);
772 ocfs2_wake_downconvert_thread(osb);
775 static void ocfs2_locking_ast(void *opaque)
777 struct ocfs2_lock_res *lockres = opaque;
778 struct dlm_lockstatus *lksb = &lockres->l_lksb;
781 spin_lock_irqsave(&lockres->l_lock, flags);
783 if (lksb->status != DLM_NORMAL) {
784 mlog(ML_ERROR, "lockres %s: lksb status value of %u!\n",
785 lockres->l_name, lksb->status);
786 spin_unlock_irqrestore(&lockres->l_lock, flags);
790 switch(lockres->l_action) {
791 case OCFS2_AST_ATTACH:
792 ocfs2_generic_handle_attach_action(lockres);
793 lockres_clear_flags(lockres, OCFS2_LOCK_LOCAL);
795 case OCFS2_AST_CONVERT:
796 ocfs2_generic_handle_convert_action(lockres);
798 case OCFS2_AST_DOWNCONVERT:
799 ocfs2_generic_handle_downconvert_action(lockres);
802 mlog(ML_ERROR, "lockres %s: ast fired with invalid action: %u "
803 "lockres flags = 0x%lx, unlock action: %u\n",
804 lockres->l_name, lockres->l_action, lockres->l_flags,
805 lockres->l_unlock_action);
809 /* set it to something invalid so if we get called again we
811 lockres->l_action = OCFS2_AST_INVALID;
813 wake_up(&lockres->l_event);
814 spin_unlock_irqrestore(&lockres->l_lock, flags);
817 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res *lockres,
823 spin_lock_irqsave(&lockres->l_lock, flags);
824 lockres_clear_flags(lockres, OCFS2_LOCK_BUSY);
826 lockres->l_action = OCFS2_AST_INVALID;
828 lockres->l_unlock_action = OCFS2_UNLOCK_INVALID;
829 spin_unlock_irqrestore(&lockres->l_lock, flags);
831 wake_up(&lockres->l_event);
835 /* Note: If we detect another process working on the lock (i.e.,
836 * OCFS2_LOCK_BUSY), we'll bail out returning 0. It's up to the caller
837 * to do the right thing in that case.
839 static int ocfs2_lock_create(struct ocfs2_super *osb,
840 struct ocfs2_lock_res *lockres,
845 enum dlm_status status = DLM_NORMAL;
850 mlog(0, "lock %s, level = %d, flags = %d\n", lockres->l_name, level,
853 spin_lock_irqsave(&lockres->l_lock, flags);
854 if ((lockres->l_flags & OCFS2_LOCK_ATTACHED) ||
855 (lockres->l_flags & OCFS2_LOCK_BUSY)) {
856 spin_unlock_irqrestore(&lockres->l_lock, flags);
860 lockres->l_action = OCFS2_AST_ATTACH;
861 lockres->l_requested = level;
862 lockres_or_flags(lockres, OCFS2_LOCK_BUSY);
863 spin_unlock_irqrestore(&lockres->l_lock, flags);
865 status = dlmlock(osb->dlm,
870 OCFS2_LOCK_ID_MAX_LEN - 1,
874 if (status != DLM_NORMAL) {
875 ocfs2_log_dlm_error("dlmlock", status, lockres);
877 ocfs2_recover_from_dlm_error(lockres, 1);
880 mlog(0, "lock %s, successfull return from dlmlock\n", lockres->l_name);
887 static inline int ocfs2_check_wait_flag(struct ocfs2_lock_res *lockres,
893 spin_lock_irqsave(&lockres->l_lock, flags);
894 ret = lockres->l_flags & flag;
895 spin_unlock_irqrestore(&lockres->l_lock, flags);
900 static inline void ocfs2_wait_on_busy_lock(struct ocfs2_lock_res *lockres)
903 wait_event(lockres->l_event,
904 !ocfs2_check_wait_flag(lockres, OCFS2_LOCK_BUSY));
907 static inline void ocfs2_wait_on_refreshing_lock(struct ocfs2_lock_res *lockres)
910 wait_event(lockres->l_event,
911 !ocfs2_check_wait_flag(lockres, OCFS2_LOCK_REFRESHING));
914 /* predict what lock level we'll be dropping down to on behalf
915 * of another node, and return true if the currently wanted
916 * level will be compatible with it. */
917 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res *lockres,
920 BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BLOCKED));
922 return wanted <= ocfs2_highest_compat_lock_level(lockres->l_blocking);
925 static void ocfs2_init_mask_waiter(struct ocfs2_mask_waiter *mw)
927 INIT_LIST_HEAD(&mw->mw_item);
928 init_completion(&mw->mw_complete);
931 static int ocfs2_wait_for_mask(struct ocfs2_mask_waiter *mw)
933 wait_for_completion(&mw->mw_complete);
934 /* Re-arm the completion in case we want to wait on it again */
935 INIT_COMPLETION(mw->mw_complete);
936 return mw->mw_status;
939 static void lockres_add_mask_waiter(struct ocfs2_lock_res *lockres,
940 struct ocfs2_mask_waiter *mw,
944 BUG_ON(!list_empty(&mw->mw_item));
946 assert_spin_locked(&lockres->l_lock);
948 list_add_tail(&mw->mw_item, &lockres->l_mask_waiters);
953 /* returns 0 if the mw that was removed was already satisfied, -EBUSY
954 * if the mask still hadn't reached its goal */
955 static int lockres_remove_mask_waiter(struct ocfs2_lock_res *lockres,
956 struct ocfs2_mask_waiter *mw)
961 spin_lock_irqsave(&lockres->l_lock, flags);
962 if (!list_empty(&mw->mw_item)) {
963 if ((lockres->l_flags & mw->mw_mask) != mw->mw_goal)
966 list_del_init(&mw->mw_item);
967 init_completion(&mw->mw_complete);
969 spin_unlock_irqrestore(&lockres->l_lock, flags);
975 static int ocfs2_wait_for_mask_interruptible(struct ocfs2_mask_waiter *mw,
976 struct ocfs2_lock_res *lockres)
980 ret = wait_for_completion_interruptible(&mw->mw_complete);
982 lockres_remove_mask_waiter(lockres, mw);
985 /* Re-arm the completion in case we want to wait on it again */
986 INIT_COMPLETION(mw->mw_complete);
990 static int ocfs2_cluster_lock(struct ocfs2_super *osb,
991 struct ocfs2_lock_res *lockres,
996 struct ocfs2_mask_waiter mw;
997 enum dlm_status status;
998 int wait, catch_signals = !(osb->s_mount_opt & OCFS2_MOUNT_NOINTR);
999 int ret = 0; /* gcc doesn't realize wait = 1 guarantees ret is set */
1000 unsigned long flags;
1004 ocfs2_init_mask_waiter(&mw);
1006 if (lockres->l_ops->flags & LOCK_TYPE_USES_LVB)
1007 lkm_flags |= LKM_VALBLK;
1012 if (catch_signals && signal_pending(current)) {
1017 spin_lock_irqsave(&lockres->l_lock, flags);
1019 mlog_bug_on_msg(lockres->l_flags & OCFS2_LOCK_FREEING,
1020 "Cluster lock called on freeing lockres %s! flags "
1021 "0x%lx\n", lockres->l_name, lockres->l_flags);
1023 /* We only compare against the currently granted level
1024 * here. If the lock is blocked waiting on a downconvert,
1025 * we'll get caught below. */
1026 if (lockres->l_flags & OCFS2_LOCK_BUSY &&
1027 level > lockres->l_level) {
1028 /* is someone sitting in dlm_lock? If so, wait on
1030 lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0);
1035 if (lockres->l_flags & OCFS2_LOCK_BLOCKED &&
1036 !ocfs2_may_continue_on_blocked_lock(lockres, level)) {
1037 /* is the lock is currently blocked on behalf of
1039 lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BLOCKED, 0);
1044 if (level > lockres->l_level) {
1045 if (lockres->l_action != OCFS2_AST_INVALID)
1046 mlog(ML_ERROR, "lockres %s has action %u pending\n",
1047 lockres->l_name, lockres->l_action);
1049 if (!(lockres->l_flags & OCFS2_LOCK_ATTACHED)) {
1050 lockres->l_action = OCFS2_AST_ATTACH;
1051 lkm_flags &= ~LKM_CONVERT;
1053 lockres->l_action = OCFS2_AST_CONVERT;
1054 lkm_flags |= LKM_CONVERT;
1057 lockres->l_requested = level;
1058 lockres_or_flags(lockres, OCFS2_LOCK_BUSY);
1059 spin_unlock_irqrestore(&lockres->l_lock, flags);
1061 BUG_ON(level == LKM_IVMODE);
1062 BUG_ON(level == LKM_NLMODE);
1064 mlog(0, "lock %s, convert from %d to level = %d\n",
1065 lockres->l_name, lockres->l_level, level);
1067 /* call dlm_lock to upgrade lock now */
1068 status = dlmlock(osb->dlm,
1073 OCFS2_LOCK_ID_MAX_LEN - 1,
1076 ocfs2_blocking_ast);
1077 if (status != DLM_NORMAL) {
1078 if ((lkm_flags & LKM_NOQUEUE) &&
1079 (status == DLM_NOTQUEUED))
1082 ocfs2_log_dlm_error("dlmlock", status,
1086 ocfs2_recover_from_dlm_error(lockres, 1);
1090 mlog(0, "lock %s, successfull return from dlmlock\n",
1093 /* At this point we've gone inside the dlm and need to
1094 * complete our work regardless. */
1097 /* wait for busy to clear and carry on */
1101 /* Ok, if we get here then we're good to go. */
1102 ocfs2_inc_holders(lockres, level);
1106 spin_unlock_irqrestore(&lockres->l_lock, flags);
1109 * This is helping work around a lock inversion between the page lock
1110 * and dlm locks. One path holds the page lock while calling aops
1111 * which block acquiring dlm locks. The voting thread holds dlm
1112 * locks while acquiring page locks while down converting data locks.
1113 * This block is helping an aop path notice the inversion and back
1114 * off to unlock its page lock before trying the dlm lock again.
1116 if (wait && arg_flags & OCFS2_LOCK_NONBLOCK &&
1117 mw.mw_mask & (OCFS2_LOCK_BUSY|OCFS2_LOCK_BLOCKED)) {
1119 if (lockres_remove_mask_waiter(lockres, &mw))
1125 ret = ocfs2_wait_for_mask(&mw);
1135 static void ocfs2_cluster_unlock(struct ocfs2_super *osb,
1136 struct ocfs2_lock_res *lockres,
1139 unsigned long flags;
1142 spin_lock_irqsave(&lockres->l_lock, flags);
1143 ocfs2_dec_holders(lockres, level);
1144 ocfs2_downconvert_on_unlock(osb, lockres);
1145 spin_unlock_irqrestore(&lockres->l_lock, flags);
1149 static int ocfs2_create_new_lock(struct ocfs2_super *osb,
1150 struct ocfs2_lock_res *lockres,
1154 int level = ex ? LKM_EXMODE : LKM_PRMODE;
1155 unsigned long flags;
1156 int lkm_flags = local ? LKM_LOCAL : 0;
1158 spin_lock_irqsave(&lockres->l_lock, flags);
1159 BUG_ON(lockres->l_flags & OCFS2_LOCK_ATTACHED);
1160 lockres_or_flags(lockres, OCFS2_LOCK_LOCAL);
1161 spin_unlock_irqrestore(&lockres->l_lock, flags);
1163 return ocfs2_lock_create(osb, lockres, level, lkm_flags);
1166 /* Grants us an EX lock on the data and metadata resources, skipping
1167 * the normal cluster directory lookup. Use this ONLY on newly created
1168 * inodes which other nodes can't possibly see, and which haven't been
1169 * hashed in the inode hash yet. This can give us a good performance
1170 * increase as it'll skip the network broadcast normally associated
1171 * with creating a new lock resource. */
1172 int ocfs2_create_new_inode_locks(struct inode *inode)
1175 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1178 BUG_ON(!ocfs2_inode_is_new(inode));
1182 mlog(0, "Inode %llu\n", (unsigned long long)OCFS2_I(inode)->ip_blkno);
1184 /* NOTE: That we don't increment any of the holder counts, nor
1185 * do we add anything to a journal handle. Since this is
1186 * supposed to be a new inode which the cluster doesn't know
1187 * about yet, there is no need to. As far as the LVB handling
1188 * is concerned, this is basically like acquiring an EX lock
1189 * on a resource which has an invalid one -- we'll set it
1190 * valid when we release the EX. */
1192 ret = ocfs2_create_new_lock(osb, &OCFS2_I(inode)->ip_rw_lockres, 1, 1);
1199 * We don't want to use LKM_LOCAL on a meta data lock as they
1200 * don't use a generation in their lock names.
1202 ret = ocfs2_create_new_lock(osb, &OCFS2_I(inode)->ip_inode_lockres, 1, 0);
1208 ret = ocfs2_create_new_lock(osb, &OCFS2_I(inode)->ip_open_lockres, 0, 0);
1219 int ocfs2_rw_lock(struct inode *inode, int write)
1222 struct ocfs2_lock_res *lockres;
1223 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1229 mlog(0, "inode %llu take %s RW lock\n",
1230 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1231 write ? "EXMODE" : "PRMODE");
1233 if (ocfs2_mount_local(osb))
1236 lockres = &OCFS2_I(inode)->ip_rw_lockres;
1238 level = write ? LKM_EXMODE : LKM_PRMODE;
1240 status = ocfs2_cluster_lock(OCFS2_SB(inode->i_sb), lockres, level, 0,
1249 void ocfs2_rw_unlock(struct inode *inode, int write)
1251 int level = write ? LKM_EXMODE : LKM_PRMODE;
1252 struct ocfs2_lock_res *lockres = &OCFS2_I(inode)->ip_rw_lockres;
1253 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1257 mlog(0, "inode %llu drop %s RW lock\n",
1258 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1259 write ? "EXMODE" : "PRMODE");
1261 if (!ocfs2_mount_local(osb))
1262 ocfs2_cluster_unlock(OCFS2_SB(inode->i_sb), lockres, level);
1268 * ocfs2_open_lock always get PR mode lock.
1270 int ocfs2_open_lock(struct inode *inode)
1273 struct ocfs2_lock_res *lockres;
1274 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1280 mlog(0, "inode %llu take PRMODE open lock\n",
1281 (unsigned long long)OCFS2_I(inode)->ip_blkno);
1283 if (ocfs2_mount_local(osb))
1286 lockres = &OCFS2_I(inode)->ip_open_lockres;
1288 status = ocfs2_cluster_lock(OCFS2_SB(inode->i_sb), lockres,
1298 int ocfs2_try_open_lock(struct inode *inode, int write)
1300 int status = 0, level;
1301 struct ocfs2_lock_res *lockres;
1302 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1308 mlog(0, "inode %llu try to take %s open lock\n",
1309 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1310 write ? "EXMODE" : "PRMODE");
1312 if (ocfs2_mount_local(osb))
1315 lockres = &OCFS2_I(inode)->ip_open_lockres;
1317 level = write ? LKM_EXMODE : LKM_PRMODE;
1320 * The file system may already holding a PRMODE/EXMODE open lock.
1321 * Since we pass LKM_NOQUEUE, the request won't block waiting on
1322 * other nodes and the -EAGAIN will indicate to the caller that
1323 * this inode is still in use.
1325 status = ocfs2_cluster_lock(OCFS2_SB(inode->i_sb), lockres,
1326 level, LKM_NOQUEUE, 0);
1334 * ocfs2_open_unlock unlock PR and EX mode open locks.
1336 void ocfs2_open_unlock(struct inode *inode)
1338 struct ocfs2_lock_res *lockres = &OCFS2_I(inode)->ip_open_lockres;
1339 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1343 mlog(0, "inode %llu drop open lock\n",
1344 (unsigned long long)OCFS2_I(inode)->ip_blkno);
1346 if (ocfs2_mount_local(osb))
1349 if(lockres->l_ro_holders)
1350 ocfs2_cluster_unlock(OCFS2_SB(inode->i_sb), lockres,
1352 if(lockres->l_ex_holders)
1353 ocfs2_cluster_unlock(OCFS2_SB(inode->i_sb), lockres,
1360 static int ocfs2_flock_handle_signal(struct ocfs2_lock_res *lockres,
1364 struct ocfs2_super *osb = ocfs2_get_lockres_osb(lockres);
1365 unsigned long flags;
1366 struct ocfs2_mask_waiter mw;
1368 ocfs2_init_mask_waiter(&mw);
1371 spin_lock_irqsave(&lockres->l_lock, flags);
1372 if (lockres->l_flags & OCFS2_LOCK_BUSY) {
1373 ret = ocfs2_prepare_cancel_convert(osb, lockres);
1375 spin_unlock_irqrestore(&lockres->l_lock, flags);
1376 ret = ocfs2_cancel_convert(osb, lockres);
1383 lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0);
1384 spin_unlock_irqrestore(&lockres->l_lock, flags);
1386 ocfs2_wait_for_mask(&mw);
1392 * We may still have gotten the lock, in which case there's no
1393 * point to restarting the syscall.
1395 if (lockres->l_level == level)
1398 mlog(0, "Cancel returning %d. flags: 0x%lx, level: %d, act: %d\n", ret,
1399 lockres->l_flags, lockres->l_level, lockres->l_action);
1401 spin_unlock_irqrestore(&lockres->l_lock, flags);
1408 * ocfs2_file_lock() and ocfs2_file_unlock() map to a single pair of
1409 * flock() calls. The locking approach this requires is sufficiently
1410 * different from all other cluster lock types that we implement a
1411 * seperate path to the "low-level" dlm calls. In particular:
1413 * - No optimization of lock levels is done - we take at exactly
1414 * what's been requested.
1416 * - No lock caching is employed. We immediately downconvert to
1417 * no-lock at unlock time. This also means flock locks never go on
1418 * the blocking list).
1420 * - Since userspace can trivially deadlock itself with flock, we make
1421 * sure to allow cancellation of a misbehaving applications flock()
1424 * - Access to any flock lockres doesn't require concurrency, so we
1425 * can simplify the code by requiring the caller to guarantee
1426 * serialization of dlmglue flock calls.
1428 int ocfs2_file_lock(struct file *file, int ex, int trylock)
1430 int ret, level = ex ? LKM_EXMODE : LKM_PRMODE;
1431 unsigned int lkm_flags = trylock ? LKM_NOQUEUE : 0;
1432 unsigned long flags;
1433 struct ocfs2_file_private *fp = file->private_data;
1434 struct ocfs2_lock_res *lockres = &fp->fp_flock;
1435 struct ocfs2_super *osb = OCFS2_SB(file->f_mapping->host->i_sb);
1436 struct ocfs2_mask_waiter mw;
1438 ocfs2_init_mask_waiter(&mw);
1440 if ((lockres->l_flags & OCFS2_LOCK_BUSY) ||
1441 (lockres->l_level > LKM_NLMODE)) {
1443 "File lock \"%s\" has busy or locked state: flags: 0x%lx, "
1444 "level: %u\n", lockres->l_name, lockres->l_flags,
1449 spin_lock_irqsave(&lockres->l_lock, flags);
1450 if (!(lockres->l_flags & OCFS2_LOCK_ATTACHED)) {
1451 lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0);
1452 spin_unlock_irqrestore(&lockres->l_lock, flags);
1455 * Get the lock at NLMODE to start - that way we
1456 * can cancel the upconvert request if need be.
1458 ret = ocfs2_lock_create(osb, lockres, LKM_NLMODE, 0);
1464 ret = ocfs2_wait_for_mask(&mw);
1469 spin_lock_irqsave(&lockres->l_lock, flags);
1472 lockres->l_action = OCFS2_AST_CONVERT;
1473 lkm_flags |= LKM_CONVERT;
1474 lockres->l_requested = level;
1475 lockres_or_flags(lockres, OCFS2_LOCK_BUSY);
1477 lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0);
1478 spin_unlock_irqrestore(&lockres->l_lock, flags);
1480 ret = dlmlock(osb->dlm, level, &lockres->l_lksb, lkm_flags,
1481 lockres->l_name, OCFS2_LOCK_ID_MAX_LEN - 1,
1482 ocfs2_locking_ast, lockres, ocfs2_blocking_ast);
1483 if (ret != DLM_NORMAL) {
1484 if (trylock && ret == DLM_NOTQUEUED)
1487 ocfs2_log_dlm_error("dlmlock", ret, lockres);
1491 ocfs2_recover_from_dlm_error(lockres, 1);
1492 lockres_remove_mask_waiter(lockres, &mw);
1496 ret = ocfs2_wait_for_mask_interruptible(&mw, lockres);
1497 if (ret == -ERESTARTSYS) {
1499 * Userspace can cause deadlock itself with
1500 * flock(). Current behavior locally is to allow the
1501 * deadlock, but abort the system call if a signal is
1502 * received. We follow this example, otherwise a
1503 * poorly written program could sit in kernel until
1506 * Handling this is a bit more complicated for Ocfs2
1507 * though. We can't exit this function with an
1508 * outstanding lock request, so a cancel convert is
1509 * required. We intentionally overwrite 'ret' - if the
1510 * cancel fails and the lock was granted, it's easier
1511 * to just bubble sucess back up to the user.
1513 ret = ocfs2_flock_handle_signal(lockres, level);
1518 mlog(0, "Lock: \"%s\" ex: %d, trylock: %d, returns: %d\n",
1519 lockres->l_name, ex, trylock, ret);
1523 void ocfs2_file_unlock(struct file *file)
1526 unsigned long flags;
1527 struct ocfs2_file_private *fp = file->private_data;
1528 struct ocfs2_lock_res *lockres = &fp->fp_flock;
1529 struct ocfs2_super *osb = OCFS2_SB(file->f_mapping->host->i_sb);
1530 struct ocfs2_mask_waiter mw;
1532 ocfs2_init_mask_waiter(&mw);
1534 if (!(lockres->l_flags & OCFS2_LOCK_ATTACHED))
1537 if (lockres->l_level == LKM_NLMODE)
1540 mlog(0, "Unlock: \"%s\" flags: 0x%lx, level: %d, act: %d\n",
1541 lockres->l_name, lockres->l_flags, lockres->l_level,
1544 spin_lock_irqsave(&lockres->l_lock, flags);
1546 * Fake a blocking ast for the downconvert code.
1548 lockres_or_flags(lockres, OCFS2_LOCK_BLOCKED);
1549 lockres->l_blocking = LKM_EXMODE;
1551 ocfs2_prepare_downconvert(lockres, LKM_NLMODE);
1552 lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0);
1553 spin_unlock_irqrestore(&lockres->l_lock, flags);
1555 ret = ocfs2_downconvert_lock(osb, lockres, LKM_NLMODE, 0);
1561 ret = ocfs2_wait_for_mask(&mw);
1566 static void ocfs2_downconvert_on_unlock(struct ocfs2_super *osb,
1567 struct ocfs2_lock_res *lockres)
1573 /* If we know that another node is waiting on our lock, kick
1574 * the downconvert thread * pre-emptively when we reach a release
1576 if (lockres->l_flags & OCFS2_LOCK_BLOCKED) {
1577 switch(lockres->l_blocking) {
1579 if (!lockres->l_ex_holders && !lockres->l_ro_holders)
1583 if (!lockres->l_ex_holders)
1592 ocfs2_wake_downconvert_thread(osb);
1597 #define OCFS2_SEC_BITS 34
1598 #define OCFS2_SEC_SHIFT (64 - 34)
1599 #define OCFS2_NSEC_MASK ((1ULL << OCFS2_SEC_SHIFT) - 1)
1601 /* LVB only has room for 64 bits of time here so we pack it for
1603 static u64 ocfs2_pack_timespec(struct timespec *spec)
1606 u64 sec = spec->tv_sec;
1607 u32 nsec = spec->tv_nsec;
1609 res = (sec << OCFS2_SEC_SHIFT) | (nsec & OCFS2_NSEC_MASK);
1614 /* Call this with the lockres locked. I am reasonably sure we don't
1615 * need ip_lock in this function as anyone who would be changing those
1616 * values is supposed to be blocked in ocfs2_inode_lock right now. */
1617 static void __ocfs2_stuff_meta_lvb(struct inode *inode)
1619 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1620 struct ocfs2_lock_res *lockres = &oi->ip_inode_lockres;
1621 struct ocfs2_meta_lvb *lvb;
1625 lvb = (struct ocfs2_meta_lvb *) lockres->l_lksb.lvb;
1628 * Invalidate the LVB of a deleted inode - this way other
1629 * nodes are forced to go to disk and discover the new inode
1632 if (oi->ip_flags & OCFS2_INODE_DELETED) {
1633 lvb->lvb_version = 0;
1637 lvb->lvb_version = OCFS2_LVB_VERSION;
1638 lvb->lvb_isize = cpu_to_be64(i_size_read(inode));
1639 lvb->lvb_iclusters = cpu_to_be32(oi->ip_clusters);
1640 lvb->lvb_iuid = cpu_to_be32(inode->i_uid);
1641 lvb->lvb_igid = cpu_to_be32(inode->i_gid);
1642 lvb->lvb_imode = cpu_to_be16(inode->i_mode);
1643 lvb->lvb_inlink = cpu_to_be16(inode->i_nlink);
1644 lvb->lvb_iatime_packed =
1645 cpu_to_be64(ocfs2_pack_timespec(&inode->i_atime));
1646 lvb->lvb_ictime_packed =
1647 cpu_to_be64(ocfs2_pack_timespec(&inode->i_ctime));
1648 lvb->lvb_imtime_packed =
1649 cpu_to_be64(ocfs2_pack_timespec(&inode->i_mtime));
1650 lvb->lvb_iattr = cpu_to_be32(oi->ip_attr);
1651 lvb->lvb_idynfeatures = cpu_to_be16(oi->ip_dyn_features);
1652 lvb->lvb_igeneration = cpu_to_be32(inode->i_generation);
1655 mlog_meta_lvb(0, lockres);
1660 static void ocfs2_unpack_timespec(struct timespec *spec,
1663 spec->tv_sec = packed_time >> OCFS2_SEC_SHIFT;
1664 spec->tv_nsec = packed_time & OCFS2_NSEC_MASK;
1667 static void ocfs2_refresh_inode_from_lvb(struct inode *inode)
1669 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1670 struct ocfs2_lock_res *lockres = &oi->ip_inode_lockres;
1671 struct ocfs2_meta_lvb *lvb;
1675 mlog_meta_lvb(0, lockres);
1677 lvb = (struct ocfs2_meta_lvb *) lockres->l_lksb.lvb;
1679 /* We're safe here without the lockres lock... */
1680 spin_lock(&oi->ip_lock);
1681 oi->ip_clusters = be32_to_cpu(lvb->lvb_iclusters);
1682 i_size_write(inode, be64_to_cpu(lvb->lvb_isize));
1684 oi->ip_attr = be32_to_cpu(lvb->lvb_iattr);
1685 oi->ip_dyn_features = be16_to_cpu(lvb->lvb_idynfeatures);
1686 ocfs2_set_inode_flags(inode);
1688 /* fast-symlinks are a special case */
1689 if (S_ISLNK(inode->i_mode) && !oi->ip_clusters)
1690 inode->i_blocks = 0;
1692 inode->i_blocks = ocfs2_inode_sector_count(inode);
1694 inode->i_uid = be32_to_cpu(lvb->lvb_iuid);
1695 inode->i_gid = be32_to_cpu(lvb->lvb_igid);
1696 inode->i_mode = be16_to_cpu(lvb->lvb_imode);
1697 inode->i_nlink = be16_to_cpu(lvb->lvb_inlink);
1698 ocfs2_unpack_timespec(&inode->i_atime,
1699 be64_to_cpu(lvb->lvb_iatime_packed));
1700 ocfs2_unpack_timespec(&inode->i_mtime,
1701 be64_to_cpu(lvb->lvb_imtime_packed));
1702 ocfs2_unpack_timespec(&inode->i_ctime,
1703 be64_to_cpu(lvb->lvb_ictime_packed));
1704 spin_unlock(&oi->ip_lock);
1709 static inline int ocfs2_meta_lvb_is_trustable(struct inode *inode,
1710 struct ocfs2_lock_res *lockres)
1712 struct ocfs2_meta_lvb *lvb = (struct ocfs2_meta_lvb *) lockres->l_lksb.lvb;
1714 if (lvb->lvb_version == OCFS2_LVB_VERSION
1715 && be32_to_cpu(lvb->lvb_igeneration) == inode->i_generation)
1720 /* Determine whether a lock resource needs to be refreshed, and
1721 * arbitrate who gets to refresh it.
1723 * 0 means no refresh needed.
1725 * > 0 means you need to refresh this and you MUST call
1726 * ocfs2_complete_lock_res_refresh afterwards. */
1727 static int ocfs2_should_refresh_lock_res(struct ocfs2_lock_res *lockres)
1729 unsigned long flags;
1735 spin_lock_irqsave(&lockres->l_lock, flags);
1736 if (!(lockres->l_flags & OCFS2_LOCK_NEEDS_REFRESH)) {
1737 spin_unlock_irqrestore(&lockres->l_lock, flags);
1741 if (lockres->l_flags & OCFS2_LOCK_REFRESHING) {
1742 spin_unlock_irqrestore(&lockres->l_lock, flags);
1744 ocfs2_wait_on_refreshing_lock(lockres);
1748 /* Ok, I'll be the one to refresh this lock. */
1749 lockres_or_flags(lockres, OCFS2_LOCK_REFRESHING);
1750 spin_unlock_irqrestore(&lockres->l_lock, flags);
1758 /* If status is non zero, I'll mark it as not being in refresh
1759 * anymroe, but i won't clear the needs refresh flag. */
1760 static inline void ocfs2_complete_lock_res_refresh(struct ocfs2_lock_res *lockres,
1763 unsigned long flags;
1766 spin_lock_irqsave(&lockres->l_lock, flags);
1767 lockres_clear_flags(lockres, OCFS2_LOCK_REFRESHING);
1769 lockres_clear_flags(lockres, OCFS2_LOCK_NEEDS_REFRESH);
1770 spin_unlock_irqrestore(&lockres->l_lock, flags);
1772 wake_up(&lockres->l_event);
1777 /* may or may not return a bh if it went to disk. */
1778 static int ocfs2_inode_lock_update(struct inode *inode,
1779 struct buffer_head **bh)
1782 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1783 struct ocfs2_lock_res *lockres = &oi->ip_inode_lockres;
1784 struct ocfs2_dinode *fe;
1785 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1789 if (ocfs2_mount_local(osb))
1792 spin_lock(&oi->ip_lock);
1793 if (oi->ip_flags & OCFS2_INODE_DELETED) {
1794 mlog(0, "Orphaned inode %llu was deleted while we "
1795 "were waiting on a lock. ip_flags = 0x%x\n",
1796 (unsigned long long)oi->ip_blkno, oi->ip_flags);
1797 spin_unlock(&oi->ip_lock);
1801 spin_unlock(&oi->ip_lock);
1803 if (!ocfs2_should_refresh_lock_res(lockres))
1806 /* This will discard any caching information we might have had
1807 * for the inode metadata. */
1808 ocfs2_metadata_cache_purge(inode);
1810 ocfs2_extent_map_trunc(inode, 0);
1812 if (ocfs2_meta_lvb_is_trustable(inode, lockres)) {
1813 mlog(0, "Trusting LVB on inode %llu\n",
1814 (unsigned long long)oi->ip_blkno);
1815 ocfs2_refresh_inode_from_lvb(inode);
1817 /* Boo, we have to go to disk. */
1818 /* read bh, cast, ocfs2_refresh_inode */
1819 status = ocfs2_read_block(OCFS2_SB(inode->i_sb), oi->ip_blkno,
1820 bh, OCFS2_BH_CACHED, inode);
1825 fe = (struct ocfs2_dinode *) (*bh)->b_data;
1827 /* This is a good chance to make sure we're not
1828 * locking an invalid object.
1830 * We bug on a stale inode here because we checked
1831 * above whether it was wiped from disk. The wiping
1832 * node provides a guarantee that we receive that
1833 * message and can mark the inode before dropping any
1834 * locks associated with it. */
1835 if (!OCFS2_IS_VALID_DINODE(fe)) {
1836 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe);
1840 mlog_bug_on_msg(inode->i_generation !=
1841 le32_to_cpu(fe->i_generation),
1842 "Invalid dinode %llu disk generation: %u "
1843 "inode->i_generation: %u\n",
1844 (unsigned long long)oi->ip_blkno,
1845 le32_to_cpu(fe->i_generation),
1846 inode->i_generation);
1847 mlog_bug_on_msg(le64_to_cpu(fe->i_dtime) ||
1848 !(fe->i_flags & cpu_to_le32(OCFS2_VALID_FL)),
1849 "Stale dinode %llu dtime: %llu flags: 0x%x\n",
1850 (unsigned long long)oi->ip_blkno,
1851 (unsigned long long)le64_to_cpu(fe->i_dtime),
1852 le32_to_cpu(fe->i_flags));
1854 ocfs2_refresh_inode(inode, fe);
1859 ocfs2_complete_lock_res_refresh(lockres, status);
1865 static int ocfs2_assign_bh(struct inode *inode,
1866 struct buffer_head **ret_bh,
1867 struct buffer_head *passed_bh)
1872 /* Ok, the update went to disk for us, use the
1874 *ret_bh = passed_bh;
1880 status = ocfs2_read_block(OCFS2_SB(inode->i_sb),
1881 OCFS2_I(inode)->ip_blkno,
1892 * returns < 0 error if the callback will never be called, otherwise
1893 * the result of the lock will be communicated via the callback.
1895 int ocfs2_inode_lock_full(struct inode *inode,
1896 struct buffer_head **ret_bh,
1900 int status, level, dlm_flags, acquired;
1901 struct ocfs2_lock_res *lockres = NULL;
1902 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1903 struct buffer_head *local_bh = NULL;
1909 mlog(0, "inode %llu, take %s META lock\n",
1910 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1911 ex ? "EXMODE" : "PRMODE");
1915 /* We'll allow faking a readonly metadata lock for
1917 if (ocfs2_is_hard_readonly(osb)) {
1923 if (ocfs2_mount_local(osb))
1926 if (!(arg_flags & OCFS2_META_LOCK_RECOVERY))
1927 wait_event(osb->recovery_event,
1928 ocfs2_node_map_is_empty(osb, &osb->recovery_map));
1930 lockres = &OCFS2_I(inode)->ip_inode_lockres;
1931 level = ex ? LKM_EXMODE : LKM_PRMODE;
1933 if (arg_flags & OCFS2_META_LOCK_NOQUEUE)
1934 dlm_flags |= LKM_NOQUEUE;
1936 status = ocfs2_cluster_lock(osb, lockres, level, dlm_flags, arg_flags);
1938 if (status != -EAGAIN && status != -EIOCBRETRY)
1943 /* Notify the error cleanup path to drop the cluster lock. */
1946 /* We wait twice because a node may have died while we were in
1947 * the lower dlm layers. The second time though, we've
1948 * committed to owning this lock so we don't allow signals to
1949 * abort the operation. */
1950 if (!(arg_flags & OCFS2_META_LOCK_RECOVERY))
1951 wait_event(osb->recovery_event,
1952 ocfs2_node_map_is_empty(osb, &osb->recovery_map));
1956 * We only see this flag if we're being called from
1957 * ocfs2_read_locked_inode(). It means we're locking an inode
1958 * which hasn't been populated yet, so clear the refresh flag
1959 * and let the caller handle it.
1961 if (inode->i_state & I_NEW) {
1964 ocfs2_complete_lock_res_refresh(lockres, 0);
1968 /* This is fun. The caller may want a bh back, or it may
1969 * not. ocfs2_inode_lock_update definitely wants one in, but
1970 * may or may not read one, depending on what's in the
1971 * LVB. The result of all of this is that we've *only* gone to
1972 * disk if we have to, so the complexity is worthwhile. */
1973 status = ocfs2_inode_lock_update(inode, &local_bh);
1975 if (status != -ENOENT)
1981 status = ocfs2_assign_bh(inode, ret_bh, local_bh);
1990 if (ret_bh && (*ret_bh)) {
1995 ocfs2_inode_unlock(inode, ex);
2006 * This is working around a lock inversion between tasks acquiring DLM
2007 * locks while holding a page lock and the downconvert thread which
2008 * blocks dlm lock acquiry while acquiring page locks.
2010 * ** These _with_page variantes are only intended to be called from aop
2011 * methods that hold page locks and return a very specific *positive* error
2012 * code that aop methods pass up to the VFS -- test for errors with != 0. **
2014 * The DLM is called such that it returns -EAGAIN if it would have
2015 * blocked waiting for the downconvert thread. In that case we unlock
2016 * our page so the downconvert thread can make progress. Once we've
2017 * done this we have to return AOP_TRUNCATED_PAGE so the aop method
2018 * that called us can bubble that back up into the VFS who will then
2019 * immediately retry the aop call.
2021 * We do a blocking lock and immediate unlock before returning, though, so that
2022 * the lock has a great chance of being cached on this node by the time the VFS
2023 * calls back to retry the aop. This has a potential to livelock as nodes
2024 * ping locks back and forth, but that's a risk we're willing to take to avoid
2025 * the lock inversion simply.
2027 int ocfs2_inode_lock_with_page(struct inode *inode,
2028 struct buffer_head **ret_bh,
2034 ret = ocfs2_inode_lock_full(inode, ret_bh, ex, OCFS2_LOCK_NONBLOCK);
2035 if (ret == -EAGAIN) {
2037 if (ocfs2_inode_lock(inode, ret_bh, ex) == 0)
2038 ocfs2_inode_unlock(inode, ex);
2039 ret = AOP_TRUNCATED_PAGE;
2045 int ocfs2_inode_lock_atime(struct inode *inode,
2046 struct vfsmount *vfsmnt,
2052 ret = ocfs2_inode_lock(inode, NULL, 0);
2059 * If we should update atime, we will get EX lock,
2060 * otherwise we just get PR lock.
2062 if (ocfs2_should_update_atime(inode, vfsmnt)) {
2063 struct buffer_head *bh = NULL;
2065 ocfs2_inode_unlock(inode, 0);
2066 ret = ocfs2_inode_lock(inode, &bh, 1);
2072 if (ocfs2_should_update_atime(inode, vfsmnt))
2073 ocfs2_update_inode_atime(inode, bh);
2083 void ocfs2_inode_unlock(struct inode *inode,
2086 int level = ex ? LKM_EXMODE : LKM_PRMODE;
2087 struct ocfs2_lock_res *lockres = &OCFS2_I(inode)->ip_inode_lockres;
2088 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2092 mlog(0, "inode %llu drop %s META lock\n",
2093 (unsigned long long)OCFS2_I(inode)->ip_blkno,
2094 ex ? "EXMODE" : "PRMODE");
2096 if (!ocfs2_is_hard_readonly(OCFS2_SB(inode->i_sb)) &&
2097 !ocfs2_mount_local(osb))
2098 ocfs2_cluster_unlock(OCFS2_SB(inode->i_sb), lockres, level);
2103 int ocfs2_super_lock(struct ocfs2_super *osb,
2107 int level = ex ? LKM_EXMODE : LKM_PRMODE;
2108 struct ocfs2_lock_res *lockres = &osb->osb_super_lockres;
2109 struct buffer_head *bh;
2110 struct ocfs2_slot_info *si = osb->slot_info;
2114 if (ocfs2_is_hard_readonly(osb))
2117 if (ocfs2_mount_local(osb))
2120 status = ocfs2_cluster_lock(osb, lockres, level, 0, 0);
2126 /* The super block lock path is really in the best position to
2127 * know when resources covered by the lock need to be
2128 * refreshed, so we do it here. Of course, making sense of
2129 * everything is up to the caller :) */
2130 status = ocfs2_should_refresh_lock_res(lockres);
2137 status = ocfs2_read_block(osb, bh->b_blocknr, &bh, 0,
2140 ocfs2_update_slot_info(si);
2142 ocfs2_complete_lock_res_refresh(lockres, status);
2152 void ocfs2_super_unlock(struct ocfs2_super *osb,
2155 int level = ex ? LKM_EXMODE : LKM_PRMODE;
2156 struct ocfs2_lock_res *lockres = &osb->osb_super_lockres;
2158 if (!ocfs2_mount_local(osb))
2159 ocfs2_cluster_unlock(osb, lockres, level);
2162 int ocfs2_rename_lock(struct ocfs2_super *osb)
2165 struct ocfs2_lock_res *lockres = &osb->osb_rename_lockres;
2167 if (ocfs2_is_hard_readonly(osb))
2170 if (ocfs2_mount_local(osb))
2173 status = ocfs2_cluster_lock(osb, lockres, LKM_EXMODE, 0, 0);
2180 void ocfs2_rename_unlock(struct ocfs2_super *osb)
2182 struct ocfs2_lock_res *lockres = &osb->osb_rename_lockres;
2184 if (!ocfs2_mount_local(osb))
2185 ocfs2_cluster_unlock(osb, lockres, LKM_EXMODE);
2188 int ocfs2_dentry_lock(struct dentry *dentry, int ex)
2191 int level = ex ? LKM_EXMODE : LKM_PRMODE;
2192 struct ocfs2_dentry_lock *dl = dentry->d_fsdata;
2193 struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
2197 if (ocfs2_is_hard_readonly(osb))
2200 if (ocfs2_mount_local(osb))
2203 ret = ocfs2_cluster_lock(osb, &dl->dl_lockres, level, 0, 0);
2210 void ocfs2_dentry_unlock(struct dentry *dentry, int ex)
2212 int level = ex ? LKM_EXMODE : LKM_PRMODE;
2213 struct ocfs2_dentry_lock *dl = dentry->d_fsdata;
2214 struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
2216 if (!ocfs2_mount_local(osb))
2217 ocfs2_cluster_unlock(osb, &dl->dl_lockres, level);
2220 /* Reference counting of the dlm debug structure. We want this because
2221 * open references on the debug inodes can live on after a mount, so
2222 * we can't rely on the ocfs2_super to always exist. */
2223 static void ocfs2_dlm_debug_free(struct kref *kref)
2225 struct ocfs2_dlm_debug *dlm_debug;
2227 dlm_debug = container_of(kref, struct ocfs2_dlm_debug, d_refcnt);
2232 void ocfs2_put_dlm_debug(struct ocfs2_dlm_debug *dlm_debug)
2235 kref_put(&dlm_debug->d_refcnt, ocfs2_dlm_debug_free);
2238 static void ocfs2_get_dlm_debug(struct ocfs2_dlm_debug *debug)
2240 kref_get(&debug->d_refcnt);
2243 struct ocfs2_dlm_debug *ocfs2_new_dlm_debug(void)
2245 struct ocfs2_dlm_debug *dlm_debug;
2247 dlm_debug = kmalloc(sizeof(struct ocfs2_dlm_debug), GFP_KERNEL);
2249 mlog_errno(-ENOMEM);
2253 kref_init(&dlm_debug->d_refcnt);
2254 INIT_LIST_HEAD(&dlm_debug->d_lockres_tracking);
2255 dlm_debug->d_locking_state = NULL;
2260 /* Access to this is arbitrated for us via seq_file->sem. */
2261 struct ocfs2_dlm_seq_priv {
2262 struct ocfs2_dlm_debug *p_dlm_debug;
2263 struct ocfs2_lock_res p_iter_res;
2264 struct ocfs2_lock_res p_tmp_res;
2267 static struct ocfs2_lock_res *ocfs2_dlm_next_res(struct ocfs2_lock_res *start,
2268 struct ocfs2_dlm_seq_priv *priv)
2270 struct ocfs2_lock_res *iter, *ret = NULL;
2271 struct ocfs2_dlm_debug *dlm_debug = priv->p_dlm_debug;
2273 assert_spin_locked(&ocfs2_dlm_tracking_lock);
2275 list_for_each_entry(iter, &start->l_debug_list, l_debug_list) {
2276 /* discover the head of the list */
2277 if (&iter->l_debug_list == &dlm_debug->d_lockres_tracking) {
2278 mlog(0, "End of list found, %p\n", ret);
2282 /* We track our "dummy" iteration lockres' by a NULL
2284 if (iter->l_ops != NULL) {
2293 static void *ocfs2_dlm_seq_start(struct seq_file *m, loff_t *pos)
2295 struct ocfs2_dlm_seq_priv *priv = m->private;
2296 struct ocfs2_lock_res *iter;
2298 spin_lock(&ocfs2_dlm_tracking_lock);
2299 iter = ocfs2_dlm_next_res(&priv->p_iter_res, priv);
2301 /* Since lockres' have the lifetime of their container
2302 * (which can be inodes, ocfs2_supers, etc) we want to
2303 * copy this out to a temporary lockres while still
2304 * under the spinlock. Obviously after this we can't
2305 * trust any pointers on the copy returned, but that's
2306 * ok as the information we want isn't typically held
2308 priv->p_tmp_res = *iter;
2309 iter = &priv->p_tmp_res;
2311 spin_unlock(&ocfs2_dlm_tracking_lock);
2316 static void ocfs2_dlm_seq_stop(struct seq_file *m, void *v)
2320 static void *ocfs2_dlm_seq_next(struct seq_file *m, void *v, loff_t *pos)
2322 struct ocfs2_dlm_seq_priv *priv = m->private;
2323 struct ocfs2_lock_res *iter = v;
2324 struct ocfs2_lock_res *dummy = &priv->p_iter_res;
2326 spin_lock(&ocfs2_dlm_tracking_lock);
2327 iter = ocfs2_dlm_next_res(iter, priv);
2328 list_del_init(&dummy->l_debug_list);
2330 list_add(&dummy->l_debug_list, &iter->l_debug_list);
2331 priv->p_tmp_res = *iter;
2332 iter = &priv->p_tmp_res;
2334 spin_unlock(&ocfs2_dlm_tracking_lock);
2339 /* So that debugfs.ocfs2 can determine which format is being used */
2340 #define OCFS2_DLM_DEBUG_STR_VERSION 1
2341 static int ocfs2_dlm_seq_show(struct seq_file *m, void *v)
2345 struct ocfs2_lock_res *lockres = v;
2350 seq_printf(m, "0x%x\t", OCFS2_DLM_DEBUG_STR_VERSION);
2352 if (lockres->l_type == OCFS2_LOCK_TYPE_DENTRY)
2353 seq_printf(m, "%.*s%08x\t", OCFS2_DENTRY_LOCK_INO_START - 1,
2355 (unsigned int)ocfs2_get_dentry_lock_ino(lockres));
2357 seq_printf(m, "%.*s\t", OCFS2_LOCK_ID_MAX_LEN, lockres->l_name);
2359 seq_printf(m, "%d\t"
2370 lockres->l_unlock_action,
2371 lockres->l_ro_holders,
2372 lockres->l_ex_holders,
2373 lockres->l_requested,
2374 lockres->l_blocking);
2376 /* Dump the raw LVB */
2377 lvb = lockres->l_lksb.lvb;
2378 for(i = 0; i < DLM_LVB_LEN; i++)
2379 seq_printf(m, "0x%x\t", lvb[i]);
2382 seq_printf(m, "\n");
2386 static struct seq_operations ocfs2_dlm_seq_ops = {
2387 .start = ocfs2_dlm_seq_start,
2388 .stop = ocfs2_dlm_seq_stop,
2389 .next = ocfs2_dlm_seq_next,
2390 .show = ocfs2_dlm_seq_show,
2393 static int ocfs2_dlm_debug_release(struct inode *inode, struct file *file)
2395 struct seq_file *seq = (struct seq_file *) file->private_data;
2396 struct ocfs2_dlm_seq_priv *priv = seq->private;
2397 struct ocfs2_lock_res *res = &priv->p_iter_res;
2399 ocfs2_remove_lockres_tracking(res);
2400 ocfs2_put_dlm_debug(priv->p_dlm_debug);
2401 return seq_release_private(inode, file);
2404 static int ocfs2_dlm_debug_open(struct inode *inode, struct file *file)
2407 struct ocfs2_dlm_seq_priv *priv;
2408 struct seq_file *seq;
2409 struct ocfs2_super *osb;
2411 priv = kzalloc(sizeof(struct ocfs2_dlm_seq_priv), GFP_KERNEL);
2417 osb = inode->i_private;
2418 ocfs2_get_dlm_debug(osb->osb_dlm_debug);
2419 priv->p_dlm_debug = osb->osb_dlm_debug;
2420 INIT_LIST_HEAD(&priv->p_iter_res.l_debug_list);
2422 ret = seq_open(file, &ocfs2_dlm_seq_ops);
2429 seq = (struct seq_file *) file->private_data;
2430 seq->private = priv;
2432 ocfs2_add_lockres_tracking(&priv->p_iter_res,
2439 static const struct file_operations ocfs2_dlm_debug_fops = {
2440 .open = ocfs2_dlm_debug_open,
2441 .release = ocfs2_dlm_debug_release,
2443 .llseek = seq_lseek,
2446 static int ocfs2_dlm_init_debug(struct ocfs2_super *osb)
2449 struct ocfs2_dlm_debug *dlm_debug = osb->osb_dlm_debug;
2451 dlm_debug->d_locking_state = debugfs_create_file("locking_state",
2453 osb->osb_debug_root,
2455 &ocfs2_dlm_debug_fops);
2456 if (!dlm_debug->d_locking_state) {
2459 "Unable to create locking state debugfs file.\n");
2463 ocfs2_get_dlm_debug(dlm_debug);
2468 static void ocfs2_dlm_shutdown_debug(struct ocfs2_super *osb)
2470 struct ocfs2_dlm_debug *dlm_debug = osb->osb_dlm_debug;
2473 debugfs_remove(dlm_debug->d_locking_state);
2474 ocfs2_put_dlm_debug(dlm_debug);
2478 int ocfs2_dlm_init(struct ocfs2_super *osb)
2482 struct dlm_ctxt *dlm = NULL;
2486 if (ocfs2_mount_local(osb))
2489 status = ocfs2_dlm_init_debug(osb);
2495 /* launch downconvert thread */
2496 osb->dc_task = kthread_run(ocfs2_downconvert_thread, osb, "ocfs2dc");
2497 if (IS_ERR(osb->dc_task)) {
2498 status = PTR_ERR(osb->dc_task);
2499 osb->dc_task = NULL;
2504 /* used by the dlm code to make message headers unique, each
2505 * node in this domain must agree on this. */
2506 dlm_key = crc32_le(0, osb->uuid_str, strlen(osb->uuid_str));
2508 /* for now, uuid == domain */
2509 dlm = dlm_register_domain(osb->uuid_str, dlm_key);
2511 status = PTR_ERR(dlm);
2516 dlm_register_eviction_cb(dlm, &osb->osb_eviction_cb);
2519 ocfs2_super_lock_res_init(&osb->osb_super_lockres, osb);
2520 ocfs2_rename_lock_res_init(&osb->osb_rename_lockres, osb);
2527 ocfs2_dlm_shutdown_debug(osb);
2529 kthread_stop(osb->dc_task);
2536 void ocfs2_dlm_shutdown(struct ocfs2_super *osb)
2540 dlm_unregister_eviction_cb(&osb->osb_eviction_cb);
2542 ocfs2_drop_osb_locks(osb);
2545 kthread_stop(osb->dc_task);
2546 osb->dc_task = NULL;
2549 ocfs2_lock_res_free(&osb->osb_super_lockres);
2550 ocfs2_lock_res_free(&osb->osb_rename_lockres);
2552 dlm_unregister_domain(osb->dlm);
2555 ocfs2_dlm_shutdown_debug(osb);
2560 static void ocfs2_unlock_ast(void *opaque, enum dlm_status status)
2562 struct ocfs2_lock_res *lockres = opaque;
2563 unsigned long flags;
2567 mlog(0, "UNLOCK AST called on lock %s, action = %d\n", lockres->l_name,
2568 lockres->l_unlock_action);
2570 spin_lock_irqsave(&lockres->l_lock, flags);
2571 /* We tried to cancel a convert request, but it was already
2572 * granted. All we want to do here is clear our unlock
2573 * state. The wake_up call done at the bottom is redundant
2574 * (ocfs2_prepare_cancel_convert doesn't sleep on this) but doesn't
2575 * hurt anything anyway */
2576 if (status == DLM_CANCELGRANT &&
2577 lockres->l_unlock_action == OCFS2_UNLOCK_CANCEL_CONVERT) {
2578 mlog(0, "Got cancelgrant for %s\n", lockres->l_name);
2580 /* We don't clear the busy flag in this case as it
2581 * should have been cleared by the ast which the dlm
2583 goto complete_unlock;
2586 if (status != DLM_NORMAL) {
2587 mlog(ML_ERROR, "Dlm passes status %d for lock %s, "
2588 "unlock_action %d\n", status, lockres->l_name,
2589 lockres->l_unlock_action);
2590 spin_unlock_irqrestore(&lockres->l_lock, flags);
2594 switch(lockres->l_unlock_action) {
2595 case OCFS2_UNLOCK_CANCEL_CONVERT:
2596 mlog(0, "Cancel convert success for %s\n", lockres->l_name);
2597 lockres->l_action = OCFS2_AST_INVALID;
2599 case OCFS2_UNLOCK_DROP_LOCK:
2600 lockres->l_level = LKM_IVMODE;
2606 lockres_clear_flags(lockres, OCFS2_LOCK_BUSY);
2608 lockres->l_unlock_action = OCFS2_UNLOCK_INVALID;
2609 spin_unlock_irqrestore(&lockres->l_lock, flags);
2611 wake_up(&lockres->l_event);
2616 static int ocfs2_drop_lock(struct ocfs2_super *osb,
2617 struct ocfs2_lock_res *lockres)
2619 enum dlm_status status;
2620 unsigned long flags;
2623 /* We didn't get anywhere near actually using this lockres. */
2624 if (!(lockres->l_flags & OCFS2_LOCK_INITIALIZED))
2627 if (lockres->l_ops->flags & LOCK_TYPE_USES_LVB)
2628 lkm_flags |= LKM_VALBLK;
2630 spin_lock_irqsave(&lockres->l_lock, flags);
2632 mlog_bug_on_msg(!(lockres->l_flags & OCFS2_LOCK_FREEING),
2633 "lockres %s, flags 0x%lx\n",
2634 lockres->l_name, lockres->l_flags);
2636 while (lockres->l_flags & OCFS2_LOCK_BUSY) {
2637 mlog(0, "waiting on busy lock \"%s\": flags = %lx, action = "
2638 "%u, unlock_action = %u\n",
2639 lockres->l_name, lockres->l_flags, lockres->l_action,
2640 lockres->l_unlock_action);
2642 spin_unlock_irqrestore(&lockres->l_lock, flags);
2644 /* XXX: Today we just wait on any busy
2645 * locks... Perhaps we need to cancel converts in the
2647 ocfs2_wait_on_busy_lock(lockres);
2649 spin_lock_irqsave(&lockres->l_lock, flags);
2652 if (lockres->l_ops->flags & LOCK_TYPE_USES_LVB) {
2653 if (lockres->l_flags & OCFS2_LOCK_ATTACHED &&
2654 lockres->l_level == LKM_EXMODE &&
2655 !(lockres->l_flags & OCFS2_LOCK_NEEDS_REFRESH))
2656 lockres->l_ops->set_lvb(lockres);
2659 if (lockres->l_flags & OCFS2_LOCK_BUSY)
2660 mlog(ML_ERROR, "destroying busy lock: \"%s\"\n",
2662 if (lockres->l_flags & OCFS2_LOCK_BLOCKED)
2663 mlog(0, "destroying blocked lock: \"%s\"\n", lockres->l_name);
2665 if (!(lockres->l_flags & OCFS2_LOCK_ATTACHED)) {
2666 spin_unlock_irqrestore(&lockres->l_lock, flags);
2670 lockres_clear_flags(lockres, OCFS2_LOCK_ATTACHED);
2672 /* make sure we never get here while waiting for an ast to
2674 BUG_ON(lockres->l_action != OCFS2_AST_INVALID);
2676 /* is this necessary? */
2677 lockres_or_flags(lockres, OCFS2_LOCK_BUSY);
2678 lockres->l_unlock_action = OCFS2_UNLOCK_DROP_LOCK;
2679 spin_unlock_irqrestore(&lockres->l_lock, flags);
2681 mlog(0, "lock %s\n", lockres->l_name);
2683 status = dlmunlock(osb->dlm, &lockres->l_lksb, lkm_flags,
2684 ocfs2_unlock_ast, lockres);
2685 if (status != DLM_NORMAL) {
2686 ocfs2_log_dlm_error("dlmunlock", status, lockres);
2687 mlog(ML_ERROR, "lockres flags: %lu\n", lockres->l_flags);
2688 dlm_print_one_lock(lockres->l_lksb.lockid);
2691 mlog(0, "lock %s, successfull return from dlmunlock\n",
2694 ocfs2_wait_on_busy_lock(lockres);
2700 /* Mark the lockres as being dropped. It will no longer be
2701 * queued if blocking, but we still may have to wait on it
2702 * being dequeued from the downconvert thread before we can consider
2705 * You can *not* attempt to call cluster_lock on this lockres anymore. */
2706 void ocfs2_mark_lockres_freeing(struct ocfs2_lock_res *lockres)
2709 struct ocfs2_mask_waiter mw;
2710 unsigned long flags;
2712 ocfs2_init_mask_waiter(&mw);
2714 spin_lock_irqsave(&lockres->l_lock, flags);
2715 lockres->l_flags |= OCFS2_LOCK_FREEING;
2716 while (lockres->l_flags & OCFS2_LOCK_QUEUED) {
2717 lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_QUEUED, 0);
2718 spin_unlock_irqrestore(&lockres->l_lock, flags);
2720 mlog(0, "Waiting on lockres %s\n", lockres->l_name);
2722 status = ocfs2_wait_for_mask(&mw);
2726 spin_lock_irqsave(&lockres->l_lock, flags);
2728 spin_unlock_irqrestore(&lockres->l_lock, flags);
2731 void ocfs2_simple_drop_lockres(struct ocfs2_super *osb,
2732 struct ocfs2_lock_res *lockres)
2736 ocfs2_mark_lockres_freeing(lockres);
2737 ret = ocfs2_drop_lock(osb, lockres);
2742 static void ocfs2_drop_osb_locks(struct ocfs2_super *osb)
2744 ocfs2_simple_drop_lockres(osb, &osb->osb_super_lockres);
2745 ocfs2_simple_drop_lockres(osb, &osb->osb_rename_lockres);
2748 int ocfs2_drop_inode_locks(struct inode *inode)
2754 /* No need to call ocfs2_mark_lockres_freeing here -
2755 * ocfs2_clear_inode has done it for us. */
2757 err = ocfs2_drop_lock(OCFS2_SB(inode->i_sb),
2758 &OCFS2_I(inode)->ip_open_lockres);
2764 err = ocfs2_drop_lock(OCFS2_SB(inode->i_sb),
2765 &OCFS2_I(inode)->ip_inode_lockres);
2768 if (err < 0 && !status)
2771 err = ocfs2_drop_lock(OCFS2_SB(inode->i_sb),
2772 &OCFS2_I(inode)->ip_rw_lockres);
2775 if (err < 0 && !status)
2782 static void ocfs2_prepare_downconvert(struct ocfs2_lock_res *lockres,
2785 assert_spin_locked(&lockres->l_lock);
2787 BUG_ON(lockres->l_blocking <= LKM_NLMODE);
2789 if (lockres->l_level <= new_level) {
2790 mlog(ML_ERROR, "lockres->l_level (%u) <= new_level (%u)\n",
2791 lockres->l_level, new_level);
2795 mlog(0, "lock %s, new_level = %d, l_blocking = %d\n",
2796 lockres->l_name, new_level, lockres->l_blocking);
2798 lockres->l_action = OCFS2_AST_DOWNCONVERT;
2799 lockres->l_requested = new_level;
2800 lockres_or_flags(lockres, OCFS2_LOCK_BUSY);
2803 static int ocfs2_downconvert_lock(struct ocfs2_super *osb,
2804 struct ocfs2_lock_res *lockres,
2808 int ret, dlm_flags = LKM_CONVERT;
2809 enum dlm_status status;
2814 dlm_flags |= LKM_VALBLK;
2816 status = dlmlock(osb->dlm,
2821 OCFS2_LOCK_ID_MAX_LEN - 1,
2824 ocfs2_blocking_ast);
2825 if (status != DLM_NORMAL) {
2826 ocfs2_log_dlm_error("dlmlock", status, lockres);
2828 ocfs2_recover_from_dlm_error(lockres, 1);
2838 /* returns 1 when the caller should unlock and call dlmunlock */
2839 static int ocfs2_prepare_cancel_convert(struct ocfs2_super *osb,
2840 struct ocfs2_lock_res *lockres)
2842 assert_spin_locked(&lockres->l_lock);
2845 mlog(0, "lock %s\n", lockres->l_name);
2847 if (lockres->l_unlock_action == OCFS2_UNLOCK_CANCEL_CONVERT) {
2848 /* If we're already trying to cancel a lock conversion
2849 * then just drop the spinlock and allow the caller to
2850 * requeue this lock. */
2852 mlog(0, "Lockres %s, skip convert\n", lockres->l_name);
2856 /* were we in a convert when we got the bast fire? */
2857 BUG_ON(lockres->l_action != OCFS2_AST_CONVERT &&
2858 lockres->l_action != OCFS2_AST_DOWNCONVERT);
2859 /* set things up for the unlockast to know to just
2860 * clear out the ast_action and unset busy, etc. */
2861 lockres->l_unlock_action = OCFS2_UNLOCK_CANCEL_CONVERT;
2863 mlog_bug_on_msg(!(lockres->l_flags & OCFS2_LOCK_BUSY),
2864 "lock %s, invalid flags: 0x%lx\n",
2865 lockres->l_name, lockres->l_flags);
2870 static int ocfs2_cancel_convert(struct ocfs2_super *osb,
2871 struct ocfs2_lock_res *lockres)
2874 enum dlm_status status;
2877 mlog(0, "lock %s\n", lockres->l_name);
2880 status = dlmunlock(osb->dlm,
2885 if (status != DLM_NORMAL) {
2886 ocfs2_log_dlm_error("dlmunlock", status, lockres);
2888 ocfs2_recover_from_dlm_error(lockres, 0);
2891 mlog(0, "lock %s return from dlmunlock\n", lockres->l_name);
2897 static int ocfs2_unblock_lock(struct ocfs2_super *osb,
2898 struct ocfs2_lock_res *lockres,
2899 struct ocfs2_unblock_ctl *ctl)
2901 unsigned long flags;
2909 spin_lock_irqsave(&lockres->l_lock, flags);
2911 BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BLOCKED));
2914 if (lockres->l_flags & OCFS2_LOCK_BUSY) {
2916 ret = ocfs2_prepare_cancel_convert(osb, lockres);
2917 spin_unlock_irqrestore(&lockres->l_lock, flags);
2919 ret = ocfs2_cancel_convert(osb, lockres);
2926 /* if we're blocking an exclusive and we have *any* holders,
2928 if ((lockres->l_blocking == LKM_EXMODE)
2929 && (lockres->l_ex_holders || lockres->l_ro_holders))
2932 /* If it's a PR we're blocking, then only
2933 * requeue if we've got any EX holders */
2934 if (lockres->l_blocking == LKM_PRMODE &&
2935 lockres->l_ex_holders)
2939 * Can we get a lock in this state if the holder counts are
2940 * zero? The meta data unblock code used to check this.
2942 if ((lockres->l_ops->flags & LOCK_TYPE_REQUIRES_REFRESH)
2943 && (lockres->l_flags & OCFS2_LOCK_REFRESHING))
2946 new_level = ocfs2_highest_compat_lock_level(lockres->l_blocking);
2948 if (lockres->l_ops->check_downconvert
2949 && !lockres->l_ops->check_downconvert(lockres, new_level))
2952 /* If we get here, then we know that there are no more
2953 * incompatible holders (and anyone asking for an incompatible
2954 * lock is blocked). We can now downconvert the lock */
2955 if (!lockres->l_ops->downconvert_worker)
2958 /* Some lockres types want to do a bit of work before
2959 * downconverting a lock. Allow that here. The worker function
2960 * may sleep, so we save off a copy of what we're blocking as
2961 * it may change while we're not holding the spin lock. */
2962 blocking = lockres->l_blocking;
2963 spin_unlock_irqrestore(&lockres->l_lock, flags);
2965 ctl->unblock_action = lockres->l_ops->downconvert_worker(lockres, blocking);
2967 if (ctl->unblock_action == UNBLOCK_STOP_POST)
2970 spin_lock_irqsave(&lockres->l_lock, flags);
2971 if (blocking != lockres->l_blocking) {
2972 /* If this changed underneath us, then we can't drop
2980 if (lockres->l_ops->flags & LOCK_TYPE_USES_LVB) {
2981 if (lockres->l_level == LKM_EXMODE)
2985 * We only set the lvb if the lock has been fully
2986 * refreshed - otherwise we risk setting stale
2987 * data. Otherwise, there's no need to actually clear
2988 * out the lvb here as it's value is still valid.
2990 if (set_lvb && !(lockres->l_flags & OCFS2_LOCK_NEEDS_REFRESH))
2991 lockres->l_ops->set_lvb(lockres);
2994 ocfs2_prepare_downconvert(lockres, new_level);
2995 spin_unlock_irqrestore(&lockres->l_lock, flags);
2996 ret = ocfs2_downconvert_lock(osb, lockres, new_level, set_lvb);
3002 spin_unlock_irqrestore(&lockres->l_lock, flags);
3009 static int ocfs2_data_convert_worker(struct ocfs2_lock_res *lockres,
3012 struct inode *inode;
3013 struct address_space *mapping;
3015 inode = ocfs2_lock_res_inode(lockres);
3016 mapping = inode->i_mapping;
3018 if (S_ISREG(inode->i_mode))
3022 * We need this before the filemap_fdatawrite() so that it can
3023 * transfer the dirty bit from the PTE to the
3024 * page. Unfortunately this means that even for EX->PR
3025 * downconverts, we'll lose our mappings and have to build
3028 unmap_mapping_range(mapping, 0, 0, 0);
3030 if (filemap_fdatawrite(mapping)) {
3031 mlog(ML_ERROR, "Could not sync inode %llu for downconvert!",
3032 (unsigned long long)OCFS2_I(inode)->ip_blkno);
3034 sync_mapping_buffers(mapping);
3035 if (blocking == LKM_EXMODE) {
3036 truncate_inode_pages(mapping, 0);
3038 /* We only need to wait on the I/O if we're not also
3039 * truncating pages because truncate_inode_pages waits
3040 * for us above. We don't truncate pages if we're
3041 * blocking anything < EXMODE because we want to keep
3042 * them around in that case. */
3043 filemap_fdatawait(mapping);
3047 return UNBLOCK_CONTINUE;
3050 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res *lockres,
3053 struct inode *inode = ocfs2_lock_res_inode(lockres);
3054 int checkpointed = ocfs2_inode_fully_checkpointed(inode);
3056 BUG_ON(new_level != LKM_NLMODE && new_level != LKM_PRMODE);
3057 BUG_ON(lockres->l_level != LKM_EXMODE && !checkpointed);
3062 ocfs2_start_checkpoint(OCFS2_SB(inode->i_sb));
3066 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res *lockres)
3068 struct inode *inode = ocfs2_lock_res_inode(lockres);
3070 __ocfs2_stuff_meta_lvb(inode);
3074 * Does the final reference drop on our dentry lock. Right now this
3075 * happens in the downconvert thread, but we could choose to simplify the
3076 * dlmglue API and push these off to the ocfs2_wq in the future.
3078 static void ocfs2_dentry_post_unlock(struct ocfs2_super *osb,
3079 struct ocfs2_lock_res *lockres)
3081 struct ocfs2_dentry_lock *dl = ocfs2_lock_res_dl(lockres);
3082 ocfs2_dentry_lock_put(osb, dl);
3086 * d_delete() matching dentries before the lock downconvert.
3088 * At this point, any process waiting to destroy the
3089 * dentry_lock due to last ref count is stopped by the
3090 * OCFS2_LOCK_QUEUED flag.
3092 * We have two potential problems
3094 * 1) If we do the last reference drop on our dentry_lock (via dput)
3095 * we'll wind up in ocfs2_release_dentry_lock(), waiting on
3096 * the downconvert to finish. Instead we take an elevated
3097 * reference and push the drop until after we've completed our
3098 * unblock processing.
3100 * 2) There might be another process with a final reference,
3101 * waiting on us to finish processing. If this is the case, we
3102 * detect it and exit out - there's no more dentries anyway.
3104 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res *lockres,
3107 struct ocfs2_dentry_lock *dl = ocfs2_lock_res_dl(lockres);
3108 struct ocfs2_inode_info *oi = OCFS2_I(dl->dl_inode);
3109 struct dentry *dentry;
3110 unsigned long flags;
3114 * This node is blocking another node from getting a read
3115 * lock. This happens when we've renamed within a
3116 * directory. We've forced the other nodes to d_delete(), but
3117 * we never actually dropped our lock because it's still
3118 * valid. The downconvert code will retain a PR for this node,
3119 * so there's no further work to do.
3121 if (blocking == LKM_PRMODE)
3122 return UNBLOCK_CONTINUE;
3125 * Mark this inode as potentially orphaned. The code in
3126 * ocfs2_delete_inode() will figure out whether it actually
3127 * needs to be freed or not.
3129 spin_lock(&oi->ip_lock);
3130 oi->ip_flags |= OCFS2_INODE_MAYBE_ORPHANED;
3131 spin_unlock(&oi->ip_lock);
3134 * Yuck. We need to make sure however that the check of
3135 * OCFS2_LOCK_FREEING and the extra reference are atomic with
3136 * respect to a reference decrement or the setting of that
3139 spin_lock_irqsave(&lockres->l_lock, flags);
3140 spin_lock(&dentry_attach_lock);
3141 if (!(lockres->l_flags & OCFS2_LOCK_FREEING)
3146 spin_unlock(&dentry_attach_lock);
3147 spin_unlock_irqrestore(&lockres->l_lock, flags);
3149 mlog(0, "extra_ref = %d\n", extra_ref);
3152 * We have a process waiting on us in ocfs2_dentry_iput(),
3153 * which means we can't have any more outstanding
3154 * aliases. There's no need to do any more work.
3157 return UNBLOCK_CONTINUE;
3159 spin_lock(&dentry_attach_lock);
3161 dentry = ocfs2_find_local_alias(dl->dl_inode,
3162 dl->dl_parent_blkno, 1);
3165 spin_unlock(&dentry_attach_lock);
3167 mlog(0, "d_delete(%.*s);\n", dentry->d_name.len,
3168 dentry->d_name.name);
3171 * The following dcache calls may do an
3172 * iput(). Normally we don't want that from the
3173 * downconverting thread, but in this case it's ok
3174 * because the requesting node already has an
3175 * exclusive lock on the inode, so it can't be queued
3176 * for a downconvert.
3181 spin_lock(&dentry_attach_lock);
3183 spin_unlock(&dentry_attach_lock);
3186 * If we are the last holder of this dentry lock, there is no
3187 * reason to downconvert so skip straight to the unlock.
3189 if (dl->dl_count == 1)
3190 return UNBLOCK_STOP_POST;
3192 return UNBLOCK_CONTINUE_POST;
3195 void ocfs2_process_blocked_lock(struct ocfs2_super *osb,
3196 struct ocfs2_lock_res *lockres)
3199 struct ocfs2_unblock_ctl ctl = {0, 0,};
3200 unsigned long flags;
3202 /* Our reference to the lockres in this function can be
3203 * considered valid until we remove the OCFS2_LOCK_QUEUED
3209 BUG_ON(!lockres->l_ops);
3211 mlog(0, "lockres %s blocked.\n", lockres->l_name);
3213 /* Detect whether a lock has been marked as going away while
3214 * the downconvert thread was processing other things. A lock can
3215 * still be marked with OCFS2_LOCK_FREEING after this check,
3216 * but short circuiting here will still save us some
3218 spin_lock_irqsave(&lockres->l_lock, flags);
3219 if (lockres->l_flags & OCFS2_LOCK_FREEING)
3221 spin_unlock_irqrestore(&lockres->l_lock, flags);
3223 status = ocfs2_unblock_lock(osb, lockres, &ctl);
3227 spin_lock_irqsave(&lockres->l_lock, flags);
3229 if (lockres->l_flags & OCFS2_LOCK_FREEING || !ctl.requeue) {
3230 lockres_clear_flags(lockres, OCFS2_LOCK_QUEUED);
3232 ocfs2_schedule_blocked_lock(osb, lockres);
3234 mlog(0, "lockres %s, requeue = %s.\n", lockres->l_name,
3235 ctl.requeue ? "yes" : "no");
3236 spin_unlock_irqrestore(&lockres->l_lock, flags);
3238 if (ctl.unblock_action != UNBLOCK_CONTINUE
3239 && lockres->l_ops->post_unlock)
3240 lockres->l_ops->post_unlock(osb, lockres);
3245 static void ocfs2_schedule_blocked_lock(struct ocfs2_super *osb,
3246 struct ocfs2_lock_res *lockres)
3250 assert_spin_locked(&lockres->l_lock);
3252 if (lockres->l_flags & OCFS2_LOCK_FREEING) {
3253 /* Do not schedule a lock for downconvert when it's on
3254 * the way to destruction - any nodes wanting access
3255 * to the resource will get it soon. */
3256 mlog(0, "Lockres %s won't be scheduled: flags 0x%lx\n",
3257 lockres->l_name, lockres->l_flags);
3261 lockres_or_flags(lockres, OCFS2_LOCK_QUEUED);
3263 spin_lock(&osb->dc_task_lock);
3264 if (list_empty(&lockres->l_blocked_list)) {
3265 list_add_tail(&lockres->l_blocked_list,
3266 &osb->blocked_lock_list);
3267 osb->blocked_lock_count++;
3269 spin_unlock(&osb->dc_task_lock);
3274 static void ocfs2_downconvert_thread_do_work(struct ocfs2_super *osb)
3276 unsigned long processed;
3277 struct ocfs2_lock_res *lockres;
3281 spin_lock(&osb->dc_task_lock);
3282 /* grab this early so we know to try again if a state change and
3283 * wake happens part-way through our work */
3284 osb->dc_work_sequence = osb->dc_wake_sequence;
3286 processed = osb->blocked_lock_count;
3288 BUG_ON(list_empty(&osb->blocked_lock_list));
3290 lockres = list_entry(osb->blocked_lock_list.next,
3291 struct ocfs2_lock_res, l_blocked_list);
3292 list_del_init(&lockres->l_blocked_list);
3293 osb->blocked_lock_count--;
3294 spin_unlock(&osb->dc_task_lock);
3299 ocfs2_process_blocked_lock(osb, lockres);
3301 spin_lock(&osb->dc_task_lock);
3303 spin_unlock(&osb->dc_task_lock);
3308 static int ocfs2_downconvert_thread_lists_empty(struct ocfs2_super *osb)
3312 spin_lock(&osb->dc_task_lock);
3313 if (list_empty(&osb->blocked_lock_list))
3316 spin_unlock(&osb->dc_task_lock);
3320 static int ocfs2_downconvert_thread_should_wake(struct ocfs2_super *osb)
3322 int should_wake = 0;
3324 spin_lock(&osb->dc_task_lock);
3325 if (osb->dc_work_sequence != osb->dc_wake_sequence)
3327 spin_unlock(&osb->dc_task_lock);
3332 int ocfs2_downconvert_thread(void *arg)
3335 struct ocfs2_super *osb = arg;
3337 /* only quit once we've been asked to stop and there is no more
3339 while (!(kthread_should_stop() &&
3340 ocfs2_downconvert_thread_lists_empty(osb))) {
3342 wait_event_interruptible(osb->dc_event,
3343 ocfs2_downconvert_thread_should_wake(osb) ||
3344 kthread_should_stop());
3346 mlog(0, "downconvert_thread: awoken\n");
3348 ocfs2_downconvert_thread_do_work(osb);
3351 osb->dc_task = NULL;
3355 void ocfs2_wake_downconvert_thread(struct ocfs2_super *osb)
3357 spin_lock(&osb->dc_task_lock);
3358 /* make sure the voting thread gets a swipe at whatever changes
3359 * the caller may have made to the voting state */
3360 osb->dc_wake_sequence++;
3361 spin_unlock(&osb->dc_task_lock);
3362 wake_up(&osb->dc_event);