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/kthread.h>
31 #include <linux/pagemap.h>
32 #include <linux/debugfs.h>
33 #include <linux/seq_file.h>
34 #include <linux/time.h>
35 #include <linux/quotaops.h>
36 #include <linux/sched/signal.h>
38 #define MLOG_MASK_PREFIX ML_DLM_GLUE
39 #include <cluster/masklog.h>
42 #include "ocfs2_lockingver.h"
47 #include "extent_map.h"
49 #include "heartbeat.h"
52 #include "stackglue.h"
57 #include "refcounttree.h"
60 #include "buffer_head_io.h"
62 struct ocfs2_mask_waiter
{
63 struct list_head mw_item
;
65 struct completion mw_complete
;
66 unsigned long mw_mask
;
67 unsigned long mw_goal
;
68 #ifdef CONFIG_OCFS2_FS_STATS
69 ktime_t mw_lock_start
;
73 static struct ocfs2_super
*ocfs2_get_dentry_osb(struct ocfs2_lock_res
*lockres
);
74 static struct ocfs2_super
*ocfs2_get_inode_osb(struct ocfs2_lock_res
*lockres
);
75 static struct ocfs2_super
*ocfs2_get_file_osb(struct ocfs2_lock_res
*lockres
);
76 static struct ocfs2_super
*ocfs2_get_qinfo_osb(struct ocfs2_lock_res
*lockres
);
79 * Return value from ->downconvert_worker functions.
81 * These control the precise actions of ocfs2_unblock_lock()
82 * and ocfs2_process_blocked_lock()
85 enum ocfs2_unblock_action
{
86 UNBLOCK_CONTINUE
= 0, /* Continue downconvert */
87 UNBLOCK_CONTINUE_POST
= 1, /* Continue downconvert, fire
88 * ->post_unlock callback */
89 UNBLOCK_STOP_POST
= 2, /* Do not downconvert, fire
90 * ->post_unlock() callback. */
93 struct ocfs2_unblock_ctl
{
95 enum ocfs2_unblock_action unblock_action
;
98 /* Lockdep class keys */
99 struct lock_class_key lockdep_keys
[OCFS2_NUM_LOCK_TYPES
];
101 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res
*lockres
,
103 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res
*lockres
);
105 static int ocfs2_data_convert_worker(struct ocfs2_lock_res
*lockres
,
108 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res
*lockres
,
111 static void ocfs2_dentry_post_unlock(struct ocfs2_super
*osb
,
112 struct ocfs2_lock_res
*lockres
);
114 static void ocfs2_set_qinfo_lvb(struct ocfs2_lock_res
*lockres
);
116 static int ocfs2_check_refcount_downconvert(struct ocfs2_lock_res
*lockres
,
118 static int ocfs2_refcount_convert_worker(struct ocfs2_lock_res
*lockres
,
121 #define mlog_meta_lvb(__level, __lockres) ocfs2_dump_meta_lvb_info(__level, __PRETTY_FUNCTION__, __LINE__, __lockres)
123 /* This aids in debugging situations where a bad LVB might be involved. */
124 static void ocfs2_dump_meta_lvb_info(u64 level
,
125 const char *function
,
127 struct ocfs2_lock_res
*lockres
)
129 struct ocfs2_meta_lvb
*lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
131 mlog(level
, "LVB information for %s (called from %s:%u):\n",
132 lockres
->l_name
, function
, line
);
133 mlog(level
, "version: %u, clusters: %u, generation: 0x%x\n",
134 lvb
->lvb_version
, be32_to_cpu(lvb
->lvb_iclusters
),
135 be32_to_cpu(lvb
->lvb_igeneration
));
136 mlog(level
, "size: %llu, uid %u, gid %u, mode 0x%x\n",
137 (unsigned long long)be64_to_cpu(lvb
->lvb_isize
),
138 be32_to_cpu(lvb
->lvb_iuid
), be32_to_cpu(lvb
->lvb_igid
),
139 be16_to_cpu(lvb
->lvb_imode
));
140 mlog(level
, "nlink %u, atime_packed 0x%llx, ctime_packed 0x%llx, "
141 "mtime_packed 0x%llx iattr 0x%x\n", be16_to_cpu(lvb
->lvb_inlink
),
142 (long long)be64_to_cpu(lvb
->lvb_iatime_packed
),
143 (long long)be64_to_cpu(lvb
->lvb_ictime_packed
),
144 (long long)be64_to_cpu(lvb
->lvb_imtime_packed
),
145 be32_to_cpu(lvb
->lvb_iattr
));
150 * OCFS2 Lock Resource Operations
152 * These fine tune the behavior of the generic dlmglue locking infrastructure.
154 * The most basic of lock types can point ->l_priv to their respective
155 * struct ocfs2_super and allow the default actions to manage things.
157 * Right now, each lock type also needs to implement an init function,
158 * and trivial lock/unlock wrappers. ocfs2_simple_drop_lockres()
159 * should be called when the lock is no longer needed (i.e., object
162 struct ocfs2_lock_res_ops
{
164 * Translate an ocfs2_lock_res * into an ocfs2_super *. Define
165 * this callback if ->l_priv is not an ocfs2_super pointer
167 struct ocfs2_super
* (*get_osb
)(struct ocfs2_lock_res
*);
170 * Optionally called in the downconvert thread after a
171 * successful downconvert. The lockres will not be referenced
172 * after this callback is called, so it is safe to free
175 * The exact semantics of when this is called are controlled
176 * by ->downconvert_worker()
178 void (*post_unlock
)(struct ocfs2_super
*, struct ocfs2_lock_res
*);
181 * Allow a lock type to add checks to determine whether it is
182 * safe to downconvert a lock. Return 0 to re-queue the
183 * downconvert at a later time, nonzero to continue.
185 * For most locks, the default checks that there are no
186 * incompatible holders are sufficient.
188 * Called with the lockres spinlock held.
190 int (*check_downconvert
)(struct ocfs2_lock_res
*, int);
193 * Allows a lock type to populate the lock value block. This
194 * is called on downconvert, and when we drop a lock.
196 * Locks that want to use this should set LOCK_TYPE_USES_LVB
197 * in the flags field.
199 * Called with the lockres spinlock held.
201 void (*set_lvb
)(struct ocfs2_lock_res
*);
204 * Called from the downconvert thread when it is determined
205 * that a lock will be downconverted. This is called without
206 * any locks held so the function can do work that might
207 * schedule (syncing out data, etc).
209 * This should return any one of the ocfs2_unblock_action
210 * values, depending on what it wants the thread to do.
212 int (*downconvert_worker
)(struct ocfs2_lock_res
*, int);
215 * LOCK_TYPE_* flags which describe the specific requirements
216 * of a lock type. Descriptions of each individual flag follow.
222 * Some locks want to "refresh" potentially stale data when a
223 * meaningful (PRMODE or EXMODE) lock level is first obtained. If this
224 * flag is set, the OCFS2_LOCK_NEEDS_REFRESH flag will be set on the
225 * individual lockres l_flags member from the ast function. It is
226 * expected that the locking wrapper will clear the
227 * OCFS2_LOCK_NEEDS_REFRESH flag when done.
229 #define LOCK_TYPE_REQUIRES_REFRESH 0x1
232 * Indicate that a lock type makes use of the lock value block. The
233 * ->set_lvb lock type callback must be defined.
235 #define LOCK_TYPE_USES_LVB 0x2
237 static struct ocfs2_lock_res_ops ocfs2_inode_rw_lops
= {
238 .get_osb
= ocfs2_get_inode_osb
,
242 static struct ocfs2_lock_res_ops ocfs2_inode_inode_lops
= {
243 .get_osb
= ocfs2_get_inode_osb
,
244 .check_downconvert
= ocfs2_check_meta_downconvert
,
245 .set_lvb
= ocfs2_set_meta_lvb
,
246 .downconvert_worker
= ocfs2_data_convert_worker
,
247 .flags
= LOCK_TYPE_REQUIRES_REFRESH
|LOCK_TYPE_USES_LVB
,
250 static struct ocfs2_lock_res_ops ocfs2_super_lops
= {
251 .flags
= LOCK_TYPE_REQUIRES_REFRESH
,
254 static struct ocfs2_lock_res_ops ocfs2_rename_lops
= {
258 static struct ocfs2_lock_res_ops ocfs2_nfs_sync_lops
= {
262 static struct ocfs2_lock_res_ops ocfs2_orphan_scan_lops
= {
263 .flags
= LOCK_TYPE_REQUIRES_REFRESH
|LOCK_TYPE_USES_LVB
,
266 static struct ocfs2_lock_res_ops ocfs2_dentry_lops
= {
267 .get_osb
= ocfs2_get_dentry_osb
,
268 .post_unlock
= ocfs2_dentry_post_unlock
,
269 .downconvert_worker
= ocfs2_dentry_convert_worker
,
273 static struct ocfs2_lock_res_ops ocfs2_inode_open_lops
= {
274 .get_osb
= ocfs2_get_inode_osb
,
278 static struct ocfs2_lock_res_ops ocfs2_flock_lops
= {
279 .get_osb
= ocfs2_get_file_osb
,
283 static struct ocfs2_lock_res_ops ocfs2_qinfo_lops
= {
284 .set_lvb
= ocfs2_set_qinfo_lvb
,
285 .get_osb
= ocfs2_get_qinfo_osb
,
286 .flags
= LOCK_TYPE_REQUIRES_REFRESH
| LOCK_TYPE_USES_LVB
,
289 static struct ocfs2_lock_res_ops ocfs2_refcount_block_lops
= {
290 .check_downconvert
= ocfs2_check_refcount_downconvert
,
291 .downconvert_worker
= ocfs2_refcount_convert_worker
,
295 static inline int ocfs2_is_inode_lock(struct ocfs2_lock_res
*lockres
)
297 return lockres
->l_type
== OCFS2_LOCK_TYPE_META
||
298 lockres
->l_type
== OCFS2_LOCK_TYPE_RW
||
299 lockres
->l_type
== OCFS2_LOCK_TYPE_OPEN
;
302 static inline struct ocfs2_lock_res
*ocfs2_lksb_to_lock_res(struct ocfs2_dlm_lksb
*lksb
)
304 return container_of(lksb
, struct ocfs2_lock_res
, l_lksb
);
307 static inline struct inode
*ocfs2_lock_res_inode(struct ocfs2_lock_res
*lockres
)
309 BUG_ON(!ocfs2_is_inode_lock(lockres
));
311 return (struct inode
*) lockres
->l_priv
;
314 static inline struct ocfs2_dentry_lock
*ocfs2_lock_res_dl(struct ocfs2_lock_res
*lockres
)
316 BUG_ON(lockres
->l_type
!= OCFS2_LOCK_TYPE_DENTRY
);
318 return (struct ocfs2_dentry_lock
*)lockres
->l_priv
;
321 static inline struct ocfs2_mem_dqinfo
*ocfs2_lock_res_qinfo(struct ocfs2_lock_res
*lockres
)
323 BUG_ON(lockres
->l_type
!= OCFS2_LOCK_TYPE_QINFO
);
325 return (struct ocfs2_mem_dqinfo
*)lockres
->l_priv
;
328 static inline struct ocfs2_refcount_tree
*
329 ocfs2_lock_res_refcount_tree(struct ocfs2_lock_res
*res
)
331 return container_of(res
, struct ocfs2_refcount_tree
, rf_lockres
);
334 static inline struct ocfs2_super
*ocfs2_get_lockres_osb(struct ocfs2_lock_res
*lockres
)
336 if (lockres
->l_ops
->get_osb
)
337 return lockres
->l_ops
->get_osb(lockres
);
339 return (struct ocfs2_super
*)lockres
->l_priv
;
342 static int ocfs2_lock_create(struct ocfs2_super
*osb
,
343 struct ocfs2_lock_res
*lockres
,
346 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res
*lockres
,
348 static void __ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
349 struct ocfs2_lock_res
*lockres
,
350 int level
, unsigned long caller_ip
);
351 static inline void ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
352 struct ocfs2_lock_res
*lockres
,
355 __ocfs2_cluster_unlock(osb
, lockres
, level
, _RET_IP_
);
358 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res
*lockres
);
359 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res
*lockres
);
360 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res
*lockres
);
361 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res
*lockres
, int level
);
362 static void ocfs2_schedule_blocked_lock(struct ocfs2_super
*osb
,
363 struct ocfs2_lock_res
*lockres
);
364 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res
*lockres
,
366 #define ocfs2_log_dlm_error(_func, _err, _lockres) do { \
367 if ((_lockres)->l_type != OCFS2_LOCK_TYPE_DENTRY) \
368 mlog(ML_ERROR, "DLM error %d while calling %s on resource %s\n", \
369 _err, _func, _lockres->l_name); \
371 mlog(ML_ERROR, "DLM error %d while calling %s on resource %.*s%08x\n", \
372 _err, _func, OCFS2_DENTRY_LOCK_INO_START - 1, (_lockres)->l_name, \
373 (unsigned int)ocfs2_get_dentry_lock_ino(_lockres)); \
375 static int ocfs2_downconvert_thread(void *arg
);
376 static void ocfs2_downconvert_on_unlock(struct ocfs2_super
*osb
,
377 struct ocfs2_lock_res
*lockres
);
378 static int ocfs2_inode_lock_update(struct inode
*inode
,
379 struct buffer_head
**bh
);
380 static void ocfs2_drop_osb_locks(struct ocfs2_super
*osb
);
381 static inline int ocfs2_highest_compat_lock_level(int level
);
382 static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res
*lockres
,
384 static int ocfs2_downconvert_lock(struct ocfs2_super
*osb
,
385 struct ocfs2_lock_res
*lockres
,
388 unsigned int generation
);
389 static int ocfs2_prepare_cancel_convert(struct ocfs2_super
*osb
,
390 struct ocfs2_lock_res
*lockres
);
391 static int ocfs2_cancel_convert(struct ocfs2_super
*osb
,
392 struct ocfs2_lock_res
*lockres
);
395 static void ocfs2_build_lock_name(enum ocfs2_lock_type type
,
402 BUG_ON(type
>= OCFS2_NUM_LOCK_TYPES
);
404 len
= snprintf(name
, OCFS2_LOCK_ID_MAX_LEN
, "%c%s%016llx%08x",
405 ocfs2_lock_type_char(type
), OCFS2_LOCK_ID_PAD
,
406 (long long)blkno
, generation
);
408 BUG_ON(len
!= (OCFS2_LOCK_ID_MAX_LEN
- 1));
410 mlog(0, "built lock resource with name: %s\n", name
);
413 static DEFINE_SPINLOCK(ocfs2_dlm_tracking_lock
);
415 static void ocfs2_add_lockres_tracking(struct ocfs2_lock_res
*res
,
416 struct ocfs2_dlm_debug
*dlm_debug
)
418 mlog(0, "Add tracking for lockres %s\n", res
->l_name
);
420 spin_lock(&ocfs2_dlm_tracking_lock
);
421 list_add(&res
->l_debug_list
, &dlm_debug
->d_lockres_tracking
);
422 spin_unlock(&ocfs2_dlm_tracking_lock
);
425 static void ocfs2_remove_lockres_tracking(struct ocfs2_lock_res
*res
)
427 spin_lock(&ocfs2_dlm_tracking_lock
);
428 if (!list_empty(&res
->l_debug_list
))
429 list_del_init(&res
->l_debug_list
);
430 spin_unlock(&ocfs2_dlm_tracking_lock
);
433 #ifdef CONFIG_OCFS2_FS_STATS
434 static void ocfs2_init_lock_stats(struct ocfs2_lock_res
*res
)
436 res
->l_lock_refresh
= 0;
437 memset(&res
->l_lock_prmode
, 0, sizeof(struct ocfs2_lock_stats
));
438 memset(&res
->l_lock_exmode
, 0, sizeof(struct ocfs2_lock_stats
));
441 static void ocfs2_update_lock_stats(struct ocfs2_lock_res
*res
, int level
,
442 struct ocfs2_mask_waiter
*mw
, int ret
)
446 struct ocfs2_lock_stats
*stats
;
448 if (level
== LKM_PRMODE
)
449 stats
= &res
->l_lock_prmode
;
450 else if (level
== LKM_EXMODE
)
451 stats
= &res
->l_lock_exmode
;
455 kt
= ktime_sub(ktime_get(), mw
->mw_lock_start
);
456 usec
= ktime_to_us(kt
);
459 stats
->ls_total
+= ktime_to_ns(kt
);
461 if (unlikely(stats
->ls_gets
== 0)) {
463 stats
->ls_total
= ktime_to_ns(kt
);
466 if (stats
->ls_max
< usec
)
467 stats
->ls_max
= usec
;
473 static inline void ocfs2_track_lock_refresh(struct ocfs2_lock_res
*lockres
)
475 lockres
->l_lock_refresh
++;
478 static inline void ocfs2_init_start_time(struct ocfs2_mask_waiter
*mw
)
480 mw
->mw_lock_start
= ktime_get();
483 static inline void ocfs2_init_lock_stats(struct ocfs2_lock_res
*res
)
486 static inline void ocfs2_update_lock_stats(struct ocfs2_lock_res
*res
,
487 int level
, struct ocfs2_mask_waiter
*mw
, int ret
)
490 static inline void ocfs2_track_lock_refresh(struct ocfs2_lock_res
*lockres
)
493 static inline void ocfs2_init_start_time(struct ocfs2_mask_waiter
*mw
)
498 static void ocfs2_lock_res_init_common(struct ocfs2_super
*osb
,
499 struct ocfs2_lock_res
*res
,
500 enum ocfs2_lock_type type
,
501 struct ocfs2_lock_res_ops
*ops
,
508 res
->l_level
= DLM_LOCK_IV
;
509 res
->l_requested
= DLM_LOCK_IV
;
510 res
->l_blocking
= DLM_LOCK_IV
;
511 res
->l_action
= OCFS2_AST_INVALID
;
512 res
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
514 res
->l_flags
= OCFS2_LOCK_INITIALIZED
;
516 ocfs2_add_lockres_tracking(res
, osb
->osb_dlm_debug
);
518 ocfs2_init_lock_stats(res
);
519 #ifdef CONFIG_DEBUG_LOCK_ALLOC
520 if (type
!= OCFS2_LOCK_TYPE_OPEN
)
521 lockdep_init_map(&res
->l_lockdep_map
, ocfs2_lock_type_strings
[type
],
522 &lockdep_keys
[type
], 0);
524 res
->l_lockdep_map
.key
= NULL
;
528 void ocfs2_lock_res_init_once(struct ocfs2_lock_res
*res
)
530 /* This also clears out the lock status block */
531 memset(res
, 0, sizeof(struct ocfs2_lock_res
));
532 spin_lock_init(&res
->l_lock
);
533 init_waitqueue_head(&res
->l_event
);
534 INIT_LIST_HEAD(&res
->l_blocked_list
);
535 INIT_LIST_HEAD(&res
->l_mask_waiters
);
536 INIT_LIST_HEAD(&res
->l_holders
);
539 void ocfs2_inode_lock_res_init(struct ocfs2_lock_res
*res
,
540 enum ocfs2_lock_type type
,
541 unsigned int generation
,
544 struct ocfs2_lock_res_ops
*ops
;
547 case OCFS2_LOCK_TYPE_RW
:
548 ops
= &ocfs2_inode_rw_lops
;
550 case OCFS2_LOCK_TYPE_META
:
551 ops
= &ocfs2_inode_inode_lops
;
553 case OCFS2_LOCK_TYPE_OPEN
:
554 ops
= &ocfs2_inode_open_lops
;
557 mlog_bug_on_msg(1, "type: %d\n", type
);
558 ops
= NULL
; /* thanks, gcc */
562 ocfs2_build_lock_name(type
, OCFS2_I(inode
)->ip_blkno
,
563 generation
, res
->l_name
);
564 ocfs2_lock_res_init_common(OCFS2_SB(inode
->i_sb
), res
, type
, ops
, inode
);
567 static struct ocfs2_super
*ocfs2_get_inode_osb(struct ocfs2_lock_res
*lockres
)
569 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
571 return OCFS2_SB(inode
->i_sb
);
574 static struct ocfs2_super
*ocfs2_get_qinfo_osb(struct ocfs2_lock_res
*lockres
)
576 struct ocfs2_mem_dqinfo
*info
= lockres
->l_priv
;
578 return OCFS2_SB(info
->dqi_gi
.dqi_sb
);
581 static struct ocfs2_super
*ocfs2_get_file_osb(struct ocfs2_lock_res
*lockres
)
583 struct ocfs2_file_private
*fp
= lockres
->l_priv
;
585 return OCFS2_SB(fp
->fp_file
->f_mapping
->host
->i_sb
);
588 static __u64
ocfs2_get_dentry_lock_ino(struct ocfs2_lock_res
*lockres
)
590 __be64 inode_blkno_be
;
592 memcpy(&inode_blkno_be
, &lockres
->l_name
[OCFS2_DENTRY_LOCK_INO_START
],
595 return be64_to_cpu(inode_blkno_be
);
598 static struct ocfs2_super
*ocfs2_get_dentry_osb(struct ocfs2_lock_res
*lockres
)
600 struct ocfs2_dentry_lock
*dl
= lockres
->l_priv
;
602 return OCFS2_SB(dl
->dl_inode
->i_sb
);
605 void ocfs2_dentry_lock_res_init(struct ocfs2_dentry_lock
*dl
,
606 u64 parent
, struct inode
*inode
)
609 u64 inode_blkno
= OCFS2_I(inode
)->ip_blkno
;
610 __be64 inode_blkno_be
= cpu_to_be64(inode_blkno
);
611 struct ocfs2_lock_res
*lockres
= &dl
->dl_lockres
;
613 ocfs2_lock_res_init_once(lockres
);
616 * Unfortunately, the standard lock naming scheme won't work
617 * here because we have two 16 byte values to use. Instead,
618 * we'll stuff the inode number as a binary value. We still
619 * want error prints to show something without garbling the
620 * display, so drop a null byte in there before the inode
621 * number. A future version of OCFS2 will likely use all
622 * binary lock names. The stringified names have been a
623 * tremendous aid in debugging, but now that the debugfs
624 * interface exists, we can mangle things there if need be.
626 * NOTE: We also drop the standard "pad" value (the total lock
627 * name size stays the same though - the last part is all
628 * zeros due to the memset in ocfs2_lock_res_init_once()
630 len
= snprintf(lockres
->l_name
, OCFS2_DENTRY_LOCK_INO_START
,
632 ocfs2_lock_type_char(OCFS2_LOCK_TYPE_DENTRY
),
635 BUG_ON(len
!= (OCFS2_DENTRY_LOCK_INO_START
- 1));
637 memcpy(&lockres
->l_name
[OCFS2_DENTRY_LOCK_INO_START
], &inode_blkno_be
,
640 ocfs2_lock_res_init_common(OCFS2_SB(inode
->i_sb
), lockres
,
641 OCFS2_LOCK_TYPE_DENTRY
, &ocfs2_dentry_lops
,
645 static void ocfs2_super_lock_res_init(struct ocfs2_lock_res
*res
,
646 struct ocfs2_super
*osb
)
648 /* Superblock lockres doesn't come from a slab so we call init
649 * once on it manually. */
650 ocfs2_lock_res_init_once(res
);
651 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_SUPER
, OCFS2_SUPER_BLOCK_BLKNO
,
653 ocfs2_lock_res_init_common(osb
, res
, OCFS2_LOCK_TYPE_SUPER
,
654 &ocfs2_super_lops
, osb
);
657 static void ocfs2_rename_lock_res_init(struct ocfs2_lock_res
*res
,
658 struct ocfs2_super
*osb
)
660 /* Rename lockres doesn't come from a slab so we call init
661 * once on it manually. */
662 ocfs2_lock_res_init_once(res
);
663 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_RENAME
, 0, 0, res
->l_name
);
664 ocfs2_lock_res_init_common(osb
, res
, OCFS2_LOCK_TYPE_RENAME
,
665 &ocfs2_rename_lops
, osb
);
668 static void ocfs2_nfs_sync_lock_res_init(struct ocfs2_lock_res
*res
,
669 struct ocfs2_super
*osb
)
671 /* nfs_sync lockres doesn't come from a slab so we call init
672 * once on it manually. */
673 ocfs2_lock_res_init_once(res
);
674 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_NFS_SYNC
, 0, 0, res
->l_name
);
675 ocfs2_lock_res_init_common(osb
, res
, OCFS2_LOCK_TYPE_NFS_SYNC
,
676 &ocfs2_nfs_sync_lops
, osb
);
679 static void ocfs2_orphan_scan_lock_res_init(struct ocfs2_lock_res
*res
,
680 struct ocfs2_super
*osb
)
682 ocfs2_lock_res_init_once(res
);
683 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_ORPHAN_SCAN
, 0, 0, res
->l_name
);
684 ocfs2_lock_res_init_common(osb
, res
, OCFS2_LOCK_TYPE_ORPHAN_SCAN
,
685 &ocfs2_orphan_scan_lops
, osb
);
688 void ocfs2_file_lock_res_init(struct ocfs2_lock_res
*lockres
,
689 struct ocfs2_file_private
*fp
)
691 struct inode
*inode
= fp
->fp_file
->f_mapping
->host
;
692 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
694 ocfs2_lock_res_init_once(lockres
);
695 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_FLOCK
, oi
->ip_blkno
,
696 inode
->i_generation
, lockres
->l_name
);
697 ocfs2_lock_res_init_common(OCFS2_SB(inode
->i_sb
), lockres
,
698 OCFS2_LOCK_TYPE_FLOCK
, &ocfs2_flock_lops
,
700 lockres
->l_flags
|= OCFS2_LOCK_NOCACHE
;
703 void ocfs2_qinfo_lock_res_init(struct ocfs2_lock_res
*lockres
,
704 struct ocfs2_mem_dqinfo
*info
)
706 ocfs2_lock_res_init_once(lockres
);
707 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_QINFO
, info
->dqi_gi
.dqi_type
,
709 ocfs2_lock_res_init_common(OCFS2_SB(info
->dqi_gi
.dqi_sb
), lockres
,
710 OCFS2_LOCK_TYPE_QINFO
, &ocfs2_qinfo_lops
,
714 void ocfs2_refcount_lock_res_init(struct ocfs2_lock_res
*lockres
,
715 struct ocfs2_super
*osb
, u64 ref_blkno
,
716 unsigned int generation
)
718 ocfs2_lock_res_init_once(lockres
);
719 ocfs2_build_lock_name(OCFS2_LOCK_TYPE_REFCOUNT
, ref_blkno
,
720 generation
, lockres
->l_name
);
721 ocfs2_lock_res_init_common(osb
, lockres
, OCFS2_LOCK_TYPE_REFCOUNT
,
722 &ocfs2_refcount_block_lops
, osb
);
725 void ocfs2_lock_res_free(struct ocfs2_lock_res
*res
)
727 if (!(res
->l_flags
& OCFS2_LOCK_INITIALIZED
))
730 ocfs2_remove_lockres_tracking(res
);
732 mlog_bug_on_msg(!list_empty(&res
->l_blocked_list
),
733 "Lockres %s is on the blocked list\n",
735 mlog_bug_on_msg(!list_empty(&res
->l_mask_waiters
),
736 "Lockres %s has mask waiters pending\n",
738 mlog_bug_on_msg(spin_is_locked(&res
->l_lock
),
739 "Lockres %s is locked\n",
741 mlog_bug_on_msg(res
->l_ro_holders
,
742 "Lockres %s has %u ro holders\n",
743 res
->l_name
, res
->l_ro_holders
);
744 mlog_bug_on_msg(res
->l_ex_holders
,
745 "Lockres %s has %u ex holders\n",
746 res
->l_name
, res
->l_ex_holders
);
748 /* Need to clear out the lock status block for the dlm */
749 memset(&res
->l_lksb
, 0, sizeof(res
->l_lksb
));
755 * Keep a list of processes who have interest in a lockres.
756 * Note: this is now only uesed for check recursive cluster locking.
758 static inline void ocfs2_add_holder(struct ocfs2_lock_res
*lockres
,
759 struct ocfs2_lock_holder
*oh
)
761 INIT_LIST_HEAD(&oh
->oh_list
);
762 oh
->oh_owner_pid
= get_pid(task_pid(current
));
764 spin_lock(&lockres
->l_lock
);
765 list_add_tail(&oh
->oh_list
, &lockres
->l_holders
);
766 spin_unlock(&lockres
->l_lock
);
769 static inline void ocfs2_remove_holder(struct ocfs2_lock_res
*lockres
,
770 struct ocfs2_lock_holder
*oh
)
772 spin_lock(&lockres
->l_lock
);
773 list_del(&oh
->oh_list
);
774 spin_unlock(&lockres
->l_lock
);
776 put_pid(oh
->oh_owner_pid
);
779 static inline int ocfs2_is_locked_by_me(struct ocfs2_lock_res
*lockres
)
781 struct ocfs2_lock_holder
*oh
;
784 /* look in the list of holders for one with the current task as owner */
785 spin_lock(&lockres
->l_lock
);
786 pid
= task_pid(current
);
787 list_for_each_entry(oh
, &lockres
->l_holders
, oh_list
) {
788 if (oh
->oh_owner_pid
== pid
) {
789 spin_unlock(&lockres
->l_lock
);
793 spin_unlock(&lockres
->l_lock
);
798 static inline void ocfs2_inc_holders(struct ocfs2_lock_res
*lockres
,
805 lockres
->l_ex_holders
++;
808 lockres
->l_ro_holders
++;
815 static inline void ocfs2_dec_holders(struct ocfs2_lock_res
*lockres
,
822 BUG_ON(!lockres
->l_ex_holders
);
823 lockres
->l_ex_holders
--;
826 BUG_ON(!lockres
->l_ro_holders
);
827 lockres
->l_ro_holders
--;
834 /* WARNING: This function lives in a world where the only three lock
835 * levels are EX, PR, and NL. It *will* have to be adjusted when more
836 * lock types are added. */
837 static inline int ocfs2_highest_compat_lock_level(int level
)
839 int new_level
= DLM_LOCK_EX
;
841 if (level
== DLM_LOCK_EX
)
842 new_level
= DLM_LOCK_NL
;
843 else if (level
== DLM_LOCK_PR
)
844 new_level
= DLM_LOCK_PR
;
848 static void lockres_set_flags(struct ocfs2_lock_res
*lockres
,
849 unsigned long newflags
)
851 struct ocfs2_mask_waiter
*mw
, *tmp
;
853 assert_spin_locked(&lockres
->l_lock
);
855 lockres
->l_flags
= newflags
;
857 list_for_each_entry_safe(mw
, tmp
, &lockres
->l_mask_waiters
, mw_item
) {
858 if ((lockres
->l_flags
& mw
->mw_mask
) != mw
->mw_goal
)
861 list_del_init(&mw
->mw_item
);
863 complete(&mw
->mw_complete
);
866 static void lockres_or_flags(struct ocfs2_lock_res
*lockres
, unsigned long or)
868 lockres_set_flags(lockres
, lockres
->l_flags
| or);
870 static void lockres_clear_flags(struct ocfs2_lock_res
*lockres
,
873 lockres_set_flags(lockres
, lockres
->l_flags
& ~clear
);
876 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res
*lockres
)
878 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
879 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
));
880 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
881 BUG_ON(lockres
->l_blocking
<= DLM_LOCK_NL
);
883 lockres
->l_level
= lockres
->l_requested
;
884 if (lockres
->l_level
<=
885 ocfs2_highest_compat_lock_level(lockres
->l_blocking
)) {
886 lockres
->l_blocking
= DLM_LOCK_NL
;
887 lockres_clear_flags(lockres
, OCFS2_LOCK_BLOCKED
);
889 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
892 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res
*lockres
)
894 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
895 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
));
897 /* Convert from RO to EX doesn't really need anything as our
898 * information is already up to data. Convert from NL to
899 * *anything* however should mark ourselves as needing an
901 if (lockres
->l_level
== DLM_LOCK_NL
&&
902 lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
903 lockres_or_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
905 lockres
->l_level
= lockres
->l_requested
;
908 * We set the OCFS2_LOCK_UPCONVERT_FINISHING flag before clearing
909 * the OCFS2_LOCK_BUSY flag to prevent the dc thread from
910 * downconverting the lock before the upconvert has fully completed.
911 * Do not prevent the dc thread from downconverting if NONBLOCK lock
912 * had already returned.
914 if (!(lockres
->l_flags
& OCFS2_LOCK_NONBLOCK_FINISHED
))
915 lockres_or_flags(lockres
, OCFS2_LOCK_UPCONVERT_FINISHING
);
917 lockres_clear_flags(lockres
, OCFS2_LOCK_NONBLOCK_FINISHED
);
919 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
922 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res
*lockres
)
924 BUG_ON((!(lockres
->l_flags
& OCFS2_LOCK_BUSY
)));
925 BUG_ON(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
);
927 if (lockres
->l_requested
> DLM_LOCK_NL
&&
928 !(lockres
->l_flags
& OCFS2_LOCK_LOCAL
) &&
929 lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
930 lockres_or_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
932 lockres
->l_level
= lockres
->l_requested
;
933 lockres_or_flags(lockres
, OCFS2_LOCK_ATTACHED
);
934 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
937 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res
*lockres
,
940 int needs_downconvert
= 0;
942 assert_spin_locked(&lockres
->l_lock
);
944 if (level
> lockres
->l_blocking
) {
945 /* only schedule a downconvert if we haven't already scheduled
946 * one that goes low enough to satisfy the level we're
947 * blocking. this also catches the case where we get
949 if (ocfs2_highest_compat_lock_level(level
) <
950 ocfs2_highest_compat_lock_level(lockres
->l_blocking
))
951 needs_downconvert
= 1;
953 lockres
->l_blocking
= level
;
956 mlog(ML_BASTS
, "lockres %s, block %d, level %d, l_block %d, dwn %d\n",
957 lockres
->l_name
, level
, lockres
->l_level
, lockres
->l_blocking
,
960 if (needs_downconvert
)
961 lockres_or_flags(lockres
, OCFS2_LOCK_BLOCKED
);
962 mlog(0, "needs_downconvert = %d\n", needs_downconvert
);
963 return needs_downconvert
;
967 * OCFS2_LOCK_PENDING and l_pending_gen.
969 * Why does OCFS2_LOCK_PENDING exist? To close a race between setting
970 * OCFS2_LOCK_BUSY and calling ocfs2_dlm_lock(). See ocfs2_unblock_lock()
971 * for more details on the race.
973 * OCFS2_LOCK_PENDING closes the race quite nicely. However, it introduces
974 * a race on itself. In o2dlm, we can get the ast before ocfs2_dlm_lock()
975 * returns. The ast clears OCFS2_LOCK_BUSY, and must therefore clear
976 * OCFS2_LOCK_PENDING at the same time. When ocfs2_dlm_lock() returns,
977 * the caller is going to try to clear PENDING again. If nothing else is
978 * happening, __lockres_clear_pending() sees PENDING is unset and does
981 * But what if another path (eg downconvert thread) has just started a
982 * new locking action? The other path has re-set PENDING. Our path
983 * cannot clear PENDING, because that will re-open the original race
989 * ocfs2_cluster_lock()
994 * ocfs2_locking_ast() ocfs2_downconvert_thread()
995 * clear PENDING ocfs2_unblock_lock()
998 * ocfs2_prepare_downconvert()
1008 * So as you can see, we now have a window where l_lock is not held,
1009 * PENDING is not set, and ocfs2_dlm_lock() has not been called.
1011 * The core problem is that ocfs2_cluster_lock() has cleared the PENDING
1012 * set by ocfs2_prepare_downconvert(). That wasn't nice.
1014 * To solve this we introduce l_pending_gen. A call to
1015 * lockres_clear_pending() will only do so when it is passed a generation
1016 * number that matches the lockres. lockres_set_pending() will return the
1017 * current generation number. When ocfs2_cluster_lock() goes to clear
1018 * PENDING, it passes the generation it got from set_pending(). In our
1019 * example above, the generation numbers will *not* match. Thus,
1020 * ocfs2_cluster_lock() will not clear the PENDING set by
1021 * ocfs2_prepare_downconvert().
1024 /* Unlocked version for ocfs2_locking_ast() */
1025 static void __lockres_clear_pending(struct ocfs2_lock_res
*lockres
,
1026 unsigned int generation
,
1027 struct ocfs2_super
*osb
)
1029 assert_spin_locked(&lockres
->l_lock
);
1032 * The ast and locking functions can race us here. The winner
1033 * will clear pending, the loser will not.
1035 if (!(lockres
->l_flags
& OCFS2_LOCK_PENDING
) ||
1036 (lockres
->l_pending_gen
!= generation
))
1039 lockres_clear_flags(lockres
, OCFS2_LOCK_PENDING
);
1040 lockres
->l_pending_gen
++;
1043 * The downconvert thread may have skipped us because we
1044 * were PENDING. Wake it up.
1046 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
1047 ocfs2_wake_downconvert_thread(osb
);
1050 /* Locked version for callers of ocfs2_dlm_lock() */
1051 static void lockres_clear_pending(struct ocfs2_lock_res
*lockres
,
1052 unsigned int generation
,
1053 struct ocfs2_super
*osb
)
1055 unsigned long flags
;
1057 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1058 __lockres_clear_pending(lockres
, generation
, osb
);
1059 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1062 static unsigned int lockres_set_pending(struct ocfs2_lock_res
*lockres
)
1064 assert_spin_locked(&lockres
->l_lock
);
1065 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
1067 lockres_or_flags(lockres
, OCFS2_LOCK_PENDING
);
1069 return lockres
->l_pending_gen
;
1072 static void ocfs2_blocking_ast(struct ocfs2_dlm_lksb
*lksb
, int level
)
1074 struct ocfs2_lock_res
*lockres
= ocfs2_lksb_to_lock_res(lksb
);
1075 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
1076 int needs_downconvert
;
1077 unsigned long flags
;
1079 BUG_ON(level
<= DLM_LOCK_NL
);
1081 mlog(ML_BASTS
, "BAST fired for lockres %s, blocking %d, level %d, "
1082 "type %s\n", lockres
->l_name
, level
, lockres
->l_level
,
1083 ocfs2_lock_type_string(lockres
->l_type
));
1086 * We can skip the bast for locks which don't enable caching -
1087 * they'll be dropped at the earliest possible time anyway.
1089 if (lockres
->l_flags
& OCFS2_LOCK_NOCACHE
)
1092 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1093 needs_downconvert
= ocfs2_generic_handle_bast(lockres
, level
);
1094 if (needs_downconvert
)
1095 ocfs2_schedule_blocked_lock(osb
, lockres
);
1096 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1098 wake_up(&lockres
->l_event
);
1100 ocfs2_wake_downconvert_thread(osb
);
1103 static void ocfs2_locking_ast(struct ocfs2_dlm_lksb
*lksb
)
1105 struct ocfs2_lock_res
*lockres
= ocfs2_lksb_to_lock_res(lksb
);
1106 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
1107 unsigned long flags
;
1110 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1112 status
= ocfs2_dlm_lock_status(&lockres
->l_lksb
);
1114 if (status
== -EAGAIN
) {
1115 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
1120 mlog(ML_ERROR
, "lockres %s: lksb status value of %d!\n",
1121 lockres
->l_name
, status
);
1122 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1126 mlog(ML_BASTS
, "AST fired for lockres %s, action %d, unlock %d, "
1127 "level %d => %d\n", lockres
->l_name
, lockres
->l_action
,
1128 lockres
->l_unlock_action
, lockres
->l_level
, lockres
->l_requested
);
1130 switch(lockres
->l_action
) {
1131 case OCFS2_AST_ATTACH
:
1132 ocfs2_generic_handle_attach_action(lockres
);
1133 lockres_clear_flags(lockres
, OCFS2_LOCK_LOCAL
);
1135 case OCFS2_AST_CONVERT
:
1136 ocfs2_generic_handle_convert_action(lockres
);
1138 case OCFS2_AST_DOWNCONVERT
:
1139 ocfs2_generic_handle_downconvert_action(lockres
);
1142 mlog(ML_ERROR
, "lockres %s: AST fired with invalid action: %u, "
1143 "flags 0x%lx, unlock: %u\n",
1144 lockres
->l_name
, lockres
->l_action
, lockres
->l_flags
,
1145 lockres
->l_unlock_action
);
1149 /* set it to something invalid so if we get called again we
1151 lockres
->l_action
= OCFS2_AST_INVALID
;
1153 /* Did we try to cancel this lock? Clear that state */
1154 if (lockres
->l_unlock_action
== OCFS2_UNLOCK_CANCEL_CONVERT
)
1155 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
1158 * We may have beaten the locking functions here. We certainly
1159 * know that dlm_lock() has been called :-)
1160 * Because we can't have two lock calls in flight at once, we
1161 * can use lockres->l_pending_gen.
1163 __lockres_clear_pending(lockres
, lockres
->l_pending_gen
, osb
);
1165 wake_up(&lockres
->l_event
);
1166 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1169 static void ocfs2_unlock_ast(struct ocfs2_dlm_lksb
*lksb
, int error
)
1171 struct ocfs2_lock_res
*lockres
= ocfs2_lksb_to_lock_res(lksb
);
1172 unsigned long flags
;
1174 mlog(ML_BASTS
, "UNLOCK AST fired for lockres %s, action = %d\n",
1175 lockres
->l_name
, lockres
->l_unlock_action
);
1177 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1179 mlog(ML_ERROR
, "Dlm passes error %d for lock %s, "
1180 "unlock_action %d\n", error
, lockres
->l_name
,
1181 lockres
->l_unlock_action
);
1182 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1186 switch(lockres
->l_unlock_action
) {
1187 case OCFS2_UNLOCK_CANCEL_CONVERT
:
1188 mlog(0, "Cancel convert success for %s\n", lockres
->l_name
);
1189 lockres
->l_action
= OCFS2_AST_INVALID
;
1190 /* Downconvert thread may have requeued this lock, we
1191 * need to wake it. */
1192 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
1193 ocfs2_wake_downconvert_thread(ocfs2_get_lockres_osb(lockres
));
1195 case OCFS2_UNLOCK_DROP_LOCK
:
1196 lockres
->l_level
= DLM_LOCK_IV
;
1202 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
1203 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
1204 wake_up(&lockres
->l_event
);
1205 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1209 * This is the filesystem locking protocol. It provides the lock handling
1210 * hooks for the underlying DLM. It has a maximum version number.
1211 * The version number allows interoperability with systems running at
1212 * the same major number and an equal or smaller minor number.
1214 * Whenever the filesystem does new things with locks (adds or removes a
1215 * lock, orders them differently, does different things underneath a lock),
1216 * the version must be changed. The protocol is negotiated when joining
1217 * the dlm domain. A node may join the domain if its major version is
1218 * identical to all other nodes and its minor version is greater than
1219 * or equal to all other nodes. When its minor version is greater than
1220 * the other nodes, it will run at the minor version specified by the
1223 * If a locking change is made that will not be compatible with older
1224 * versions, the major number must be increased and the minor version set
1225 * to zero. If a change merely adds a behavior that can be disabled when
1226 * speaking to older versions, the minor version must be increased. If a
1227 * change adds a fully backwards compatible change (eg, LVB changes that
1228 * are just ignored by older versions), the version does not need to be
1231 static struct ocfs2_locking_protocol lproto
= {
1233 .pv_major
= OCFS2_LOCKING_PROTOCOL_MAJOR
,
1234 .pv_minor
= OCFS2_LOCKING_PROTOCOL_MINOR
,
1236 .lp_lock_ast
= ocfs2_locking_ast
,
1237 .lp_blocking_ast
= ocfs2_blocking_ast
,
1238 .lp_unlock_ast
= ocfs2_unlock_ast
,
1241 void ocfs2_set_locking_protocol(void)
1243 ocfs2_stack_glue_set_max_proto_version(&lproto
.lp_max_version
);
1246 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res
*lockres
,
1249 unsigned long flags
;
1251 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1252 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
1253 lockres_clear_flags(lockres
, OCFS2_LOCK_UPCONVERT_FINISHING
);
1255 lockres
->l_action
= OCFS2_AST_INVALID
;
1257 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
1258 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1260 wake_up(&lockres
->l_event
);
1263 /* Note: If we detect another process working on the lock (i.e.,
1264 * OCFS2_LOCK_BUSY), we'll bail out returning 0. It's up to the caller
1265 * to do the right thing in that case.
1267 static int ocfs2_lock_create(struct ocfs2_super
*osb
,
1268 struct ocfs2_lock_res
*lockres
,
1273 unsigned long flags
;
1276 mlog(0, "lock %s, level = %d, flags = %u\n", lockres
->l_name
, level
,
1279 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1280 if ((lockres
->l_flags
& OCFS2_LOCK_ATTACHED
) ||
1281 (lockres
->l_flags
& OCFS2_LOCK_BUSY
)) {
1282 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1286 lockres
->l_action
= OCFS2_AST_ATTACH
;
1287 lockres
->l_requested
= level
;
1288 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1289 gen
= lockres_set_pending(lockres
);
1290 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1292 ret
= ocfs2_dlm_lock(osb
->cconn
,
1297 OCFS2_LOCK_ID_MAX_LEN
- 1);
1298 lockres_clear_pending(lockres
, gen
, osb
);
1300 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
1301 ocfs2_recover_from_dlm_error(lockres
, 1);
1304 mlog(0, "lock %s, return from ocfs2_dlm_lock\n", lockres
->l_name
);
1310 static inline int ocfs2_check_wait_flag(struct ocfs2_lock_res
*lockres
,
1313 unsigned long flags
;
1316 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1317 ret
= lockres
->l_flags
& flag
;
1318 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1323 static inline void ocfs2_wait_on_busy_lock(struct ocfs2_lock_res
*lockres
)
1326 wait_event(lockres
->l_event
,
1327 !ocfs2_check_wait_flag(lockres
, OCFS2_LOCK_BUSY
));
1330 static inline void ocfs2_wait_on_refreshing_lock(struct ocfs2_lock_res
*lockres
)
1333 wait_event(lockres
->l_event
,
1334 !ocfs2_check_wait_flag(lockres
, OCFS2_LOCK_REFRESHING
));
1337 /* predict what lock level we'll be dropping down to on behalf
1338 * of another node, and return true if the currently wanted
1339 * level will be compatible with it. */
1340 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res
*lockres
,
1343 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
1345 return wanted
<= ocfs2_highest_compat_lock_level(lockres
->l_blocking
);
1348 static void ocfs2_init_mask_waiter(struct ocfs2_mask_waiter
*mw
)
1350 INIT_LIST_HEAD(&mw
->mw_item
);
1351 init_completion(&mw
->mw_complete
);
1352 ocfs2_init_start_time(mw
);
1355 static int ocfs2_wait_for_mask(struct ocfs2_mask_waiter
*mw
)
1357 wait_for_completion(&mw
->mw_complete
);
1358 /* Re-arm the completion in case we want to wait on it again */
1359 reinit_completion(&mw
->mw_complete
);
1360 return mw
->mw_status
;
1363 static void lockres_add_mask_waiter(struct ocfs2_lock_res
*lockres
,
1364 struct ocfs2_mask_waiter
*mw
,
1368 BUG_ON(!list_empty(&mw
->mw_item
));
1370 assert_spin_locked(&lockres
->l_lock
);
1372 list_add_tail(&mw
->mw_item
, &lockres
->l_mask_waiters
);
1377 /* returns 0 if the mw that was removed was already satisfied, -EBUSY
1378 * if the mask still hadn't reached its goal */
1379 static int __lockres_remove_mask_waiter(struct ocfs2_lock_res
*lockres
,
1380 struct ocfs2_mask_waiter
*mw
)
1384 assert_spin_locked(&lockres
->l_lock
);
1385 if (!list_empty(&mw
->mw_item
)) {
1386 if ((lockres
->l_flags
& mw
->mw_mask
) != mw
->mw_goal
)
1389 list_del_init(&mw
->mw_item
);
1390 init_completion(&mw
->mw_complete
);
1396 static int lockres_remove_mask_waiter(struct ocfs2_lock_res
*lockres
,
1397 struct ocfs2_mask_waiter
*mw
)
1399 unsigned long flags
;
1402 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1403 ret
= __lockres_remove_mask_waiter(lockres
, mw
);
1404 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1410 static int ocfs2_wait_for_mask_interruptible(struct ocfs2_mask_waiter
*mw
,
1411 struct ocfs2_lock_res
*lockres
)
1415 ret
= wait_for_completion_interruptible(&mw
->mw_complete
);
1417 lockres_remove_mask_waiter(lockres
, mw
);
1419 ret
= mw
->mw_status
;
1420 /* Re-arm the completion in case we want to wait on it again */
1421 reinit_completion(&mw
->mw_complete
);
1425 static int __ocfs2_cluster_lock(struct ocfs2_super
*osb
,
1426 struct ocfs2_lock_res
*lockres
,
1431 unsigned long caller_ip
)
1433 struct ocfs2_mask_waiter mw
;
1434 int wait
, catch_signals
= !(osb
->s_mount_opt
& OCFS2_MOUNT_NOINTR
);
1435 int ret
= 0; /* gcc doesn't realize wait = 1 guarantees ret is set */
1436 unsigned long flags
;
1438 int noqueue_attempted
= 0;
1442 if (!(lockres
->l_flags
& OCFS2_LOCK_INITIALIZED
)) {
1443 mlog_errno(-EINVAL
);
1447 ocfs2_init_mask_waiter(&mw
);
1449 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
)
1450 lkm_flags
|= DLM_LKF_VALBLK
;
1455 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1457 if (catch_signals
&& signal_pending(current
)) {
1462 mlog_bug_on_msg(lockres
->l_flags
& OCFS2_LOCK_FREEING
,
1463 "Cluster lock called on freeing lockres %s! flags "
1464 "0x%lx\n", lockres
->l_name
, lockres
->l_flags
);
1466 /* We only compare against the currently granted level
1467 * here. If the lock is blocked waiting on a downconvert,
1468 * we'll get caught below. */
1469 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
&&
1470 level
> lockres
->l_level
) {
1471 /* is someone sitting in dlm_lock? If so, wait on
1473 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1478 if (lockres
->l_flags
& OCFS2_LOCK_UPCONVERT_FINISHING
) {
1480 * We've upconverted. If the lock now has a level we can
1481 * work with, we take it. If, however, the lock is not at the
1482 * required level, we go thru the full cycle. One way this could
1483 * happen is if a process requesting an upconvert to PR is
1484 * closely followed by another requesting upconvert to an EX.
1485 * If the process requesting EX lands here, we want it to
1486 * continue attempting to upconvert and let the process
1487 * requesting PR take the lock.
1488 * If multiple processes request upconvert to PR, the first one
1489 * here will take the lock. The others will have to go thru the
1490 * OCFS2_LOCK_BLOCKED check to ensure that there is no pending
1491 * downconvert request.
1493 if (level
<= lockres
->l_level
)
1494 goto update_holders
;
1497 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
&&
1498 !ocfs2_may_continue_on_blocked_lock(lockres
, level
)) {
1499 /* is the lock is currently blocked on behalf of
1501 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BLOCKED
, 0);
1506 if (level
> lockres
->l_level
) {
1507 if (noqueue_attempted
> 0) {
1511 if (lkm_flags
& DLM_LKF_NOQUEUE
)
1512 noqueue_attempted
= 1;
1514 if (lockres
->l_action
!= OCFS2_AST_INVALID
)
1515 mlog(ML_ERROR
, "lockres %s has action %u pending\n",
1516 lockres
->l_name
, lockres
->l_action
);
1518 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
1519 lockres
->l_action
= OCFS2_AST_ATTACH
;
1520 lkm_flags
&= ~DLM_LKF_CONVERT
;
1522 lockres
->l_action
= OCFS2_AST_CONVERT
;
1523 lkm_flags
|= DLM_LKF_CONVERT
;
1526 lockres
->l_requested
= level
;
1527 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1528 gen
= lockres_set_pending(lockres
);
1529 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1531 BUG_ON(level
== DLM_LOCK_IV
);
1532 BUG_ON(level
== DLM_LOCK_NL
);
1534 mlog(ML_BASTS
, "lockres %s, convert from %d to %d\n",
1535 lockres
->l_name
, lockres
->l_level
, level
);
1537 /* call dlm_lock to upgrade lock now */
1538 ret
= ocfs2_dlm_lock(osb
->cconn
,
1543 OCFS2_LOCK_ID_MAX_LEN
- 1);
1544 lockres_clear_pending(lockres
, gen
, osb
);
1546 if (!(lkm_flags
& DLM_LKF_NOQUEUE
) ||
1548 ocfs2_log_dlm_error("ocfs2_dlm_lock",
1551 ocfs2_recover_from_dlm_error(lockres
, 1);
1556 mlog(0, "lock %s, successful return from ocfs2_dlm_lock\n",
1559 /* At this point we've gone inside the dlm and need to
1560 * complete our work regardless. */
1563 /* wait for busy to clear and carry on */
1568 /* Ok, if we get here then we're good to go. */
1569 ocfs2_inc_holders(lockres
, level
);
1573 lockres_clear_flags(lockres
, OCFS2_LOCK_UPCONVERT_FINISHING
);
1575 /* ocfs2_unblock_lock reques on seeing OCFS2_LOCK_UPCONVERT_FINISHING */
1576 kick_dc
= (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
);
1578 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1580 ocfs2_wake_downconvert_thread(osb
);
1583 * This is helping work around a lock inversion between the page lock
1584 * and dlm locks. One path holds the page lock while calling aops
1585 * which block acquiring dlm locks. The voting thread holds dlm
1586 * locks while acquiring page locks while down converting data locks.
1587 * This block is helping an aop path notice the inversion and back
1588 * off to unlock its page lock before trying the dlm lock again.
1590 if (wait
&& arg_flags
& OCFS2_LOCK_NONBLOCK
&&
1591 mw
.mw_mask
& (OCFS2_LOCK_BUSY
|OCFS2_LOCK_BLOCKED
)) {
1593 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1594 if (__lockres_remove_mask_waiter(lockres
, &mw
)) {
1596 lockres_or_flags(lockres
,
1597 OCFS2_LOCK_NONBLOCK_FINISHED
);
1598 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1601 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1606 ret
= ocfs2_wait_for_mask(&mw
);
1611 ocfs2_update_lock_stats(lockres
, level
, &mw
, ret
);
1613 #ifdef CONFIG_DEBUG_LOCK_ALLOC
1614 if (!ret
&& lockres
->l_lockdep_map
.key
!= NULL
) {
1615 if (level
== DLM_LOCK_PR
)
1616 rwsem_acquire_read(&lockres
->l_lockdep_map
, l_subclass
,
1617 !!(arg_flags
& OCFS2_META_LOCK_NOQUEUE
),
1620 rwsem_acquire(&lockres
->l_lockdep_map
, l_subclass
,
1621 !!(arg_flags
& OCFS2_META_LOCK_NOQUEUE
),
1628 static inline int ocfs2_cluster_lock(struct ocfs2_super
*osb
,
1629 struct ocfs2_lock_res
*lockres
,
1634 return __ocfs2_cluster_lock(osb
, lockres
, level
, lkm_flags
, arg_flags
,
1639 static void __ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
1640 struct ocfs2_lock_res
*lockres
,
1642 unsigned long caller_ip
)
1644 unsigned long flags
;
1646 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1647 ocfs2_dec_holders(lockres
, level
);
1648 ocfs2_downconvert_on_unlock(osb
, lockres
);
1649 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1650 #ifdef CONFIG_DEBUG_LOCK_ALLOC
1651 if (lockres
->l_lockdep_map
.key
!= NULL
)
1652 rwsem_release(&lockres
->l_lockdep_map
, 1, caller_ip
);
1656 static int ocfs2_create_new_lock(struct ocfs2_super
*osb
,
1657 struct ocfs2_lock_res
*lockres
,
1661 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1662 unsigned long flags
;
1663 u32 lkm_flags
= local
? DLM_LKF_LOCAL
: 0;
1665 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1666 BUG_ON(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
);
1667 lockres_or_flags(lockres
, OCFS2_LOCK_LOCAL
);
1668 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1670 return ocfs2_lock_create(osb
, lockres
, level
, lkm_flags
);
1673 /* Grants us an EX lock on the data and metadata resources, skipping
1674 * the normal cluster directory lookup. Use this ONLY on newly created
1675 * inodes which other nodes can't possibly see, and which haven't been
1676 * hashed in the inode hash yet. This can give us a good performance
1677 * increase as it'll skip the network broadcast normally associated
1678 * with creating a new lock resource. */
1679 int ocfs2_create_new_inode_locks(struct inode
*inode
)
1682 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1684 BUG_ON(!ocfs2_inode_is_new(inode
));
1686 mlog(0, "Inode %llu\n", (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1688 /* NOTE: That we don't increment any of the holder counts, nor
1689 * do we add anything to a journal handle. Since this is
1690 * supposed to be a new inode which the cluster doesn't know
1691 * about yet, there is no need to. As far as the LVB handling
1692 * is concerned, this is basically like acquiring an EX lock
1693 * on a resource which has an invalid one -- we'll set it
1694 * valid when we release the EX. */
1696 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_rw_lockres
, 1, 1);
1703 * We don't want to use DLM_LKF_LOCAL on a meta data lock as they
1704 * don't use a generation in their lock names.
1706 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_inode_lockres
, 1, 0);
1712 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_open_lockres
, 0, 0);
1720 int ocfs2_rw_lock(struct inode
*inode
, int write
)
1723 struct ocfs2_lock_res
*lockres
;
1724 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1726 mlog(0, "inode %llu take %s RW lock\n",
1727 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1728 write
? "EXMODE" : "PRMODE");
1730 if (ocfs2_mount_local(osb
))
1733 lockres
= &OCFS2_I(inode
)->ip_rw_lockres
;
1735 level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1737 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
, level
, 0,
1745 void ocfs2_rw_unlock(struct inode
*inode
, int write
)
1747 int level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1748 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_rw_lockres
;
1749 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1751 mlog(0, "inode %llu drop %s RW lock\n",
1752 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1753 write
? "EXMODE" : "PRMODE");
1755 if (!ocfs2_mount_local(osb
))
1756 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
, level
);
1760 * ocfs2_open_lock always get PR mode lock.
1762 int ocfs2_open_lock(struct inode
*inode
)
1765 struct ocfs2_lock_res
*lockres
;
1766 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1768 mlog(0, "inode %llu take PRMODE open lock\n",
1769 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1771 if (ocfs2_is_hard_readonly(osb
) || ocfs2_mount_local(osb
))
1774 lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1776 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
,
1785 int ocfs2_try_open_lock(struct inode
*inode
, int write
)
1787 int status
= 0, level
;
1788 struct ocfs2_lock_res
*lockres
;
1789 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1791 mlog(0, "inode %llu try to take %s open lock\n",
1792 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1793 write
? "EXMODE" : "PRMODE");
1795 if (ocfs2_is_hard_readonly(osb
)) {
1801 if (ocfs2_mount_local(osb
))
1804 lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1806 level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1809 * The file system may already holding a PRMODE/EXMODE open lock.
1810 * Since we pass DLM_LKF_NOQUEUE, the request won't block waiting on
1811 * other nodes and the -EAGAIN will indicate to the caller that
1812 * this inode is still in use.
1814 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
,
1815 level
, DLM_LKF_NOQUEUE
, 0);
1822 * ocfs2_open_unlock unlock PR and EX mode open locks.
1824 void ocfs2_open_unlock(struct inode
*inode
)
1826 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1827 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1829 mlog(0, "inode %llu drop open lock\n",
1830 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1832 if (ocfs2_mount_local(osb
))
1835 if(lockres
->l_ro_holders
)
1836 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
,
1838 if(lockres
->l_ex_holders
)
1839 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
,
1846 static int ocfs2_flock_handle_signal(struct ocfs2_lock_res
*lockres
,
1850 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
1851 unsigned long flags
;
1852 struct ocfs2_mask_waiter mw
;
1854 ocfs2_init_mask_waiter(&mw
);
1857 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1858 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
1859 ret
= ocfs2_prepare_cancel_convert(osb
, lockres
);
1861 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1862 ret
= ocfs2_cancel_convert(osb
, lockres
);
1869 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1870 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1872 ocfs2_wait_for_mask(&mw
);
1878 * We may still have gotten the lock, in which case there's no
1879 * point to restarting the syscall.
1881 if (lockres
->l_level
== level
)
1884 mlog(0, "Cancel returning %d. flags: 0x%lx, level: %d, act: %d\n", ret
,
1885 lockres
->l_flags
, lockres
->l_level
, lockres
->l_action
);
1887 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1894 * ocfs2_file_lock() and ocfs2_file_unlock() map to a single pair of
1895 * flock() calls. The locking approach this requires is sufficiently
1896 * different from all other cluster lock types that we implement a
1897 * separate path to the "low-level" dlm calls. In particular:
1899 * - No optimization of lock levels is done - we take at exactly
1900 * what's been requested.
1902 * - No lock caching is employed. We immediately downconvert to
1903 * no-lock at unlock time. This also means flock locks never go on
1904 * the blocking list).
1906 * - Since userspace can trivially deadlock itself with flock, we make
1907 * sure to allow cancellation of a misbehaving applications flock()
1910 * - Access to any flock lockres doesn't require concurrency, so we
1911 * can simplify the code by requiring the caller to guarantee
1912 * serialization of dlmglue flock calls.
1914 int ocfs2_file_lock(struct file
*file
, int ex
, int trylock
)
1916 int ret
, level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1917 unsigned int lkm_flags
= trylock
? DLM_LKF_NOQUEUE
: 0;
1918 unsigned long flags
;
1919 struct ocfs2_file_private
*fp
= file
->private_data
;
1920 struct ocfs2_lock_res
*lockres
= &fp
->fp_flock
;
1921 struct ocfs2_super
*osb
= OCFS2_SB(file
->f_mapping
->host
->i_sb
);
1922 struct ocfs2_mask_waiter mw
;
1924 ocfs2_init_mask_waiter(&mw
);
1926 if ((lockres
->l_flags
& OCFS2_LOCK_BUSY
) ||
1927 (lockres
->l_level
> DLM_LOCK_NL
)) {
1929 "File lock \"%s\" has busy or locked state: flags: 0x%lx, "
1930 "level: %u\n", lockres
->l_name
, lockres
->l_flags
,
1935 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1936 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
1937 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1938 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1941 * Get the lock at NLMODE to start - that way we
1942 * can cancel the upconvert request if need be.
1944 ret
= ocfs2_lock_create(osb
, lockres
, DLM_LOCK_NL
, 0);
1950 ret
= ocfs2_wait_for_mask(&mw
);
1955 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1958 lockres
->l_action
= OCFS2_AST_CONVERT
;
1959 lkm_flags
|= DLM_LKF_CONVERT
;
1960 lockres
->l_requested
= level
;
1961 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1963 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1964 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1966 ret
= ocfs2_dlm_lock(osb
->cconn
, level
, &lockres
->l_lksb
, lkm_flags
,
1967 lockres
->l_name
, OCFS2_LOCK_ID_MAX_LEN
- 1);
1969 if (!trylock
|| (ret
!= -EAGAIN
)) {
1970 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
1974 ocfs2_recover_from_dlm_error(lockres
, 1);
1975 lockres_remove_mask_waiter(lockres
, &mw
);
1979 ret
= ocfs2_wait_for_mask_interruptible(&mw
, lockres
);
1980 if (ret
== -ERESTARTSYS
) {
1982 * Userspace can cause deadlock itself with
1983 * flock(). Current behavior locally is to allow the
1984 * deadlock, but abort the system call if a signal is
1985 * received. We follow this example, otherwise a
1986 * poorly written program could sit in kernel until
1989 * Handling this is a bit more complicated for Ocfs2
1990 * though. We can't exit this function with an
1991 * outstanding lock request, so a cancel convert is
1992 * required. We intentionally overwrite 'ret' - if the
1993 * cancel fails and the lock was granted, it's easier
1994 * to just bubble success back up to the user.
1996 ret
= ocfs2_flock_handle_signal(lockres
, level
);
1997 } else if (!ret
&& (level
> lockres
->l_level
)) {
1998 /* Trylock failed asynchronously */
2005 mlog(0, "Lock: \"%s\" ex: %d, trylock: %d, returns: %d\n",
2006 lockres
->l_name
, ex
, trylock
, ret
);
2010 void ocfs2_file_unlock(struct file
*file
)
2014 unsigned long flags
;
2015 struct ocfs2_file_private
*fp
= file
->private_data
;
2016 struct ocfs2_lock_res
*lockres
= &fp
->fp_flock
;
2017 struct ocfs2_super
*osb
= OCFS2_SB(file
->f_mapping
->host
->i_sb
);
2018 struct ocfs2_mask_waiter mw
;
2020 ocfs2_init_mask_waiter(&mw
);
2022 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
))
2025 if (lockres
->l_level
== DLM_LOCK_NL
)
2028 mlog(0, "Unlock: \"%s\" flags: 0x%lx, level: %d, act: %d\n",
2029 lockres
->l_name
, lockres
->l_flags
, lockres
->l_level
,
2032 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2034 * Fake a blocking ast for the downconvert code.
2036 lockres_or_flags(lockres
, OCFS2_LOCK_BLOCKED
);
2037 lockres
->l_blocking
= DLM_LOCK_EX
;
2039 gen
= ocfs2_prepare_downconvert(lockres
, DLM_LOCK_NL
);
2040 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
2041 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2043 ret
= ocfs2_downconvert_lock(osb
, lockres
, DLM_LOCK_NL
, 0, gen
);
2049 ret
= ocfs2_wait_for_mask(&mw
);
2054 static void ocfs2_downconvert_on_unlock(struct ocfs2_super
*osb
,
2055 struct ocfs2_lock_res
*lockres
)
2059 /* If we know that another node is waiting on our lock, kick
2060 * the downconvert thread * pre-emptively when we reach a release
2062 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
) {
2063 switch(lockres
->l_blocking
) {
2065 if (!lockres
->l_ex_holders
&& !lockres
->l_ro_holders
)
2069 if (!lockres
->l_ex_holders
)
2078 ocfs2_wake_downconvert_thread(osb
);
2081 #define OCFS2_SEC_BITS 34
2082 #define OCFS2_SEC_SHIFT (64 - 34)
2083 #define OCFS2_NSEC_MASK ((1ULL << OCFS2_SEC_SHIFT) - 1)
2085 /* LVB only has room for 64 bits of time here so we pack it for
2087 static u64
ocfs2_pack_timespec(struct timespec
*spec
)
2090 u64 sec
= spec
->tv_sec
;
2091 u32 nsec
= spec
->tv_nsec
;
2093 res
= (sec
<< OCFS2_SEC_SHIFT
) | (nsec
& OCFS2_NSEC_MASK
);
2098 /* Call this with the lockres locked. I am reasonably sure we don't
2099 * need ip_lock in this function as anyone who would be changing those
2100 * values is supposed to be blocked in ocfs2_inode_lock right now. */
2101 static void __ocfs2_stuff_meta_lvb(struct inode
*inode
)
2103 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
2104 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
2105 struct ocfs2_meta_lvb
*lvb
;
2107 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2110 * Invalidate the LVB of a deleted inode - this way other
2111 * nodes are forced to go to disk and discover the new inode
2114 if (oi
->ip_flags
& OCFS2_INODE_DELETED
) {
2115 lvb
->lvb_version
= 0;
2119 lvb
->lvb_version
= OCFS2_LVB_VERSION
;
2120 lvb
->lvb_isize
= cpu_to_be64(i_size_read(inode
));
2121 lvb
->lvb_iclusters
= cpu_to_be32(oi
->ip_clusters
);
2122 lvb
->lvb_iuid
= cpu_to_be32(i_uid_read(inode
));
2123 lvb
->lvb_igid
= cpu_to_be32(i_gid_read(inode
));
2124 lvb
->lvb_imode
= cpu_to_be16(inode
->i_mode
);
2125 lvb
->lvb_inlink
= cpu_to_be16(inode
->i_nlink
);
2126 lvb
->lvb_iatime_packed
=
2127 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_atime
));
2128 lvb
->lvb_ictime_packed
=
2129 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_ctime
));
2130 lvb
->lvb_imtime_packed
=
2131 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_mtime
));
2132 lvb
->lvb_iattr
= cpu_to_be32(oi
->ip_attr
);
2133 lvb
->lvb_idynfeatures
= cpu_to_be16(oi
->ip_dyn_features
);
2134 lvb
->lvb_igeneration
= cpu_to_be32(inode
->i_generation
);
2137 mlog_meta_lvb(0, lockres
);
2140 static void ocfs2_unpack_timespec(struct timespec
*spec
,
2143 spec
->tv_sec
= packed_time
>> OCFS2_SEC_SHIFT
;
2144 spec
->tv_nsec
= packed_time
& OCFS2_NSEC_MASK
;
2147 static void ocfs2_refresh_inode_from_lvb(struct inode
*inode
)
2149 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
2150 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
2151 struct ocfs2_meta_lvb
*lvb
;
2153 mlog_meta_lvb(0, lockres
);
2155 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2157 /* We're safe here without the lockres lock... */
2158 spin_lock(&oi
->ip_lock
);
2159 oi
->ip_clusters
= be32_to_cpu(lvb
->lvb_iclusters
);
2160 i_size_write(inode
, be64_to_cpu(lvb
->lvb_isize
));
2162 oi
->ip_attr
= be32_to_cpu(lvb
->lvb_iattr
);
2163 oi
->ip_dyn_features
= be16_to_cpu(lvb
->lvb_idynfeatures
);
2164 ocfs2_set_inode_flags(inode
);
2166 /* fast-symlinks are a special case */
2167 if (S_ISLNK(inode
->i_mode
) && !oi
->ip_clusters
)
2168 inode
->i_blocks
= 0;
2170 inode
->i_blocks
= ocfs2_inode_sector_count(inode
);
2172 i_uid_write(inode
, be32_to_cpu(lvb
->lvb_iuid
));
2173 i_gid_write(inode
, be32_to_cpu(lvb
->lvb_igid
));
2174 inode
->i_mode
= be16_to_cpu(lvb
->lvb_imode
);
2175 set_nlink(inode
, be16_to_cpu(lvb
->lvb_inlink
));
2176 ocfs2_unpack_timespec(&inode
->i_atime
,
2177 be64_to_cpu(lvb
->lvb_iatime_packed
));
2178 ocfs2_unpack_timespec(&inode
->i_mtime
,
2179 be64_to_cpu(lvb
->lvb_imtime_packed
));
2180 ocfs2_unpack_timespec(&inode
->i_ctime
,
2181 be64_to_cpu(lvb
->lvb_ictime_packed
));
2182 spin_unlock(&oi
->ip_lock
);
2185 static inline int ocfs2_meta_lvb_is_trustable(struct inode
*inode
,
2186 struct ocfs2_lock_res
*lockres
)
2188 struct ocfs2_meta_lvb
*lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2190 if (ocfs2_dlm_lvb_valid(&lockres
->l_lksb
)
2191 && lvb
->lvb_version
== OCFS2_LVB_VERSION
2192 && be32_to_cpu(lvb
->lvb_igeneration
) == inode
->i_generation
)
2197 /* Determine whether a lock resource needs to be refreshed, and
2198 * arbitrate who gets to refresh it.
2200 * 0 means no refresh needed.
2202 * > 0 means you need to refresh this and you MUST call
2203 * ocfs2_complete_lock_res_refresh afterwards. */
2204 static int ocfs2_should_refresh_lock_res(struct ocfs2_lock_res
*lockres
)
2206 unsigned long flags
;
2210 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2211 if (!(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
)) {
2212 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2216 if (lockres
->l_flags
& OCFS2_LOCK_REFRESHING
) {
2217 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2219 ocfs2_wait_on_refreshing_lock(lockres
);
2223 /* Ok, I'll be the one to refresh this lock. */
2224 lockres_or_flags(lockres
, OCFS2_LOCK_REFRESHING
);
2225 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2229 mlog(0, "status %d\n", status
);
2233 /* If status is non zero, I'll mark it as not being in refresh
2234 * anymroe, but i won't clear the needs refresh flag. */
2235 static inline void ocfs2_complete_lock_res_refresh(struct ocfs2_lock_res
*lockres
,
2238 unsigned long flags
;
2240 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2241 lockres_clear_flags(lockres
, OCFS2_LOCK_REFRESHING
);
2243 lockres_clear_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
2244 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2246 wake_up(&lockres
->l_event
);
2249 /* may or may not return a bh if it went to disk. */
2250 static int ocfs2_inode_lock_update(struct inode
*inode
,
2251 struct buffer_head
**bh
)
2254 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
2255 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
2256 struct ocfs2_dinode
*fe
;
2257 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2259 if (ocfs2_mount_local(osb
))
2262 spin_lock(&oi
->ip_lock
);
2263 if (oi
->ip_flags
& OCFS2_INODE_DELETED
) {
2264 mlog(0, "Orphaned inode %llu was deleted while we "
2265 "were waiting on a lock. ip_flags = 0x%x\n",
2266 (unsigned long long)oi
->ip_blkno
, oi
->ip_flags
);
2267 spin_unlock(&oi
->ip_lock
);
2271 spin_unlock(&oi
->ip_lock
);
2273 if (!ocfs2_should_refresh_lock_res(lockres
))
2276 /* This will discard any caching information we might have had
2277 * for the inode metadata. */
2278 ocfs2_metadata_cache_purge(INODE_CACHE(inode
));
2280 ocfs2_extent_map_trunc(inode
, 0);
2282 if (ocfs2_meta_lvb_is_trustable(inode
, lockres
)) {
2283 mlog(0, "Trusting LVB on inode %llu\n",
2284 (unsigned long long)oi
->ip_blkno
);
2285 ocfs2_refresh_inode_from_lvb(inode
);
2287 /* Boo, we have to go to disk. */
2288 /* read bh, cast, ocfs2_refresh_inode */
2289 status
= ocfs2_read_inode_block(inode
, bh
);
2294 fe
= (struct ocfs2_dinode
*) (*bh
)->b_data
;
2296 /* This is a good chance to make sure we're not
2297 * locking an invalid object. ocfs2_read_inode_block()
2298 * already checked that the inode block is sane.
2300 * We bug on a stale inode here because we checked
2301 * above whether it was wiped from disk. The wiping
2302 * node provides a guarantee that we receive that
2303 * message and can mark the inode before dropping any
2304 * locks associated with it. */
2305 mlog_bug_on_msg(inode
->i_generation
!=
2306 le32_to_cpu(fe
->i_generation
),
2307 "Invalid dinode %llu disk generation: %u "
2308 "inode->i_generation: %u\n",
2309 (unsigned long long)oi
->ip_blkno
,
2310 le32_to_cpu(fe
->i_generation
),
2311 inode
->i_generation
);
2312 mlog_bug_on_msg(le64_to_cpu(fe
->i_dtime
) ||
2313 !(fe
->i_flags
& cpu_to_le32(OCFS2_VALID_FL
)),
2314 "Stale dinode %llu dtime: %llu flags: 0x%x\n",
2315 (unsigned long long)oi
->ip_blkno
,
2316 (unsigned long long)le64_to_cpu(fe
->i_dtime
),
2317 le32_to_cpu(fe
->i_flags
));
2319 ocfs2_refresh_inode(inode
, fe
);
2320 ocfs2_track_lock_refresh(lockres
);
2325 ocfs2_complete_lock_res_refresh(lockres
, status
);
2330 static int ocfs2_assign_bh(struct inode
*inode
,
2331 struct buffer_head
**ret_bh
,
2332 struct buffer_head
*passed_bh
)
2337 /* Ok, the update went to disk for us, use the
2339 *ret_bh
= passed_bh
;
2345 status
= ocfs2_read_inode_block(inode
, ret_bh
);
2353 * returns < 0 error if the callback will never be called, otherwise
2354 * the result of the lock will be communicated via the callback.
2356 int ocfs2_inode_lock_full_nested(struct inode
*inode
,
2357 struct buffer_head
**ret_bh
,
2362 int status
, level
, acquired
;
2364 struct ocfs2_lock_res
*lockres
= NULL
;
2365 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2366 struct buffer_head
*local_bh
= NULL
;
2368 mlog(0, "inode %llu, take %s META lock\n",
2369 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
2370 ex
? "EXMODE" : "PRMODE");
2374 /* We'll allow faking a readonly metadata lock for
2376 if (ocfs2_is_hard_readonly(osb
)) {
2382 if ((arg_flags
& OCFS2_META_LOCK_GETBH
) ||
2383 ocfs2_mount_local(osb
))
2386 if (!(arg_flags
& OCFS2_META_LOCK_RECOVERY
))
2387 ocfs2_wait_for_recovery(osb
);
2389 lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2390 level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2392 if (arg_flags
& OCFS2_META_LOCK_NOQUEUE
)
2393 dlm_flags
|= DLM_LKF_NOQUEUE
;
2395 status
= __ocfs2_cluster_lock(osb
, lockres
, level
, dlm_flags
,
2396 arg_flags
, subclass
, _RET_IP_
);
2398 if (status
!= -EAGAIN
)
2403 /* Notify the error cleanup path to drop the cluster lock. */
2406 /* We wait twice because a node may have died while we were in
2407 * the lower dlm layers. The second time though, we've
2408 * committed to owning this lock so we don't allow signals to
2409 * abort the operation. */
2410 if (!(arg_flags
& OCFS2_META_LOCK_RECOVERY
))
2411 ocfs2_wait_for_recovery(osb
);
2415 * We only see this flag if we're being called from
2416 * ocfs2_read_locked_inode(). It means we're locking an inode
2417 * which hasn't been populated yet, so clear the refresh flag
2418 * and let the caller handle it.
2420 if (inode
->i_state
& I_NEW
) {
2423 ocfs2_complete_lock_res_refresh(lockres
, 0);
2427 /* This is fun. The caller may want a bh back, or it may
2428 * not. ocfs2_inode_lock_update definitely wants one in, but
2429 * may or may not read one, depending on what's in the
2430 * LVB. The result of all of this is that we've *only* gone to
2431 * disk if we have to, so the complexity is worthwhile. */
2432 status
= ocfs2_inode_lock_update(inode
, &local_bh
);
2434 if (status
!= -ENOENT
)
2440 status
= ocfs2_assign_bh(inode
, ret_bh
, local_bh
);
2449 if (ret_bh
&& (*ret_bh
)) {
2454 ocfs2_inode_unlock(inode
, ex
);
2464 * This is working around a lock inversion between tasks acquiring DLM
2465 * locks while holding a page lock and the downconvert thread which
2466 * blocks dlm lock acquiry while acquiring page locks.
2468 * ** These _with_page variantes are only intended to be called from aop
2469 * methods that hold page locks and return a very specific *positive* error
2470 * code that aop methods pass up to the VFS -- test for errors with != 0. **
2472 * The DLM is called such that it returns -EAGAIN if it would have
2473 * blocked waiting for the downconvert thread. In that case we unlock
2474 * our page so the downconvert thread can make progress. Once we've
2475 * done this we have to return AOP_TRUNCATED_PAGE so the aop method
2476 * that called us can bubble that back up into the VFS who will then
2477 * immediately retry the aop call.
2479 int ocfs2_inode_lock_with_page(struct inode
*inode
,
2480 struct buffer_head
**ret_bh
,
2486 ret
= ocfs2_inode_lock_full(inode
, ret_bh
, ex
, OCFS2_LOCK_NONBLOCK
);
2487 if (ret
== -EAGAIN
) {
2490 * If we can't get inode lock immediately, we should not return
2491 * directly here, since this will lead to a softlockup problem.
2492 * The method is to get a blocking lock and immediately unlock
2493 * before returning, this can avoid CPU resource waste due to
2494 * lots of retries, and benefits fairness in getting lock.
2496 if (ocfs2_inode_lock(inode
, ret_bh
, ex
) == 0)
2497 ocfs2_inode_unlock(inode
, ex
);
2498 ret
= AOP_TRUNCATED_PAGE
;
2504 int ocfs2_inode_lock_atime(struct inode
*inode
,
2505 struct vfsmount
*vfsmnt
,
2510 ret
= ocfs2_inode_lock(inode
, NULL
, 0);
2517 * If we should update atime, we will get EX lock,
2518 * otherwise we just get PR lock.
2520 if (ocfs2_should_update_atime(inode
, vfsmnt
)) {
2521 struct buffer_head
*bh
= NULL
;
2523 ocfs2_inode_unlock(inode
, 0);
2524 ret
= ocfs2_inode_lock(inode
, &bh
, 1);
2530 if (ocfs2_should_update_atime(inode
, vfsmnt
))
2531 ocfs2_update_inode_atime(inode
, bh
);
2540 void ocfs2_inode_unlock(struct inode
*inode
,
2543 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2544 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2545 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2547 mlog(0, "inode %llu drop %s META lock\n",
2548 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
2549 ex
? "EXMODE" : "PRMODE");
2551 if (!ocfs2_is_hard_readonly(OCFS2_SB(inode
->i_sb
)) &&
2552 !ocfs2_mount_local(osb
))
2553 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
, level
);
2557 * This _tracker variantes are introduced to deal with the recursive cluster
2558 * locking issue. The idea is to keep track of a lock holder on the stack of
2559 * the current process. If there's a lock holder on the stack, we know the
2560 * task context is already protected by cluster locking. Currently, they're
2561 * used in some VFS entry routines.
2563 * return < 0 on error, return == 0 if there's no lock holder on the stack
2564 * before this call, return == 1 if this call would be a recursive locking.
2566 int ocfs2_inode_lock_tracker(struct inode
*inode
,
2567 struct buffer_head
**ret_bh
,
2569 struct ocfs2_lock_holder
*oh
)
2572 int arg_flags
= 0, has_locked
;
2573 struct ocfs2_lock_res
*lockres
;
2575 lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2576 has_locked
= ocfs2_is_locked_by_me(lockres
);
2577 /* Just get buffer head if the cluster lock has been taken */
2579 arg_flags
= OCFS2_META_LOCK_GETBH
;
2581 if (likely(!has_locked
|| ret_bh
)) {
2582 status
= ocfs2_inode_lock_full(inode
, ret_bh
, ex
, arg_flags
);
2584 if (status
!= -ENOENT
)
2590 ocfs2_add_holder(lockres
, oh
);
2595 void ocfs2_inode_unlock_tracker(struct inode
*inode
,
2597 struct ocfs2_lock_holder
*oh
,
2600 struct ocfs2_lock_res
*lockres
;
2602 lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2603 /* had_lock means that the currect process already takes the cluster
2604 * lock previously. If had_lock is 1, we have nothing to do here, and
2605 * it will get unlocked where we got the lock.
2608 ocfs2_remove_holder(lockres
, oh
);
2609 ocfs2_inode_unlock(inode
, ex
);
2613 int ocfs2_orphan_scan_lock(struct ocfs2_super
*osb
, u32
*seqno
)
2615 struct ocfs2_lock_res
*lockres
;
2616 struct ocfs2_orphan_scan_lvb
*lvb
;
2619 if (ocfs2_is_hard_readonly(osb
))
2622 if (ocfs2_mount_local(osb
))
2625 lockres
= &osb
->osb_orphan_scan
.os_lockres
;
2626 status
= ocfs2_cluster_lock(osb
, lockres
, DLM_LOCK_EX
, 0, 0);
2630 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2631 if (ocfs2_dlm_lvb_valid(&lockres
->l_lksb
) &&
2632 lvb
->lvb_version
== OCFS2_ORPHAN_LVB_VERSION
)
2633 *seqno
= be32_to_cpu(lvb
->lvb_os_seqno
);
2635 *seqno
= osb
->osb_orphan_scan
.os_seqno
+ 1;
2640 void ocfs2_orphan_scan_unlock(struct ocfs2_super
*osb
, u32 seqno
)
2642 struct ocfs2_lock_res
*lockres
;
2643 struct ocfs2_orphan_scan_lvb
*lvb
;
2645 if (!ocfs2_is_hard_readonly(osb
) && !ocfs2_mount_local(osb
)) {
2646 lockres
= &osb
->osb_orphan_scan
.os_lockres
;
2647 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2648 lvb
->lvb_version
= OCFS2_ORPHAN_LVB_VERSION
;
2649 lvb
->lvb_os_seqno
= cpu_to_be32(seqno
);
2650 ocfs2_cluster_unlock(osb
, lockres
, DLM_LOCK_EX
);
2654 int ocfs2_super_lock(struct ocfs2_super
*osb
,
2658 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2659 struct ocfs2_lock_res
*lockres
= &osb
->osb_super_lockres
;
2661 if (ocfs2_is_hard_readonly(osb
))
2664 if (ocfs2_mount_local(osb
))
2667 status
= ocfs2_cluster_lock(osb
, lockres
, level
, 0, 0);
2673 /* The super block lock path is really in the best position to
2674 * know when resources covered by the lock need to be
2675 * refreshed, so we do it here. Of course, making sense of
2676 * everything is up to the caller :) */
2677 status
= ocfs2_should_refresh_lock_res(lockres
);
2679 status
= ocfs2_refresh_slot_info(osb
);
2681 ocfs2_complete_lock_res_refresh(lockres
, status
);
2684 ocfs2_cluster_unlock(osb
, lockres
, level
);
2687 ocfs2_track_lock_refresh(lockres
);
2693 void ocfs2_super_unlock(struct ocfs2_super
*osb
,
2696 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2697 struct ocfs2_lock_res
*lockres
= &osb
->osb_super_lockres
;
2699 if (!ocfs2_mount_local(osb
))
2700 ocfs2_cluster_unlock(osb
, lockres
, level
);
2703 int ocfs2_rename_lock(struct ocfs2_super
*osb
)
2706 struct ocfs2_lock_res
*lockres
= &osb
->osb_rename_lockres
;
2708 if (ocfs2_is_hard_readonly(osb
))
2711 if (ocfs2_mount_local(osb
))
2714 status
= ocfs2_cluster_lock(osb
, lockres
, DLM_LOCK_EX
, 0, 0);
2721 void ocfs2_rename_unlock(struct ocfs2_super
*osb
)
2723 struct ocfs2_lock_res
*lockres
= &osb
->osb_rename_lockres
;
2725 if (!ocfs2_mount_local(osb
))
2726 ocfs2_cluster_unlock(osb
, lockres
, DLM_LOCK_EX
);
2729 int ocfs2_nfs_sync_lock(struct ocfs2_super
*osb
, int ex
)
2732 struct ocfs2_lock_res
*lockres
= &osb
->osb_nfs_sync_lockres
;
2734 if (ocfs2_is_hard_readonly(osb
))
2737 if (ocfs2_mount_local(osb
))
2740 status
= ocfs2_cluster_lock(osb
, lockres
, ex
? LKM_EXMODE
: LKM_PRMODE
,
2743 mlog(ML_ERROR
, "lock on nfs sync lock failed %d\n", status
);
2748 void ocfs2_nfs_sync_unlock(struct ocfs2_super
*osb
, int ex
)
2750 struct ocfs2_lock_res
*lockres
= &osb
->osb_nfs_sync_lockres
;
2752 if (!ocfs2_mount_local(osb
))
2753 ocfs2_cluster_unlock(osb
, lockres
,
2754 ex
? LKM_EXMODE
: LKM_PRMODE
);
2757 int ocfs2_dentry_lock(struct dentry
*dentry
, int ex
)
2760 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2761 struct ocfs2_dentry_lock
*dl
= dentry
->d_fsdata
;
2762 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
2766 if (ocfs2_is_hard_readonly(osb
)) {
2772 if (ocfs2_mount_local(osb
))
2775 ret
= ocfs2_cluster_lock(osb
, &dl
->dl_lockres
, level
, 0, 0);
2782 void ocfs2_dentry_unlock(struct dentry
*dentry
, int ex
)
2784 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2785 struct ocfs2_dentry_lock
*dl
= dentry
->d_fsdata
;
2786 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
2788 if (!ocfs2_is_hard_readonly(osb
) && !ocfs2_mount_local(osb
))
2789 ocfs2_cluster_unlock(osb
, &dl
->dl_lockres
, level
);
2792 /* Reference counting of the dlm debug structure. We want this because
2793 * open references on the debug inodes can live on after a mount, so
2794 * we can't rely on the ocfs2_super to always exist. */
2795 static void ocfs2_dlm_debug_free(struct kref
*kref
)
2797 struct ocfs2_dlm_debug
*dlm_debug
;
2799 dlm_debug
= container_of(kref
, struct ocfs2_dlm_debug
, d_refcnt
);
2804 void ocfs2_put_dlm_debug(struct ocfs2_dlm_debug
*dlm_debug
)
2807 kref_put(&dlm_debug
->d_refcnt
, ocfs2_dlm_debug_free
);
2810 static void ocfs2_get_dlm_debug(struct ocfs2_dlm_debug
*debug
)
2812 kref_get(&debug
->d_refcnt
);
2815 struct ocfs2_dlm_debug
*ocfs2_new_dlm_debug(void)
2817 struct ocfs2_dlm_debug
*dlm_debug
;
2819 dlm_debug
= kmalloc(sizeof(struct ocfs2_dlm_debug
), GFP_KERNEL
);
2821 mlog_errno(-ENOMEM
);
2825 kref_init(&dlm_debug
->d_refcnt
);
2826 INIT_LIST_HEAD(&dlm_debug
->d_lockres_tracking
);
2827 dlm_debug
->d_locking_state
= NULL
;
2832 /* Access to this is arbitrated for us via seq_file->sem. */
2833 struct ocfs2_dlm_seq_priv
{
2834 struct ocfs2_dlm_debug
*p_dlm_debug
;
2835 struct ocfs2_lock_res p_iter_res
;
2836 struct ocfs2_lock_res p_tmp_res
;
2839 static struct ocfs2_lock_res
*ocfs2_dlm_next_res(struct ocfs2_lock_res
*start
,
2840 struct ocfs2_dlm_seq_priv
*priv
)
2842 struct ocfs2_lock_res
*iter
, *ret
= NULL
;
2843 struct ocfs2_dlm_debug
*dlm_debug
= priv
->p_dlm_debug
;
2845 assert_spin_locked(&ocfs2_dlm_tracking_lock
);
2847 list_for_each_entry(iter
, &start
->l_debug_list
, l_debug_list
) {
2848 /* discover the head of the list */
2849 if (&iter
->l_debug_list
== &dlm_debug
->d_lockres_tracking
) {
2850 mlog(0, "End of list found, %p\n", ret
);
2854 /* We track our "dummy" iteration lockres' by a NULL
2856 if (iter
->l_ops
!= NULL
) {
2865 static void *ocfs2_dlm_seq_start(struct seq_file
*m
, loff_t
*pos
)
2867 struct ocfs2_dlm_seq_priv
*priv
= m
->private;
2868 struct ocfs2_lock_res
*iter
;
2870 spin_lock(&ocfs2_dlm_tracking_lock
);
2871 iter
= ocfs2_dlm_next_res(&priv
->p_iter_res
, priv
);
2873 /* Since lockres' have the lifetime of their container
2874 * (which can be inodes, ocfs2_supers, etc) we want to
2875 * copy this out to a temporary lockres while still
2876 * under the spinlock. Obviously after this we can't
2877 * trust any pointers on the copy returned, but that's
2878 * ok as the information we want isn't typically held
2880 priv
->p_tmp_res
= *iter
;
2881 iter
= &priv
->p_tmp_res
;
2883 spin_unlock(&ocfs2_dlm_tracking_lock
);
2888 static void ocfs2_dlm_seq_stop(struct seq_file
*m
, void *v
)
2892 static void *ocfs2_dlm_seq_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2894 struct ocfs2_dlm_seq_priv
*priv
= m
->private;
2895 struct ocfs2_lock_res
*iter
= v
;
2896 struct ocfs2_lock_res
*dummy
= &priv
->p_iter_res
;
2898 spin_lock(&ocfs2_dlm_tracking_lock
);
2899 iter
= ocfs2_dlm_next_res(iter
, priv
);
2900 list_del_init(&dummy
->l_debug_list
);
2902 list_add(&dummy
->l_debug_list
, &iter
->l_debug_list
);
2903 priv
->p_tmp_res
= *iter
;
2904 iter
= &priv
->p_tmp_res
;
2906 spin_unlock(&ocfs2_dlm_tracking_lock
);
2912 * Version is used by debugfs.ocfs2 to determine the format being used
2915 * - Lock stats printed
2917 * - Max time in lock stats is in usecs (instead of nsecs)
2919 #define OCFS2_DLM_DEBUG_STR_VERSION 3
2920 static int ocfs2_dlm_seq_show(struct seq_file
*m
, void *v
)
2924 struct ocfs2_lock_res
*lockres
= v
;
2929 seq_printf(m
, "0x%x\t", OCFS2_DLM_DEBUG_STR_VERSION
);
2931 if (lockres
->l_type
== OCFS2_LOCK_TYPE_DENTRY
)
2932 seq_printf(m
, "%.*s%08x\t", OCFS2_DENTRY_LOCK_INO_START
- 1,
2934 (unsigned int)ocfs2_get_dentry_lock_ino(lockres
));
2936 seq_printf(m
, "%.*s\t", OCFS2_LOCK_ID_MAX_LEN
, lockres
->l_name
);
2938 seq_printf(m
, "%d\t"
2949 lockres
->l_unlock_action
,
2950 lockres
->l_ro_holders
,
2951 lockres
->l_ex_holders
,
2952 lockres
->l_requested
,
2953 lockres
->l_blocking
);
2955 /* Dump the raw LVB */
2956 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2957 for(i
= 0; i
< DLM_LVB_LEN
; i
++)
2958 seq_printf(m
, "0x%x\t", lvb
[i
]);
2960 #ifdef CONFIG_OCFS2_FS_STATS
2961 # define lock_num_prmode(_l) ((_l)->l_lock_prmode.ls_gets)
2962 # define lock_num_exmode(_l) ((_l)->l_lock_exmode.ls_gets)
2963 # define lock_num_prmode_failed(_l) ((_l)->l_lock_prmode.ls_fail)
2964 # define lock_num_exmode_failed(_l) ((_l)->l_lock_exmode.ls_fail)
2965 # define lock_total_prmode(_l) ((_l)->l_lock_prmode.ls_total)
2966 # define lock_total_exmode(_l) ((_l)->l_lock_exmode.ls_total)
2967 # define lock_max_prmode(_l) ((_l)->l_lock_prmode.ls_max)
2968 # define lock_max_exmode(_l) ((_l)->l_lock_exmode.ls_max)
2969 # define lock_refresh(_l) ((_l)->l_lock_refresh)
2971 # define lock_num_prmode(_l) (0)
2972 # define lock_num_exmode(_l) (0)
2973 # define lock_num_prmode_failed(_l) (0)
2974 # define lock_num_exmode_failed(_l) (0)
2975 # define lock_total_prmode(_l) (0ULL)
2976 # define lock_total_exmode(_l) (0ULL)
2977 # define lock_max_prmode(_l) (0)
2978 # define lock_max_exmode(_l) (0)
2979 # define lock_refresh(_l) (0)
2981 /* The following seq_print was added in version 2 of this output */
2982 seq_printf(m
, "%u\t"
2991 lock_num_prmode(lockres
),
2992 lock_num_exmode(lockres
),
2993 lock_num_prmode_failed(lockres
),
2994 lock_num_exmode_failed(lockres
),
2995 lock_total_prmode(lockres
),
2996 lock_total_exmode(lockres
),
2997 lock_max_prmode(lockres
),
2998 lock_max_exmode(lockres
),
2999 lock_refresh(lockres
));
3002 seq_printf(m
, "\n");
3006 static const struct seq_operations ocfs2_dlm_seq_ops
= {
3007 .start
= ocfs2_dlm_seq_start
,
3008 .stop
= ocfs2_dlm_seq_stop
,
3009 .next
= ocfs2_dlm_seq_next
,
3010 .show
= ocfs2_dlm_seq_show
,
3013 static int ocfs2_dlm_debug_release(struct inode
*inode
, struct file
*file
)
3015 struct seq_file
*seq
= file
->private_data
;
3016 struct ocfs2_dlm_seq_priv
*priv
= seq
->private;
3017 struct ocfs2_lock_res
*res
= &priv
->p_iter_res
;
3019 ocfs2_remove_lockres_tracking(res
);
3020 ocfs2_put_dlm_debug(priv
->p_dlm_debug
);
3021 return seq_release_private(inode
, file
);
3024 static int ocfs2_dlm_debug_open(struct inode
*inode
, struct file
*file
)
3026 struct ocfs2_dlm_seq_priv
*priv
;
3027 struct ocfs2_super
*osb
;
3029 priv
= __seq_open_private(file
, &ocfs2_dlm_seq_ops
, sizeof(*priv
));
3031 mlog_errno(-ENOMEM
);
3035 osb
= inode
->i_private
;
3036 ocfs2_get_dlm_debug(osb
->osb_dlm_debug
);
3037 priv
->p_dlm_debug
= osb
->osb_dlm_debug
;
3038 INIT_LIST_HEAD(&priv
->p_iter_res
.l_debug_list
);
3040 ocfs2_add_lockres_tracking(&priv
->p_iter_res
,
3046 static const struct file_operations ocfs2_dlm_debug_fops
= {
3047 .open
= ocfs2_dlm_debug_open
,
3048 .release
= ocfs2_dlm_debug_release
,
3050 .llseek
= seq_lseek
,
3053 static int ocfs2_dlm_init_debug(struct ocfs2_super
*osb
)
3056 struct ocfs2_dlm_debug
*dlm_debug
= osb
->osb_dlm_debug
;
3058 dlm_debug
->d_locking_state
= debugfs_create_file("locking_state",
3060 osb
->osb_debug_root
,
3062 &ocfs2_dlm_debug_fops
);
3063 if (!dlm_debug
->d_locking_state
) {
3066 "Unable to create locking state debugfs file.\n");
3070 ocfs2_get_dlm_debug(dlm_debug
);
3075 static void ocfs2_dlm_shutdown_debug(struct ocfs2_super
*osb
)
3077 struct ocfs2_dlm_debug
*dlm_debug
= osb
->osb_dlm_debug
;
3080 debugfs_remove(dlm_debug
->d_locking_state
);
3081 ocfs2_put_dlm_debug(dlm_debug
);
3085 int ocfs2_dlm_init(struct ocfs2_super
*osb
)
3088 struct ocfs2_cluster_connection
*conn
= NULL
;
3090 if (ocfs2_mount_local(osb
)) {
3095 status
= ocfs2_dlm_init_debug(osb
);
3101 /* launch downconvert thread */
3102 osb
->dc_task
= kthread_run(ocfs2_downconvert_thread
, osb
, "ocfs2dc-%s",
3104 if (IS_ERR(osb
->dc_task
)) {
3105 status
= PTR_ERR(osb
->dc_task
);
3106 osb
->dc_task
= NULL
;
3111 /* for now, uuid == domain */
3112 status
= ocfs2_cluster_connect(osb
->osb_cluster_stack
,
3113 osb
->osb_cluster_name
,
3114 strlen(osb
->osb_cluster_name
),
3116 strlen(osb
->uuid_str
),
3117 &lproto
, ocfs2_do_node_down
, osb
,
3124 status
= ocfs2_cluster_this_node(conn
, &osb
->node_num
);
3128 "could not find this host's node number\n");
3129 ocfs2_cluster_disconnect(conn
, 0);
3134 ocfs2_super_lock_res_init(&osb
->osb_super_lockres
, osb
);
3135 ocfs2_rename_lock_res_init(&osb
->osb_rename_lockres
, osb
);
3136 ocfs2_nfs_sync_lock_res_init(&osb
->osb_nfs_sync_lockres
, osb
);
3137 ocfs2_orphan_scan_lock_res_init(&osb
->osb_orphan_scan
.os_lockres
, osb
);
3142 ocfs2_dlm_shutdown_debug(osb
);
3144 kthread_stop(osb
->dc_task
);
3150 void ocfs2_dlm_shutdown(struct ocfs2_super
*osb
,
3153 ocfs2_drop_osb_locks(osb
);
3156 * Now that we have dropped all locks and ocfs2_dismount_volume()
3157 * has disabled recovery, the DLM won't be talking to us. It's
3158 * safe to tear things down before disconnecting the cluster.
3162 kthread_stop(osb
->dc_task
);
3163 osb
->dc_task
= NULL
;
3166 ocfs2_lock_res_free(&osb
->osb_super_lockres
);
3167 ocfs2_lock_res_free(&osb
->osb_rename_lockres
);
3168 ocfs2_lock_res_free(&osb
->osb_nfs_sync_lockres
);
3169 ocfs2_lock_res_free(&osb
->osb_orphan_scan
.os_lockres
);
3171 ocfs2_cluster_disconnect(osb
->cconn
, hangup_pending
);
3174 ocfs2_dlm_shutdown_debug(osb
);
3177 static int ocfs2_drop_lock(struct ocfs2_super
*osb
,
3178 struct ocfs2_lock_res
*lockres
)
3181 unsigned long flags
;
3184 /* We didn't get anywhere near actually using this lockres. */
3185 if (!(lockres
->l_flags
& OCFS2_LOCK_INITIALIZED
))
3188 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
)
3189 lkm_flags
|= DLM_LKF_VALBLK
;
3191 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3193 mlog_bug_on_msg(!(lockres
->l_flags
& OCFS2_LOCK_FREEING
),
3194 "lockres %s, flags 0x%lx\n",
3195 lockres
->l_name
, lockres
->l_flags
);
3197 while (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
3198 mlog(0, "waiting on busy lock \"%s\": flags = %lx, action = "
3199 "%u, unlock_action = %u\n",
3200 lockres
->l_name
, lockres
->l_flags
, lockres
->l_action
,
3201 lockres
->l_unlock_action
);
3203 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3205 /* XXX: Today we just wait on any busy
3206 * locks... Perhaps we need to cancel converts in the
3208 ocfs2_wait_on_busy_lock(lockres
);
3210 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3213 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
) {
3214 if (lockres
->l_flags
& OCFS2_LOCK_ATTACHED
&&
3215 lockres
->l_level
== DLM_LOCK_EX
&&
3216 !(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
))
3217 lockres
->l_ops
->set_lvb(lockres
);
3220 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
)
3221 mlog(ML_ERROR
, "destroying busy lock: \"%s\"\n",
3223 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
3224 mlog(0, "destroying blocked lock: \"%s\"\n", lockres
->l_name
);
3226 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
3227 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3231 lockres_clear_flags(lockres
, OCFS2_LOCK_ATTACHED
);
3233 /* make sure we never get here while waiting for an ast to
3235 BUG_ON(lockres
->l_action
!= OCFS2_AST_INVALID
);
3237 /* is this necessary? */
3238 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
3239 lockres
->l_unlock_action
= OCFS2_UNLOCK_DROP_LOCK
;
3240 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3242 mlog(0, "lock %s\n", lockres
->l_name
);
3244 ret
= ocfs2_dlm_unlock(osb
->cconn
, &lockres
->l_lksb
, lkm_flags
);
3246 ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret
, lockres
);
3247 mlog(ML_ERROR
, "lockres flags: %lu\n", lockres
->l_flags
);
3248 ocfs2_dlm_dump_lksb(&lockres
->l_lksb
);
3251 mlog(0, "lock %s, successful return from ocfs2_dlm_unlock\n",
3254 ocfs2_wait_on_busy_lock(lockres
);
3259 static void ocfs2_process_blocked_lock(struct ocfs2_super
*osb
,
3260 struct ocfs2_lock_res
*lockres
);
3262 /* Mark the lockres as being dropped. It will no longer be
3263 * queued if blocking, but we still may have to wait on it
3264 * being dequeued from the downconvert thread before we can consider
3267 * You can *not* attempt to call cluster_lock on this lockres anymore. */
3268 void ocfs2_mark_lockres_freeing(struct ocfs2_super
*osb
,
3269 struct ocfs2_lock_res
*lockres
)
3272 struct ocfs2_mask_waiter mw
;
3273 unsigned long flags
, flags2
;
3275 ocfs2_init_mask_waiter(&mw
);
3277 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3278 lockres
->l_flags
|= OCFS2_LOCK_FREEING
;
3279 if (lockres
->l_flags
& OCFS2_LOCK_QUEUED
&& current
== osb
->dc_task
) {
3281 * We know the downconvert is queued but not in progress
3282 * because we are the downconvert thread and processing
3283 * different lock. So we can just remove the lock from the
3284 * queue. This is not only an optimization but also a way
3285 * to avoid the following deadlock:
3286 * ocfs2_dentry_post_unlock()
3287 * ocfs2_dentry_lock_put()
3288 * ocfs2_drop_dentry_lock()
3290 * ocfs2_evict_inode()
3291 * ocfs2_clear_inode()
3292 * ocfs2_mark_lockres_freeing()
3293 * ... blocks waiting for OCFS2_LOCK_QUEUED
3294 * since we are the downconvert thread which
3295 * should clear the flag.
3297 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3298 spin_lock_irqsave(&osb
->dc_task_lock
, flags2
);
3299 list_del_init(&lockres
->l_blocked_list
);
3300 osb
->blocked_lock_count
--;
3301 spin_unlock_irqrestore(&osb
->dc_task_lock
, flags2
);
3303 * Warn if we recurse into another post_unlock call. Strictly
3304 * speaking it isn't a problem but we need to be careful if
3305 * that happens (stack overflow, deadlocks, ...) so warn if
3306 * ocfs2 grows a path for which this can happen.
3308 WARN_ON_ONCE(lockres
->l_ops
->post_unlock
);
3309 /* Since the lock is freeing we don't do much in the fn below */
3310 ocfs2_process_blocked_lock(osb
, lockres
);
3313 while (lockres
->l_flags
& OCFS2_LOCK_QUEUED
) {
3314 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_QUEUED
, 0);
3315 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3317 mlog(0, "Waiting on lockres %s\n", lockres
->l_name
);
3319 status
= ocfs2_wait_for_mask(&mw
);
3323 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3325 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3328 void ocfs2_simple_drop_lockres(struct ocfs2_super
*osb
,
3329 struct ocfs2_lock_res
*lockres
)
3333 ocfs2_mark_lockres_freeing(osb
, lockres
);
3334 ret
= ocfs2_drop_lock(osb
, lockres
);
3339 static void ocfs2_drop_osb_locks(struct ocfs2_super
*osb
)
3341 ocfs2_simple_drop_lockres(osb
, &osb
->osb_super_lockres
);
3342 ocfs2_simple_drop_lockres(osb
, &osb
->osb_rename_lockres
);
3343 ocfs2_simple_drop_lockres(osb
, &osb
->osb_nfs_sync_lockres
);
3344 ocfs2_simple_drop_lockres(osb
, &osb
->osb_orphan_scan
.os_lockres
);
3347 int ocfs2_drop_inode_locks(struct inode
*inode
)
3351 /* No need to call ocfs2_mark_lockres_freeing here -
3352 * ocfs2_clear_inode has done it for us. */
3354 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
3355 &OCFS2_I(inode
)->ip_open_lockres
);
3361 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
3362 &OCFS2_I(inode
)->ip_inode_lockres
);
3365 if (err
< 0 && !status
)
3368 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
3369 &OCFS2_I(inode
)->ip_rw_lockres
);
3372 if (err
< 0 && !status
)
3378 static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res
*lockres
,
3381 assert_spin_locked(&lockres
->l_lock
);
3383 BUG_ON(lockres
->l_blocking
<= DLM_LOCK_NL
);
3385 if (lockres
->l_level
<= new_level
) {
3386 mlog(ML_ERROR
, "lockres %s, lvl %d <= %d, blcklst %d, mask %d, "
3387 "type %d, flags 0x%lx, hold %d %d, act %d %d, req %d, "
3388 "block %d, pgen %d\n", lockres
->l_name
, lockres
->l_level
,
3389 new_level
, list_empty(&lockres
->l_blocked_list
),
3390 list_empty(&lockres
->l_mask_waiters
), lockres
->l_type
,
3391 lockres
->l_flags
, lockres
->l_ro_holders
,
3392 lockres
->l_ex_holders
, lockres
->l_action
,
3393 lockres
->l_unlock_action
, lockres
->l_requested
,
3394 lockres
->l_blocking
, lockres
->l_pending_gen
);
3398 mlog(ML_BASTS
, "lockres %s, level %d => %d, blocking %d\n",
3399 lockres
->l_name
, lockres
->l_level
, new_level
, lockres
->l_blocking
);
3401 lockres
->l_action
= OCFS2_AST_DOWNCONVERT
;
3402 lockres
->l_requested
= new_level
;
3403 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
3404 return lockres_set_pending(lockres
);
3407 static int ocfs2_downconvert_lock(struct ocfs2_super
*osb
,
3408 struct ocfs2_lock_res
*lockres
,
3411 unsigned int generation
)
3414 u32 dlm_flags
= DLM_LKF_CONVERT
;
3416 mlog(ML_BASTS
, "lockres %s, level %d => %d\n", lockres
->l_name
,
3417 lockres
->l_level
, new_level
);
3420 * On DLM_LKF_VALBLK, fsdlm behaves differently with o2cb. It always
3421 * expects DLM_LKF_VALBLK being set if the LKB has LVB, so that
3422 * we can recover correctly from node failure. Otherwise, we may get
3423 * invalid LVB in LKB, but without DLM_SBF_VALNOTVALIDÂ being set.
3425 if (ocfs2_userspace_stack(osb
) &&
3426 lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
)
3430 dlm_flags
|= DLM_LKF_VALBLK
;
3432 ret
= ocfs2_dlm_lock(osb
->cconn
,
3437 OCFS2_LOCK_ID_MAX_LEN
- 1);
3438 lockres_clear_pending(lockres
, generation
, osb
);
3440 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
3441 ocfs2_recover_from_dlm_error(lockres
, 1);
3450 /* returns 1 when the caller should unlock and call ocfs2_dlm_unlock */
3451 static int ocfs2_prepare_cancel_convert(struct ocfs2_super
*osb
,
3452 struct ocfs2_lock_res
*lockres
)
3454 assert_spin_locked(&lockres
->l_lock
);
3456 if (lockres
->l_unlock_action
== OCFS2_UNLOCK_CANCEL_CONVERT
) {
3457 /* If we're already trying to cancel a lock conversion
3458 * then just drop the spinlock and allow the caller to
3459 * requeue this lock. */
3460 mlog(ML_BASTS
, "lockres %s, skip convert\n", lockres
->l_name
);
3464 /* were we in a convert when we got the bast fire? */
3465 BUG_ON(lockres
->l_action
!= OCFS2_AST_CONVERT
&&
3466 lockres
->l_action
!= OCFS2_AST_DOWNCONVERT
);
3467 /* set things up for the unlockast to know to just
3468 * clear out the ast_action and unset busy, etc. */
3469 lockres
->l_unlock_action
= OCFS2_UNLOCK_CANCEL_CONVERT
;
3471 mlog_bug_on_msg(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
),
3472 "lock %s, invalid flags: 0x%lx\n",
3473 lockres
->l_name
, lockres
->l_flags
);
3475 mlog(ML_BASTS
, "lockres %s\n", lockres
->l_name
);
3480 static int ocfs2_cancel_convert(struct ocfs2_super
*osb
,
3481 struct ocfs2_lock_res
*lockres
)
3485 ret
= ocfs2_dlm_unlock(osb
->cconn
, &lockres
->l_lksb
,
3488 ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret
, lockres
);
3489 ocfs2_recover_from_dlm_error(lockres
, 0);
3492 mlog(ML_BASTS
, "lockres %s\n", lockres
->l_name
);
3497 static int ocfs2_unblock_lock(struct ocfs2_super
*osb
,
3498 struct ocfs2_lock_res
*lockres
,
3499 struct ocfs2_unblock_ctl
*ctl
)
3501 unsigned long flags
;
3509 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3513 * Is it still blocking? If not, we have no more work to do.
3515 if (!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)) {
3516 BUG_ON(lockres
->l_blocking
!= DLM_LOCK_NL
);
3517 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3522 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
3524 * This is a *big* race. The OCFS2_LOCK_PENDING flag
3525 * exists entirely for one reason - another thread has set
3526 * OCFS2_LOCK_BUSY, but has *NOT* yet called dlm_lock().
3528 * If we do ocfs2_cancel_convert() before the other thread
3529 * calls dlm_lock(), our cancel will do nothing. We will
3530 * get no ast, and we will have no way of knowing the
3531 * cancel failed. Meanwhile, the other thread will call
3532 * into dlm_lock() and wait...forever.
3534 * Why forever? Because another node has asked for the
3535 * lock first; that's why we're here in unblock_lock().
3537 * The solution is OCFS2_LOCK_PENDING. When PENDING is
3538 * set, we just requeue the unblock. Only when the other
3539 * thread has called dlm_lock() and cleared PENDING will
3540 * we then cancel their request.
3542 * All callers of dlm_lock() must set OCFS2_DLM_PENDING
3543 * at the same time they set OCFS2_DLM_BUSY. They must
3544 * clear OCFS2_DLM_PENDING after dlm_lock() returns.
3546 if (lockres
->l_flags
& OCFS2_LOCK_PENDING
) {
3547 mlog(ML_BASTS
, "lockres %s, ReQ: Pending\n",
3553 ret
= ocfs2_prepare_cancel_convert(osb
, lockres
);
3554 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3556 ret
= ocfs2_cancel_convert(osb
, lockres
);
3564 * This prevents livelocks. OCFS2_LOCK_UPCONVERT_FINISHING flag is
3565 * set when the ast is received for an upconvert just before the
3566 * OCFS2_LOCK_BUSY flag is cleared. Now if the fs received a bast
3567 * on the heels of the ast, we want to delay the downconvert just
3568 * enough to allow the up requestor to do its task. Because this
3569 * lock is in the blocked queue, the lock will be downconverted
3570 * as soon as the requestor is done with the lock.
3572 if (lockres
->l_flags
& OCFS2_LOCK_UPCONVERT_FINISHING
)
3576 * How can we block and yet be at NL? We were trying to upconvert
3577 * from NL and got canceled. The code comes back here, and now
3578 * we notice and clear BLOCKING.
3580 if (lockres
->l_level
== DLM_LOCK_NL
) {
3581 BUG_ON(lockres
->l_ex_holders
|| lockres
->l_ro_holders
);
3582 mlog(ML_BASTS
, "lockres %s, Aborting dc\n", lockres
->l_name
);
3583 lockres
->l_blocking
= DLM_LOCK_NL
;
3584 lockres_clear_flags(lockres
, OCFS2_LOCK_BLOCKED
);
3585 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3589 /* if we're blocking an exclusive and we have *any* holders,
3591 if ((lockres
->l_blocking
== DLM_LOCK_EX
)
3592 && (lockres
->l_ex_holders
|| lockres
->l_ro_holders
)) {
3593 mlog(ML_BASTS
, "lockres %s, ReQ: EX/PR Holders %u,%u\n",
3594 lockres
->l_name
, lockres
->l_ex_holders
,
3595 lockres
->l_ro_holders
);
3599 /* If it's a PR we're blocking, then only
3600 * requeue if we've got any EX holders */
3601 if (lockres
->l_blocking
== DLM_LOCK_PR
&&
3602 lockres
->l_ex_holders
) {
3603 mlog(ML_BASTS
, "lockres %s, ReQ: EX Holders %u\n",
3604 lockres
->l_name
, lockres
->l_ex_holders
);
3609 * Can we get a lock in this state if the holder counts are
3610 * zero? The meta data unblock code used to check this.
3612 if ((lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
3613 && (lockres
->l_flags
& OCFS2_LOCK_REFRESHING
)) {
3614 mlog(ML_BASTS
, "lockres %s, ReQ: Lock Refreshing\n",
3619 new_level
= ocfs2_highest_compat_lock_level(lockres
->l_blocking
);
3621 if (lockres
->l_ops
->check_downconvert
3622 && !lockres
->l_ops
->check_downconvert(lockres
, new_level
)) {
3623 mlog(ML_BASTS
, "lockres %s, ReQ: Checkpointing\n",
3628 /* If we get here, then we know that there are no more
3629 * incompatible holders (and anyone asking for an incompatible
3630 * lock is blocked). We can now downconvert the lock */
3631 if (!lockres
->l_ops
->downconvert_worker
)
3634 /* Some lockres types want to do a bit of work before
3635 * downconverting a lock. Allow that here. The worker function
3636 * may sleep, so we save off a copy of what we're blocking as
3637 * it may change while we're not holding the spin lock. */
3638 blocking
= lockres
->l_blocking
;
3639 level
= lockres
->l_level
;
3640 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3642 ctl
->unblock_action
= lockres
->l_ops
->downconvert_worker(lockres
, blocking
);
3644 if (ctl
->unblock_action
== UNBLOCK_STOP_POST
) {
3645 mlog(ML_BASTS
, "lockres %s, UNBLOCK_STOP_POST\n",
3650 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3651 if ((blocking
!= lockres
->l_blocking
) || (level
!= lockres
->l_level
)) {
3652 /* If this changed underneath us, then we can't drop
3654 mlog(ML_BASTS
, "lockres %s, block=%d:%d, level=%d:%d, "
3655 "Recheck\n", lockres
->l_name
, blocking
,
3656 lockres
->l_blocking
, level
, lockres
->l_level
);
3663 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
) {
3664 if (lockres
->l_level
== DLM_LOCK_EX
)
3668 * We only set the lvb if the lock has been fully
3669 * refreshed - otherwise we risk setting stale
3670 * data. Otherwise, there's no need to actually clear
3671 * out the lvb here as it's value is still valid.
3673 if (set_lvb
&& !(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
))
3674 lockres
->l_ops
->set_lvb(lockres
);
3677 gen
= ocfs2_prepare_downconvert(lockres
, new_level
);
3678 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3679 ret
= ocfs2_downconvert_lock(osb
, lockres
, new_level
, set_lvb
,
3688 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3694 static int ocfs2_data_convert_worker(struct ocfs2_lock_res
*lockres
,
3697 struct inode
*inode
;
3698 struct address_space
*mapping
;
3699 struct ocfs2_inode_info
*oi
;
3701 inode
= ocfs2_lock_res_inode(lockres
);
3702 mapping
= inode
->i_mapping
;
3704 if (S_ISDIR(inode
->i_mode
)) {
3705 oi
= OCFS2_I(inode
);
3706 oi
->ip_dir_lock_gen
++;
3707 mlog(0, "generation: %u\n", oi
->ip_dir_lock_gen
);
3711 if (!S_ISREG(inode
->i_mode
))
3715 * We need this before the filemap_fdatawrite() so that it can
3716 * transfer the dirty bit from the PTE to the
3717 * page. Unfortunately this means that even for EX->PR
3718 * downconverts, we'll lose our mappings and have to build
3721 unmap_mapping_range(mapping
, 0, 0, 0);
3723 if (filemap_fdatawrite(mapping
)) {
3724 mlog(ML_ERROR
, "Could not sync inode %llu for downconvert!",
3725 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
3727 sync_mapping_buffers(mapping
);
3728 if (blocking
== DLM_LOCK_EX
) {
3729 truncate_inode_pages(mapping
, 0);
3731 /* We only need to wait on the I/O if we're not also
3732 * truncating pages because truncate_inode_pages waits
3733 * for us above. We don't truncate pages if we're
3734 * blocking anything < EXMODE because we want to keep
3735 * them around in that case. */
3736 filemap_fdatawait(mapping
);
3739 forget_all_cached_acls(inode
);
3742 return UNBLOCK_CONTINUE
;
3745 static int ocfs2_ci_checkpointed(struct ocfs2_caching_info
*ci
,
3746 struct ocfs2_lock_res
*lockres
,
3749 int checkpointed
= ocfs2_ci_fully_checkpointed(ci
);
3751 BUG_ON(new_level
!= DLM_LOCK_NL
&& new_level
!= DLM_LOCK_PR
);
3752 BUG_ON(lockres
->l_level
!= DLM_LOCK_EX
&& !checkpointed
);
3757 ocfs2_start_checkpoint(OCFS2_SB(ocfs2_metadata_cache_get_super(ci
)));
3761 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res
*lockres
,
3764 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
3766 return ocfs2_ci_checkpointed(INODE_CACHE(inode
), lockres
, new_level
);
3769 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res
*lockres
)
3771 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
3773 __ocfs2_stuff_meta_lvb(inode
);
3777 * Does the final reference drop on our dentry lock. Right now this
3778 * happens in the downconvert thread, but we could choose to simplify the
3779 * dlmglue API and push these off to the ocfs2_wq in the future.
3781 static void ocfs2_dentry_post_unlock(struct ocfs2_super
*osb
,
3782 struct ocfs2_lock_res
*lockres
)
3784 struct ocfs2_dentry_lock
*dl
= ocfs2_lock_res_dl(lockres
);
3785 ocfs2_dentry_lock_put(osb
, dl
);
3789 * d_delete() matching dentries before the lock downconvert.
3791 * At this point, any process waiting to destroy the
3792 * dentry_lock due to last ref count is stopped by the
3793 * OCFS2_LOCK_QUEUED flag.
3795 * We have two potential problems
3797 * 1) If we do the last reference drop on our dentry_lock (via dput)
3798 * we'll wind up in ocfs2_release_dentry_lock(), waiting on
3799 * the downconvert to finish. Instead we take an elevated
3800 * reference and push the drop until after we've completed our
3801 * unblock processing.
3803 * 2) There might be another process with a final reference,
3804 * waiting on us to finish processing. If this is the case, we
3805 * detect it and exit out - there's no more dentries anyway.
3807 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res
*lockres
,
3810 struct ocfs2_dentry_lock
*dl
= ocfs2_lock_res_dl(lockres
);
3811 struct ocfs2_inode_info
*oi
= OCFS2_I(dl
->dl_inode
);
3812 struct dentry
*dentry
;
3813 unsigned long flags
;
3817 * This node is blocking another node from getting a read
3818 * lock. This happens when we've renamed within a
3819 * directory. We've forced the other nodes to d_delete(), but
3820 * we never actually dropped our lock because it's still
3821 * valid. The downconvert code will retain a PR for this node,
3822 * so there's no further work to do.
3824 if (blocking
== DLM_LOCK_PR
)
3825 return UNBLOCK_CONTINUE
;
3828 * Mark this inode as potentially orphaned. The code in
3829 * ocfs2_delete_inode() will figure out whether it actually
3830 * needs to be freed or not.
3832 spin_lock(&oi
->ip_lock
);
3833 oi
->ip_flags
|= OCFS2_INODE_MAYBE_ORPHANED
;
3834 spin_unlock(&oi
->ip_lock
);
3837 * Yuck. We need to make sure however that the check of
3838 * OCFS2_LOCK_FREEING and the extra reference are atomic with
3839 * respect to a reference decrement or the setting of that
3842 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3843 spin_lock(&dentry_attach_lock
);
3844 if (!(lockres
->l_flags
& OCFS2_LOCK_FREEING
)
3849 spin_unlock(&dentry_attach_lock
);
3850 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3852 mlog(0, "extra_ref = %d\n", extra_ref
);
3855 * We have a process waiting on us in ocfs2_dentry_iput(),
3856 * which means we can't have any more outstanding
3857 * aliases. There's no need to do any more work.
3860 return UNBLOCK_CONTINUE
;
3862 spin_lock(&dentry_attach_lock
);
3864 dentry
= ocfs2_find_local_alias(dl
->dl_inode
,
3865 dl
->dl_parent_blkno
, 1);
3868 spin_unlock(&dentry_attach_lock
);
3870 if (S_ISDIR(dl
->dl_inode
->i_mode
))
3871 shrink_dcache_parent(dentry
);
3873 mlog(0, "d_delete(%pd);\n", dentry
);
3876 * The following dcache calls may do an
3877 * iput(). Normally we don't want that from the
3878 * downconverting thread, but in this case it's ok
3879 * because the requesting node already has an
3880 * exclusive lock on the inode, so it can't be queued
3881 * for a downconvert.
3886 spin_lock(&dentry_attach_lock
);
3888 spin_unlock(&dentry_attach_lock
);
3891 * If we are the last holder of this dentry lock, there is no
3892 * reason to downconvert so skip straight to the unlock.
3894 if (dl
->dl_count
== 1)
3895 return UNBLOCK_STOP_POST
;
3897 return UNBLOCK_CONTINUE_POST
;
3900 static int ocfs2_check_refcount_downconvert(struct ocfs2_lock_res
*lockres
,
3903 struct ocfs2_refcount_tree
*tree
=
3904 ocfs2_lock_res_refcount_tree(lockres
);
3906 return ocfs2_ci_checkpointed(&tree
->rf_ci
, lockres
, new_level
);
3909 static int ocfs2_refcount_convert_worker(struct ocfs2_lock_res
*lockres
,
3912 struct ocfs2_refcount_tree
*tree
=
3913 ocfs2_lock_res_refcount_tree(lockres
);
3915 ocfs2_metadata_cache_purge(&tree
->rf_ci
);
3917 return UNBLOCK_CONTINUE
;
3920 static void ocfs2_set_qinfo_lvb(struct ocfs2_lock_res
*lockres
)
3922 struct ocfs2_qinfo_lvb
*lvb
;
3923 struct ocfs2_mem_dqinfo
*oinfo
= ocfs2_lock_res_qinfo(lockres
);
3924 struct mem_dqinfo
*info
= sb_dqinfo(oinfo
->dqi_gi
.dqi_sb
,
3925 oinfo
->dqi_gi
.dqi_type
);
3927 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
3928 lvb
->lvb_version
= OCFS2_QINFO_LVB_VERSION
;
3929 lvb
->lvb_bgrace
= cpu_to_be32(info
->dqi_bgrace
);
3930 lvb
->lvb_igrace
= cpu_to_be32(info
->dqi_igrace
);
3931 lvb
->lvb_syncms
= cpu_to_be32(oinfo
->dqi_syncms
);
3932 lvb
->lvb_blocks
= cpu_to_be32(oinfo
->dqi_gi
.dqi_blocks
);
3933 lvb
->lvb_free_blk
= cpu_to_be32(oinfo
->dqi_gi
.dqi_free_blk
);
3934 lvb
->lvb_free_entry
= cpu_to_be32(oinfo
->dqi_gi
.dqi_free_entry
);
3937 void ocfs2_qinfo_unlock(struct ocfs2_mem_dqinfo
*oinfo
, int ex
)
3939 struct ocfs2_lock_res
*lockres
= &oinfo
->dqi_gqlock
;
3940 struct ocfs2_super
*osb
= OCFS2_SB(oinfo
->dqi_gi
.dqi_sb
);
3941 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
3943 if (!ocfs2_is_hard_readonly(osb
) && !ocfs2_mount_local(osb
))
3944 ocfs2_cluster_unlock(osb
, lockres
, level
);
3947 static int ocfs2_refresh_qinfo(struct ocfs2_mem_dqinfo
*oinfo
)
3949 struct mem_dqinfo
*info
= sb_dqinfo(oinfo
->dqi_gi
.dqi_sb
,
3950 oinfo
->dqi_gi
.dqi_type
);
3951 struct ocfs2_lock_res
*lockres
= &oinfo
->dqi_gqlock
;
3952 struct ocfs2_qinfo_lvb
*lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
3953 struct buffer_head
*bh
= NULL
;
3954 struct ocfs2_global_disk_dqinfo
*gdinfo
;
3957 if (ocfs2_dlm_lvb_valid(&lockres
->l_lksb
) &&
3958 lvb
->lvb_version
== OCFS2_QINFO_LVB_VERSION
) {
3959 info
->dqi_bgrace
= be32_to_cpu(lvb
->lvb_bgrace
);
3960 info
->dqi_igrace
= be32_to_cpu(lvb
->lvb_igrace
);
3961 oinfo
->dqi_syncms
= be32_to_cpu(lvb
->lvb_syncms
);
3962 oinfo
->dqi_gi
.dqi_blocks
= be32_to_cpu(lvb
->lvb_blocks
);
3963 oinfo
->dqi_gi
.dqi_free_blk
= be32_to_cpu(lvb
->lvb_free_blk
);
3964 oinfo
->dqi_gi
.dqi_free_entry
=
3965 be32_to_cpu(lvb
->lvb_free_entry
);
3967 status
= ocfs2_read_quota_phys_block(oinfo
->dqi_gqinode
,
3968 oinfo
->dqi_giblk
, &bh
);
3973 gdinfo
= (struct ocfs2_global_disk_dqinfo
*)
3974 (bh
->b_data
+ OCFS2_GLOBAL_INFO_OFF
);
3975 info
->dqi_bgrace
= le32_to_cpu(gdinfo
->dqi_bgrace
);
3976 info
->dqi_igrace
= le32_to_cpu(gdinfo
->dqi_igrace
);
3977 oinfo
->dqi_syncms
= le32_to_cpu(gdinfo
->dqi_syncms
);
3978 oinfo
->dqi_gi
.dqi_blocks
= le32_to_cpu(gdinfo
->dqi_blocks
);
3979 oinfo
->dqi_gi
.dqi_free_blk
= le32_to_cpu(gdinfo
->dqi_free_blk
);
3980 oinfo
->dqi_gi
.dqi_free_entry
=
3981 le32_to_cpu(gdinfo
->dqi_free_entry
);
3983 ocfs2_track_lock_refresh(lockres
);
3990 /* Lock quota info, this function expects at least shared lock on the quota file
3991 * so that we can safely refresh quota info from disk. */
3992 int ocfs2_qinfo_lock(struct ocfs2_mem_dqinfo
*oinfo
, int ex
)
3994 struct ocfs2_lock_res
*lockres
= &oinfo
->dqi_gqlock
;
3995 struct ocfs2_super
*osb
= OCFS2_SB(oinfo
->dqi_gi
.dqi_sb
);
3996 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
3999 /* On RO devices, locking really isn't needed... */
4000 if (ocfs2_is_hard_readonly(osb
)) {
4005 if (ocfs2_mount_local(osb
))
4008 status
= ocfs2_cluster_lock(osb
, lockres
, level
, 0, 0);
4013 if (!ocfs2_should_refresh_lock_res(lockres
))
4015 /* OK, we have the lock but we need to refresh the quota info */
4016 status
= ocfs2_refresh_qinfo(oinfo
);
4018 ocfs2_qinfo_unlock(oinfo
, ex
);
4019 ocfs2_complete_lock_res_refresh(lockres
, status
);
4024 int ocfs2_refcount_lock(struct ocfs2_refcount_tree
*ref_tree
, int ex
)
4027 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
4028 struct ocfs2_lock_res
*lockres
= &ref_tree
->rf_lockres
;
4029 struct ocfs2_super
*osb
= lockres
->l_priv
;
4032 if (ocfs2_is_hard_readonly(osb
))
4035 if (ocfs2_mount_local(osb
))
4038 status
= ocfs2_cluster_lock(osb
, lockres
, level
, 0, 0);
4045 void ocfs2_refcount_unlock(struct ocfs2_refcount_tree
*ref_tree
, int ex
)
4047 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
4048 struct ocfs2_lock_res
*lockres
= &ref_tree
->rf_lockres
;
4049 struct ocfs2_super
*osb
= lockres
->l_priv
;
4051 if (!ocfs2_mount_local(osb
))
4052 ocfs2_cluster_unlock(osb
, lockres
, level
);
4055 static void ocfs2_process_blocked_lock(struct ocfs2_super
*osb
,
4056 struct ocfs2_lock_res
*lockres
)
4059 struct ocfs2_unblock_ctl ctl
= {0, 0,};
4060 unsigned long flags
;
4062 /* Our reference to the lockres in this function can be
4063 * considered valid until we remove the OCFS2_LOCK_QUEUED
4067 BUG_ON(!lockres
->l_ops
);
4069 mlog(ML_BASTS
, "lockres %s blocked\n", lockres
->l_name
);
4071 /* Detect whether a lock has been marked as going away while
4072 * the downconvert thread was processing other things. A lock can
4073 * still be marked with OCFS2_LOCK_FREEING after this check,
4074 * but short circuiting here will still save us some
4076 spin_lock_irqsave(&lockres
->l_lock
, flags
);
4077 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
)
4079 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
4081 status
= ocfs2_unblock_lock(osb
, lockres
, &ctl
);
4085 spin_lock_irqsave(&lockres
->l_lock
, flags
);
4087 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
|| !ctl
.requeue
) {
4088 lockres_clear_flags(lockres
, OCFS2_LOCK_QUEUED
);
4090 ocfs2_schedule_blocked_lock(osb
, lockres
);
4092 mlog(ML_BASTS
, "lockres %s, requeue = %s.\n", lockres
->l_name
,
4093 ctl
.requeue
? "yes" : "no");
4094 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
4096 if (ctl
.unblock_action
!= UNBLOCK_CONTINUE
4097 && lockres
->l_ops
->post_unlock
)
4098 lockres
->l_ops
->post_unlock(osb
, lockres
);
4101 static void ocfs2_schedule_blocked_lock(struct ocfs2_super
*osb
,
4102 struct ocfs2_lock_res
*lockres
)
4104 unsigned long flags
;
4106 assert_spin_locked(&lockres
->l_lock
);
4108 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
) {
4109 /* Do not schedule a lock for downconvert when it's on
4110 * the way to destruction - any nodes wanting access
4111 * to the resource will get it soon. */
4112 mlog(ML_BASTS
, "lockres %s won't be scheduled: flags 0x%lx\n",
4113 lockres
->l_name
, lockres
->l_flags
);
4117 lockres_or_flags(lockres
, OCFS2_LOCK_QUEUED
);
4119 spin_lock_irqsave(&osb
->dc_task_lock
, flags
);
4120 if (list_empty(&lockres
->l_blocked_list
)) {
4121 list_add_tail(&lockres
->l_blocked_list
,
4122 &osb
->blocked_lock_list
);
4123 osb
->blocked_lock_count
++;
4125 spin_unlock_irqrestore(&osb
->dc_task_lock
, flags
);
4128 static void ocfs2_downconvert_thread_do_work(struct ocfs2_super
*osb
)
4130 unsigned long processed
;
4131 unsigned long flags
;
4132 struct ocfs2_lock_res
*lockres
;
4134 spin_lock_irqsave(&osb
->dc_task_lock
, flags
);
4135 /* grab this early so we know to try again if a state change and
4136 * wake happens part-way through our work */
4137 osb
->dc_work_sequence
= osb
->dc_wake_sequence
;
4139 processed
= osb
->blocked_lock_count
;
4141 * blocked lock processing in this loop might call iput which can
4142 * remove items off osb->blocked_lock_list. Downconvert up to
4143 * 'processed' number of locks, but stop short if we had some
4144 * removed in ocfs2_mark_lockres_freeing when downconverting.
4146 while (processed
&& !list_empty(&osb
->blocked_lock_list
)) {
4147 lockres
= list_entry(osb
->blocked_lock_list
.next
,
4148 struct ocfs2_lock_res
, l_blocked_list
);
4149 list_del_init(&lockres
->l_blocked_list
);
4150 osb
->blocked_lock_count
--;
4151 spin_unlock_irqrestore(&osb
->dc_task_lock
, flags
);
4156 ocfs2_process_blocked_lock(osb
, lockres
);
4158 spin_lock_irqsave(&osb
->dc_task_lock
, flags
);
4160 spin_unlock_irqrestore(&osb
->dc_task_lock
, flags
);
4163 static int ocfs2_downconvert_thread_lists_empty(struct ocfs2_super
*osb
)
4166 unsigned long flags
;
4168 spin_lock_irqsave(&osb
->dc_task_lock
, flags
);
4169 if (list_empty(&osb
->blocked_lock_list
))
4172 spin_unlock_irqrestore(&osb
->dc_task_lock
, flags
);
4176 static int ocfs2_downconvert_thread_should_wake(struct ocfs2_super
*osb
)
4178 int should_wake
= 0;
4179 unsigned long flags
;
4181 spin_lock_irqsave(&osb
->dc_task_lock
, flags
);
4182 if (osb
->dc_work_sequence
!= osb
->dc_wake_sequence
)
4184 spin_unlock_irqrestore(&osb
->dc_task_lock
, flags
);
4189 static int ocfs2_downconvert_thread(void *arg
)
4192 struct ocfs2_super
*osb
= arg
;
4194 /* only quit once we've been asked to stop and there is no more
4196 while (!(kthread_should_stop() &&
4197 ocfs2_downconvert_thread_lists_empty(osb
))) {
4199 wait_event_interruptible(osb
->dc_event
,
4200 ocfs2_downconvert_thread_should_wake(osb
) ||
4201 kthread_should_stop());
4203 mlog(0, "downconvert_thread: awoken\n");
4205 ocfs2_downconvert_thread_do_work(osb
);
4208 osb
->dc_task
= NULL
;
4212 void ocfs2_wake_downconvert_thread(struct ocfs2_super
*osb
)
4214 unsigned long flags
;
4216 spin_lock_irqsave(&osb
->dc_task_lock
, flags
);
4217 /* make sure the voting thread gets a swipe at whatever changes
4218 * the caller may have made to the voting state */
4219 osb
->dc_wake_sequence
++;
4220 spin_unlock_irqrestore(&osb
->dc_task_lock
, flags
);
4221 wake_up(&osb
->dc_event
);