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>
37 #define MLOG_MASK_PREFIX ML_DLM_GLUE
38 #include <cluster/masklog.h>
41 #include "ocfs2_lockingver.h"
46 #include "extent_map.h"
48 #include "heartbeat.h"
51 #include "stackglue.h"
56 #include "refcounttree.h"
58 #include "buffer_head_io.h"
60 struct ocfs2_mask_waiter
{
61 struct list_head mw_item
;
63 struct completion mw_complete
;
64 unsigned long mw_mask
;
65 unsigned long mw_goal
;
66 #ifdef CONFIG_OCFS2_FS_STATS
67 unsigned long long mw_lock_start
;
71 static struct ocfs2_super
*ocfs2_get_dentry_osb(struct ocfs2_lock_res
*lockres
);
72 static struct ocfs2_super
*ocfs2_get_inode_osb(struct ocfs2_lock_res
*lockres
);
73 static struct ocfs2_super
*ocfs2_get_file_osb(struct ocfs2_lock_res
*lockres
);
74 static struct ocfs2_super
*ocfs2_get_qinfo_osb(struct ocfs2_lock_res
*lockres
);
77 * Return value from ->downconvert_worker functions.
79 * These control the precise actions of ocfs2_unblock_lock()
80 * and ocfs2_process_blocked_lock()
83 enum ocfs2_unblock_action
{
84 UNBLOCK_CONTINUE
= 0, /* Continue downconvert */
85 UNBLOCK_CONTINUE_POST
= 1, /* Continue downconvert, fire
86 * ->post_unlock callback */
87 UNBLOCK_STOP_POST
= 2, /* Do not downconvert, fire
88 * ->post_unlock() callback. */
91 struct ocfs2_unblock_ctl
{
93 enum ocfs2_unblock_action unblock_action
;
96 /* Lockdep class keys */
97 struct lock_class_key lockdep_keys
[OCFS2_NUM_LOCK_TYPES
];
99 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res
*lockres
,
101 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res
*lockres
);
103 static int ocfs2_data_convert_worker(struct ocfs2_lock_res
*lockres
,
106 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res
*lockres
,
109 static void ocfs2_dentry_post_unlock(struct ocfs2_super
*osb
,
110 struct ocfs2_lock_res
*lockres
);
112 static void ocfs2_set_qinfo_lvb(struct ocfs2_lock_res
*lockres
);
114 static int ocfs2_check_refcount_downconvert(struct ocfs2_lock_res
*lockres
,
116 static int ocfs2_refcount_convert_worker(struct ocfs2_lock_res
*lockres
,
119 #define mlog_meta_lvb(__level, __lockres) ocfs2_dump_meta_lvb_info(__level, __PRETTY_FUNCTION__, __LINE__, __lockres)
121 /* This aids in debugging situations where a bad LVB might be involved. */
122 static void ocfs2_dump_meta_lvb_info(u64 level
,
123 const char *function
,
125 struct ocfs2_lock_res
*lockres
)
127 struct ocfs2_meta_lvb
*lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
129 mlog(level
, "LVB information for %s (called from %s:%u):\n",
130 lockres
->l_name
, function
, line
);
131 mlog(level
, "version: %u, clusters: %u, generation: 0x%x\n",
132 lvb
->lvb_version
, be32_to_cpu(lvb
->lvb_iclusters
),
133 be32_to_cpu(lvb
->lvb_igeneration
));
134 mlog(level
, "size: %llu, uid %u, gid %u, mode 0x%x\n",
135 (unsigned long long)be64_to_cpu(lvb
->lvb_isize
),
136 be32_to_cpu(lvb
->lvb_iuid
), be32_to_cpu(lvb
->lvb_igid
),
137 be16_to_cpu(lvb
->lvb_imode
));
138 mlog(level
, "nlink %u, atime_packed 0x%llx, ctime_packed 0x%llx, "
139 "mtime_packed 0x%llx iattr 0x%x\n", be16_to_cpu(lvb
->lvb_inlink
),
140 (long long)be64_to_cpu(lvb
->lvb_iatime_packed
),
141 (long long)be64_to_cpu(lvb
->lvb_ictime_packed
),
142 (long long)be64_to_cpu(lvb
->lvb_imtime_packed
),
143 be32_to_cpu(lvb
->lvb_iattr
));
148 * OCFS2 Lock Resource Operations
150 * These fine tune the behavior of the generic dlmglue locking infrastructure.
152 * The most basic of lock types can point ->l_priv to their respective
153 * struct ocfs2_super and allow the default actions to manage things.
155 * Right now, each lock type also needs to implement an init function,
156 * and trivial lock/unlock wrappers. ocfs2_simple_drop_lockres()
157 * should be called when the lock is no longer needed (i.e., object
160 struct ocfs2_lock_res_ops
{
162 * Translate an ocfs2_lock_res * into an ocfs2_super *. Define
163 * this callback if ->l_priv is not an ocfs2_super pointer
165 struct ocfs2_super
* (*get_osb
)(struct ocfs2_lock_res
*);
168 * Optionally called in the downconvert thread after a
169 * successful downconvert. The lockres will not be referenced
170 * after this callback is called, so it is safe to free
173 * The exact semantics of when this is called are controlled
174 * by ->downconvert_worker()
176 void (*post_unlock
)(struct ocfs2_super
*, struct ocfs2_lock_res
*);
179 * Allow a lock type to add checks to determine whether it is
180 * safe to downconvert a lock. Return 0 to re-queue the
181 * downconvert at a later time, nonzero to continue.
183 * For most locks, the default checks that there are no
184 * incompatible holders are sufficient.
186 * Called with the lockres spinlock held.
188 int (*check_downconvert
)(struct ocfs2_lock_res
*, int);
191 * Allows a lock type to populate the lock value block. This
192 * is called on downconvert, and when we drop a lock.
194 * Locks that want to use this should set LOCK_TYPE_USES_LVB
195 * in the flags field.
197 * Called with the lockres spinlock held.
199 void (*set_lvb
)(struct ocfs2_lock_res
*);
202 * Called from the downconvert thread when it is determined
203 * that a lock will be downconverted. This is called without
204 * any locks held so the function can do work that might
205 * schedule (syncing out data, etc).
207 * This should return any one of the ocfs2_unblock_action
208 * values, depending on what it wants the thread to do.
210 int (*downconvert_worker
)(struct ocfs2_lock_res
*, int);
213 * LOCK_TYPE_* flags which describe the specific requirements
214 * of a lock type. Descriptions of each individual flag follow.
220 * Some locks want to "refresh" potentially stale data when a
221 * meaningful (PRMODE or EXMODE) lock level is first obtained. If this
222 * flag is set, the OCFS2_LOCK_NEEDS_REFRESH flag will be set on the
223 * individual lockres l_flags member from the ast function. It is
224 * expected that the locking wrapper will clear the
225 * OCFS2_LOCK_NEEDS_REFRESH flag when done.
227 #define LOCK_TYPE_REQUIRES_REFRESH 0x1
230 * Indicate that a lock type makes use of the lock value block. The
231 * ->set_lvb lock type callback must be defined.
233 #define LOCK_TYPE_USES_LVB 0x2
235 static struct ocfs2_lock_res_ops ocfs2_inode_rw_lops
= {
236 .get_osb
= ocfs2_get_inode_osb
,
240 static struct ocfs2_lock_res_ops ocfs2_inode_inode_lops
= {
241 .get_osb
= ocfs2_get_inode_osb
,
242 .check_downconvert
= ocfs2_check_meta_downconvert
,
243 .set_lvb
= ocfs2_set_meta_lvb
,
244 .downconvert_worker
= ocfs2_data_convert_worker
,
245 .flags
= LOCK_TYPE_REQUIRES_REFRESH
|LOCK_TYPE_USES_LVB
,
248 static struct ocfs2_lock_res_ops ocfs2_super_lops
= {
249 .flags
= LOCK_TYPE_REQUIRES_REFRESH
,
252 static struct ocfs2_lock_res_ops ocfs2_rename_lops
= {
256 static struct ocfs2_lock_res_ops ocfs2_nfs_sync_lops
= {
260 static struct ocfs2_lock_res_ops ocfs2_orphan_scan_lops
= {
261 .flags
= LOCK_TYPE_REQUIRES_REFRESH
|LOCK_TYPE_USES_LVB
,
264 static struct ocfs2_lock_res_ops ocfs2_dentry_lops
= {
265 .get_osb
= ocfs2_get_dentry_osb
,
266 .post_unlock
= ocfs2_dentry_post_unlock
,
267 .downconvert_worker
= ocfs2_dentry_convert_worker
,
271 static struct ocfs2_lock_res_ops ocfs2_inode_open_lops
= {
272 .get_osb
= ocfs2_get_inode_osb
,
276 static struct ocfs2_lock_res_ops ocfs2_flock_lops
= {
277 .get_osb
= ocfs2_get_file_osb
,
281 static struct ocfs2_lock_res_ops ocfs2_qinfo_lops
= {
282 .set_lvb
= ocfs2_set_qinfo_lvb
,
283 .get_osb
= ocfs2_get_qinfo_osb
,
284 .flags
= LOCK_TYPE_REQUIRES_REFRESH
| LOCK_TYPE_USES_LVB
,
287 static struct ocfs2_lock_res_ops ocfs2_refcount_block_lops
= {
288 .check_downconvert
= ocfs2_check_refcount_downconvert
,
289 .downconvert_worker
= ocfs2_refcount_convert_worker
,
293 static inline int ocfs2_is_inode_lock(struct ocfs2_lock_res
*lockres
)
295 return lockres
->l_type
== OCFS2_LOCK_TYPE_META
||
296 lockres
->l_type
== OCFS2_LOCK_TYPE_RW
||
297 lockres
->l_type
== OCFS2_LOCK_TYPE_OPEN
;
300 static inline struct inode
*ocfs2_lock_res_inode(struct ocfs2_lock_res
*lockres
)
302 BUG_ON(!ocfs2_is_inode_lock(lockres
));
304 return (struct inode
*) lockres
->l_priv
;
307 static inline struct ocfs2_dentry_lock
*ocfs2_lock_res_dl(struct ocfs2_lock_res
*lockres
)
309 BUG_ON(lockres
->l_type
!= OCFS2_LOCK_TYPE_DENTRY
);
311 return (struct ocfs2_dentry_lock
*)lockres
->l_priv
;
314 static inline struct ocfs2_mem_dqinfo
*ocfs2_lock_res_qinfo(struct ocfs2_lock_res
*lockres
)
316 BUG_ON(lockres
->l_type
!= OCFS2_LOCK_TYPE_QINFO
);
318 return (struct ocfs2_mem_dqinfo
*)lockres
->l_priv
;
321 static inline struct ocfs2_refcount_tree
*
322 ocfs2_lock_res_refcount_tree(struct ocfs2_lock_res
*res
)
324 return container_of(res
, struct ocfs2_refcount_tree
, rf_lockres
);
327 static inline struct ocfs2_super
*ocfs2_get_lockres_osb(struct ocfs2_lock_res
*lockres
)
329 if (lockres
->l_ops
->get_osb
)
330 return lockres
->l_ops
->get_osb(lockres
);
332 return (struct ocfs2_super
*)lockres
->l_priv
;
335 static int ocfs2_lock_create(struct ocfs2_super
*osb
,
336 struct ocfs2_lock_res
*lockres
,
339 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res
*lockres
,
341 static void __ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
342 struct ocfs2_lock_res
*lockres
,
343 int level
, unsigned long caller_ip
);
344 static inline void ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
345 struct ocfs2_lock_res
*lockres
,
348 __ocfs2_cluster_unlock(osb
, lockres
, level
, _RET_IP_
);
351 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res
*lockres
);
352 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res
*lockres
);
353 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res
*lockres
);
354 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res
*lockres
, int level
);
355 static void ocfs2_schedule_blocked_lock(struct ocfs2_super
*osb
,
356 struct ocfs2_lock_res
*lockres
);
357 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res
*lockres
,
359 #define ocfs2_log_dlm_error(_func, _err, _lockres) do { \
360 if ((_lockres)->l_type != OCFS2_LOCK_TYPE_DENTRY) \
361 mlog(ML_ERROR, "DLM error %d while calling %s on resource %s\n", \
362 _err, _func, _lockres->l_name); \
364 mlog(ML_ERROR, "DLM error %d while calling %s on resource %.*s%08x\n", \
365 _err, _func, OCFS2_DENTRY_LOCK_INO_START - 1, (_lockres)->l_name, \
366 (unsigned int)ocfs2_get_dentry_lock_ino(_lockres)); \
368 static int ocfs2_downconvert_thread(void *arg
);
369 static void ocfs2_downconvert_on_unlock(struct ocfs2_super
*osb
,
370 struct ocfs2_lock_res
*lockres
);
371 static int ocfs2_inode_lock_update(struct inode
*inode
,
372 struct buffer_head
**bh
);
373 static void ocfs2_drop_osb_locks(struct ocfs2_super
*osb
);
374 static inline int ocfs2_highest_compat_lock_level(int level
);
375 static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res
*lockres
,
377 static int ocfs2_downconvert_lock(struct ocfs2_super
*osb
,
378 struct ocfs2_lock_res
*lockres
,
381 unsigned int generation
);
382 static int ocfs2_prepare_cancel_convert(struct ocfs2_super
*osb
,
383 struct ocfs2_lock_res
*lockres
);
384 static int ocfs2_cancel_convert(struct ocfs2_super
*osb
,
385 struct ocfs2_lock_res
*lockres
);
388 static void ocfs2_build_lock_name(enum ocfs2_lock_type type
,
397 BUG_ON(type
>= OCFS2_NUM_LOCK_TYPES
);
399 len
= snprintf(name
, OCFS2_LOCK_ID_MAX_LEN
, "%c%s%016llx%08x",
400 ocfs2_lock_type_char(type
), OCFS2_LOCK_ID_PAD
,
401 (long long)blkno
, generation
);
403 BUG_ON(len
!= (OCFS2_LOCK_ID_MAX_LEN
- 1));
405 mlog(0, "built lock resource with name: %s\n", name
);
410 static DEFINE_SPINLOCK(ocfs2_dlm_tracking_lock
);
412 static void ocfs2_add_lockres_tracking(struct ocfs2_lock_res
*res
,
413 struct ocfs2_dlm_debug
*dlm_debug
)
415 mlog(0, "Add tracking for lockres %s\n", res
->l_name
);
417 spin_lock(&ocfs2_dlm_tracking_lock
);
418 list_add(&res
->l_debug_list
, &dlm_debug
->d_lockres_tracking
);
419 spin_unlock(&ocfs2_dlm_tracking_lock
);
422 static void ocfs2_remove_lockres_tracking(struct ocfs2_lock_res
*res
)
424 spin_lock(&ocfs2_dlm_tracking_lock
);
425 if (!list_empty(&res
->l_debug_list
))
426 list_del_init(&res
->l_debug_list
);
427 spin_unlock(&ocfs2_dlm_tracking_lock
);
430 #ifdef CONFIG_OCFS2_FS_STATS
431 static void ocfs2_init_lock_stats(struct ocfs2_lock_res
*res
)
433 res
->l_lock_num_prmode
= 0;
434 res
->l_lock_num_prmode_failed
= 0;
435 res
->l_lock_total_prmode
= 0;
436 res
->l_lock_max_prmode
= 0;
437 res
->l_lock_num_exmode
= 0;
438 res
->l_lock_num_exmode_failed
= 0;
439 res
->l_lock_total_exmode
= 0;
440 res
->l_lock_max_exmode
= 0;
441 res
->l_lock_refresh
= 0;
444 static void ocfs2_update_lock_stats(struct ocfs2_lock_res
*res
, int level
,
445 struct ocfs2_mask_waiter
*mw
, int ret
)
447 unsigned long long *num
, *sum
;
448 unsigned int *max
, *failed
;
449 struct timespec ts
= current_kernel_time();
450 unsigned long long time
= timespec_to_ns(&ts
) - mw
->mw_lock_start
;
452 if (level
== LKM_PRMODE
) {
453 num
= &res
->l_lock_num_prmode
;
454 sum
= &res
->l_lock_total_prmode
;
455 max
= &res
->l_lock_max_prmode
;
456 failed
= &res
->l_lock_num_prmode_failed
;
457 } else if (level
== LKM_EXMODE
) {
458 num
= &res
->l_lock_num_exmode
;
459 sum
= &res
->l_lock_total_exmode
;
460 max
= &res
->l_lock_max_exmode
;
461 failed
= &res
->l_lock_num_exmode_failed
;
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 struct timespec ts
= current_kernel_time();
481 mw
->mw_lock_start
= timespec_to_ns(&ts
);
484 static inline void ocfs2_init_lock_stats(struct ocfs2_lock_res
*res
)
487 static inline void ocfs2_update_lock_stats(struct ocfs2_lock_res
*res
,
488 int level
, struct ocfs2_mask_waiter
*mw
, int ret
)
491 static inline void ocfs2_track_lock_refresh(struct ocfs2_lock_res
*lockres
)
494 static inline void ocfs2_init_start_time(struct ocfs2_mask_waiter
*mw
)
499 static void ocfs2_lock_res_init_common(struct ocfs2_super
*osb
,
500 struct ocfs2_lock_res
*res
,
501 enum ocfs2_lock_type type
,
502 struct ocfs2_lock_res_ops
*ops
,
509 res
->l_level
= DLM_LOCK_IV
;
510 res
->l_requested
= DLM_LOCK_IV
;
511 res
->l_blocking
= DLM_LOCK_IV
;
512 res
->l_action
= OCFS2_AST_INVALID
;
513 res
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
515 res
->l_flags
= OCFS2_LOCK_INITIALIZED
;
517 ocfs2_add_lockres_tracking(res
, osb
->osb_dlm_debug
);
519 ocfs2_init_lock_stats(res
);
520 #ifdef CONFIG_DEBUG_LOCK_ALLOC
521 if (type
!= OCFS2_LOCK_TYPE_OPEN
)
522 lockdep_init_map(&res
->l_lockdep_map
, ocfs2_lock_type_strings
[type
],
523 &lockdep_keys
[type
], 0);
525 res
->l_lockdep_map
.key
= NULL
;
529 void ocfs2_lock_res_init_once(struct ocfs2_lock_res
*res
)
531 /* This also clears out the lock status block */
532 memset(res
, 0, sizeof(struct ocfs2_lock_res
));
533 spin_lock_init(&res
->l_lock
);
534 init_waitqueue_head(&res
->l_event
);
535 INIT_LIST_HEAD(&res
->l_blocked_list
);
536 INIT_LIST_HEAD(&res
->l_mask_waiters
);
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
)
729 if (!(res
->l_flags
& OCFS2_LOCK_INITIALIZED
))
732 ocfs2_remove_lockres_tracking(res
);
734 mlog_bug_on_msg(!list_empty(&res
->l_blocked_list
),
735 "Lockres %s is on the blocked list\n",
737 mlog_bug_on_msg(!list_empty(&res
->l_mask_waiters
),
738 "Lockres %s has mask waiters pending\n",
740 mlog_bug_on_msg(spin_is_locked(&res
->l_lock
),
741 "Lockres %s is locked\n",
743 mlog_bug_on_msg(res
->l_ro_holders
,
744 "Lockres %s has %u ro holders\n",
745 res
->l_name
, res
->l_ro_holders
);
746 mlog_bug_on_msg(res
->l_ex_holders
,
747 "Lockres %s has %u ex holders\n",
748 res
->l_name
, res
->l_ex_holders
);
750 /* Need to clear out the lock status block for the dlm */
751 memset(&res
->l_lksb
, 0, sizeof(res
->l_lksb
));
757 static inline void ocfs2_inc_holders(struct ocfs2_lock_res
*lockres
,
766 lockres
->l_ex_holders
++;
769 lockres
->l_ro_holders
++;
778 static inline void ocfs2_dec_holders(struct ocfs2_lock_res
*lockres
,
787 BUG_ON(!lockres
->l_ex_holders
);
788 lockres
->l_ex_holders
--;
791 BUG_ON(!lockres
->l_ro_holders
);
792 lockres
->l_ro_holders
--;
800 /* WARNING: This function lives in a world where the only three lock
801 * levels are EX, PR, and NL. It *will* have to be adjusted when more
802 * lock types are added. */
803 static inline int ocfs2_highest_compat_lock_level(int level
)
805 int new_level
= DLM_LOCK_EX
;
807 if (level
== DLM_LOCK_EX
)
808 new_level
= DLM_LOCK_NL
;
809 else if (level
== DLM_LOCK_PR
)
810 new_level
= DLM_LOCK_PR
;
814 static void lockres_set_flags(struct ocfs2_lock_res
*lockres
,
815 unsigned long newflags
)
817 struct ocfs2_mask_waiter
*mw
, *tmp
;
819 assert_spin_locked(&lockres
->l_lock
);
821 lockres
->l_flags
= newflags
;
823 list_for_each_entry_safe(mw
, tmp
, &lockres
->l_mask_waiters
, mw_item
) {
824 if ((lockres
->l_flags
& mw
->mw_mask
) != mw
->mw_goal
)
827 list_del_init(&mw
->mw_item
);
829 complete(&mw
->mw_complete
);
832 static void lockres_or_flags(struct ocfs2_lock_res
*lockres
, unsigned long or)
834 lockres_set_flags(lockres
, lockres
->l_flags
| or);
836 static void lockres_clear_flags(struct ocfs2_lock_res
*lockres
,
839 lockres_set_flags(lockres
, lockres
->l_flags
& ~clear
);
842 static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res
*lockres
)
846 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
847 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
));
848 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
849 BUG_ON(lockres
->l_blocking
<= DLM_LOCK_NL
);
851 lockres
->l_level
= lockres
->l_requested
;
852 if (lockres
->l_level
<=
853 ocfs2_highest_compat_lock_level(lockres
->l_blocking
)) {
854 lockres
->l_blocking
= DLM_LOCK_NL
;
855 lockres_clear_flags(lockres
, OCFS2_LOCK_BLOCKED
);
857 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
862 static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res
*lockres
)
866 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
867 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
));
869 /* Convert from RO to EX doesn't really need anything as our
870 * information is already up to data. Convert from NL to
871 * *anything* however should mark ourselves as needing an
873 if (lockres
->l_level
== DLM_LOCK_NL
&&
874 lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
875 lockres_or_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
877 lockres
->l_level
= lockres
->l_requested
;
878 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
883 static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res
*lockres
)
887 BUG_ON((!(lockres
->l_flags
& OCFS2_LOCK_BUSY
)));
888 BUG_ON(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
);
890 if (lockres
->l_requested
> DLM_LOCK_NL
&&
891 !(lockres
->l_flags
& OCFS2_LOCK_LOCAL
) &&
892 lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
893 lockres_or_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
895 lockres
->l_level
= lockres
->l_requested
;
896 lockres_or_flags(lockres
, OCFS2_LOCK_ATTACHED
);
897 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
902 static int ocfs2_generic_handle_bast(struct ocfs2_lock_res
*lockres
,
905 int needs_downconvert
= 0;
908 assert_spin_locked(&lockres
->l_lock
);
910 lockres_or_flags(lockres
, OCFS2_LOCK_BLOCKED
);
912 if (level
> lockres
->l_blocking
) {
913 /* only schedule a downconvert if we haven't already scheduled
914 * one that goes low enough to satisfy the level we're
915 * blocking. this also catches the case where we get
917 if (ocfs2_highest_compat_lock_level(level
) <
918 ocfs2_highest_compat_lock_level(lockres
->l_blocking
))
919 needs_downconvert
= 1;
921 lockres
->l_blocking
= level
;
924 mlog_exit(needs_downconvert
);
925 return needs_downconvert
;
929 * OCFS2_LOCK_PENDING and l_pending_gen.
931 * Why does OCFS2_LOCK_PENDING exist? To close a race between setting
932 * OCFS2_LOCK_BUSY and calling ocfs2_dlm_lock(). See ocfs2_unblock_lock()
933 * for more details on the race.
935 * OCFS2_LOCK_PENDING closes the race quite nicely. However, it introduces
936 * a race on itself. In o2dlm, we can get the ast before ocfs2_dlm_lock()
937 * returns. The ast clears OCFS2_LOCK_BUSY, and must therefore clear
938 * OCFS2_LOCK_PENDING at the same time. When ocfs2_dlm_lock() returns,
939 * the caller is going to try to clear PENDING again. If nothing else is
940 * happening, __lockres_clear_pending() sees PENDING is unset and does
943 * But what if another path (eg downconvert thread) has just started a
944 * new locking action? The other path has re-set PENDING. Our path
945 * cannot clear PENDING, because that will re-open the original race
951 * ocfs2_cluster_lock()
956 * ocfs2_locking_ast() ocfs2_downconvert_thread()
957 * clear PENDING ocfs2_unblock_lock()
960 * ocfs2_prepare_downconvert()
970 * So as you can see, we now have a window where l_lock is not held,
971 * PENDING is not set, and ocfs2_dlm_lock() has not been called.
973 * The core problem is that ocfs2_cluster_lock() has cleared the PENDING
974 * set by ocfs2_prepare_downconvert(). That wasn't nice.
976 * To solve this we introduce l_pending_gen. A call to
977 * lockres_clear_pending() will only do so when it is passed a generation
978 * number that matches the lockres. lockres_set_pending() will return the
979 * current generation number. When ocfs2_cluster_lock() goes to clear
980 * PENDING, it passes the generation it got from set_pending(). In our
981 * example above, the generation numbers will *not* match. Thus,
982 * ocfs2_cluster_lock() will not clear the PENDING set by
983 * ocfs2_prepare_downconvert().
986 /* Unlocked version for ocfs2_locking_ast() */
987 static void __lockres_clear_pending(struct ocfs2_lock_res
*lockres
,
988 unsigned int generation
,
989 struct ocfs2_super
*osb
)
991 assert_spin_locked(&lockres
->l_lock
);
994 * The ast and locking functions can race us here. The winner
995 * will clear pending, the loser will not.
997 if (!(lockres
->l_flags
& OCFS2_LOCK_PENDING
) ||
998 (lockres
->l_pending_gen
!= generation
))
1001 lockres_clear_flags(lockres
, OCFS2_LOCK_PENDING
);
1002 lockres
->l_pending_gen
++;
1005 * The downconvert thread may have skipped us because we
1006 * were PENDING. Wake it up.
1008 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
1009 ocfs2_wake_downconvert_thread(osb
);
1012 /* Locked version for callers of ocfs2_dlm_lock() */
1013 static void lockres_clear_pending(struct ocfs2_lock_res
*lockres
,
1014 unsigned int generation
,
1015 struct ocfs2_super
*osb
)
1017 unsigned long flags
;
1019 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1020 __lockres_clear_pending(lockres
, generation
, osb
);
1021 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1024 static unsigned int lockres_set_pending(struct ocfs2_lock_res
*lockres
)
1026 assert_spin_locked(&lockres
->l_lock
);
1027 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
));
1029 lockres_or_flags(lockres
, OCFS2_LOCK_PENDING
);
1031 return lockres
->l_pending_gen
;
1035 static void ocfs2_blocking_ast(void *opaque
, int level
)
1037 struct ocfs2_lock_res
*lockres
= opaque
;
1038 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
1039 int needs_downconvert
;
1040 unsigned long flags
;
1042 BUG_ON(level
<= DLM_LOCK_NL
);
1044 mlog(0, "BAST fired for lockres %s, blocking %d, level %d type %s\n",
1045 lockres
->l_name
, level
, lockres
->l_level
,
1046 ocfs2_lock_type_string(lockres
->l_type
));
1049 * We can skip the bast for locks which don't enable caching -
1050 * they'll be dropped at the earliest possible time anyway.
1052 if (lockres
->l_flags
& OCFS2_LOCK_NOCACHE
)
1055 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1056 needs_downconvert
= ocfs2_generic_handle_bast(lockres
, level
);
1057 if (needs_downconvert
)
1058 ocfs2_schedule_blocked_lock(osb
, lockres
);
1059 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1061 wake_up(&lockres
->l_event
);
1063 ocfs2_wake_downconvert_thread(osb
);
1066 static void ocfs2_locking_ast(void *opaque
)
1068 struct ocfs2_lock_res
*lockres
= opaque
;
1069 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
1070 unsigned long flags
;
1073 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1075 status
= ocfs2_dlm_lock_status(&lockres
->l_lksb
);
1077 if (status
== -EAGAIN
) {
1078 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
1083 mlog(ML_ERROR
, "lockres %s: lksb status value of %d!\n",
1084 lockres
->l_name
, status
);
1085 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1089 switch(lockres
->l_action
) {
1090 case OCFS2_AST_ATTACH
:
1091 ocfs2_generic_handle_attach_action(lockres
);
1092 lockres_clear_flags(lockres
, OCFS2_LOCK_LOCAL
);
1094 case OCFS2_AST_CONVERT
:
1095 ocfs2_generic_handle_convert_action(lockres
);
1097 case OCFS2_AST_DOWNCONVERT
:
1098 ocfs2_generic_handle_downconvert_action(lockres
);
1101 mlog(ML_ERROR
, "lockres %s: ast fired with invalid action: %u "
1102 "lockres flags = 0x%lx, unlock action: %u\n",
1103 lockres
->l_name
, lockres
->l_action
, lockres
->l_flags
,
1104 lockres
->l_unlock_action
);
1108 /* set it to something invalid so if we get called again we
1110 lockres
->l_action
= OCFS2_AST_INVALID
;
1112 /* Did we try to cancel this lock? Clear that state */
1113 if (lockres
->l_unlock_action
== OCFS2_UNLOCK_CANCEL_CONVERT
)
1114 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
1117 * We may have beaten the locking functions here. We certainly
1118 * know that dlm_lock() has been called :-)
1119 * Because we can't have two lock calls in flight at once, we
1120 * can use lockres->l_pending_gen.
1122 __lockres_clear_pending(lockres
, lockres
->l_pending_gen
, osb
);
1124 wake_up(&lockres
->l_event
);
1125 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1128 static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res
*lockres
,
1131 unsigned long flags
;
1134 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1135 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
1137 lockres
->l_action
= OCFS2_AST_INVALID
;
1139 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
1140 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1142 wake_up(&lockres
->l_event
);
1146 /* Note: If we detect another process working on the lock (i.e.,
1147 * OCFS2_LOCK_BUSY), we'll bail out returning 0. It's up to the caller
1148 * to do the right thing in that case.
1150 static int ocfs2_lock_create(struct ocfs2_super
*osb
,
1151 struct ocfs2_lock_res
*lockres
,
1156 unsigned long flags
;
1161 mlog(0, "lock %s, level = %d, flags = %u\n", lockres
->l_name
, level
,
1164 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1165 if ((lockres
->l_flags
& OCFS2_LOCK_ATTACHED
) ||
1166 (lockres
->l_flags
& OCFS2_LOCK_BUSY
)) {
1167 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1171 lockres
->l_action
= OCFS2_AST_ATTACH
;
1172 lockres
->l_requested
= level
;
1173 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1174 gen
= lockres_set_pending(lockres
);
1175 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1177 ret
= ocfs2_dlm_lock(osb
->cconn
,
1182 OCFS2_LOCK_ID_MAX_LEN
- 1,
1184 lockres_clear_pending(lockres
, gen
, osb
);
1186 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
1187 ocfs2_recover_from_dlm_error(lockres
, 1);
1190 mlog(0, "lock %s, return from ocfs2_dlm_lock\n", lockres
->l_name
);
1197 static inline int ocfs2_check_wait_flag(struct ocfs2_lock_res
*lockres
,
1200 unsigned long flags
;
1203 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1204 ret
= lockres
->l_flags
& flag
;
1205 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1210 static inline void ocfs2_wait_on_busy_lock(struct ocfs2_lock_res
*lockres
)
1213 wait_event(lockres
->l_event
,
1214 !ocfs2_check_wait_flag(lockres
, OCFS2_LOCK_BUSY
));
1217 static inline void ocfs2_wait_on_refreshing_lock(struct ocfs2_lock_res
*lockres
)
1220 wait_event(lockres
->l_event
,
1221 !ocfs2_check_wait_flag(lockres
, OCFS2_LOCK_REFRESHING
));
1224 /* predict what lock level we'll be dropping down to on behalf
1225 * of another node, and return true if the currently wanted
1226 * level will be compatible with it. */
1227 static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res
*lockres
,
1230 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
1232 return wanted
<= ocfs2_highest_compat_lock_level(lockres
->l_blocking
);
1235 static void ocfs2_init_mask_waiter(struct ocfs2_mask_waiter
*mw
)
1237 INIT_LIST_HEAD(&mw
->mw_item
);
1238 init_completion(&mw
->mw_complete
);
1239 ocfs2_init_start_time(mw
);
1242 static int ocfs2_wait_for_mask(struct ocfs2_mask_waiter
*mw
)
1244 wait_for_completion(&mw
->mw_complete
);
1245 /* Re-arm the completion in case we want to wait on it again */
1246 INIT_COMPLETION(mw
->mw_complete
);
1247 return mw
->mw_status
;
1250 static void lockres_add_mask_waiter(struct ocfs2_lock_res
*lockres
,
1251 struct ocfs2_mask_waiter
*mw
,
1255 BUG_ON(!list_empty(&mw
->mw_item
));
1257 assert_spin_locked(&lockres
->l_lock
);
1259 list_add_tail(&mw
->mw_item
, &lockres
->l_mask_waiters
);
1264 /* returns 0 if the mw that was removed was already satisfied, -EBUSY
1265 * if the mask still hadn't reached its goal */
1266 static int lockres_remove_mask_waiter(struct ocfs2_lock_res
*lockres
,
1267 struct ocfs2_mask_waiter
*mw
)
1269 unsigned long flags
;
1272 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1273 if (!list_empty(&mw
->mw_item
)) {
1274 if ((lockres
->l_flags
& mw
->mw_mask
) != mw
->mw_goal
)
1277 list_del_init(&mw
->mw_item
);
1278 init_completion(&mw
->mw_complete
);
1280 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1286 static int ocfs2_wait_for_mask_interruptible(struct ocfs2_mask_waiter
*mw
,
1287 struct ocfs2_lock_res
*lockres
)
1291 ret
= wait_for_completion_interruptible(&mw
->mw_complete
);
1293 lockres_remove_mask_waiter(lockres
, mw
);
1295 ret
= mw
->mw_status
;
1296 /* Re-arm the completion in case we want to wait on it again */
1297 INIT_COMPLETION(mw
->mw_complete
);
1301 static int __ocfs2_cluster_lock(struct ocfs2_super
*osb
,
1302 struct ocfs2_lock_res
*lockres
,
1307 unsigned long caller_ip
)
1309 struct ocfs2_mask_waiter mw
;
1310 int wait
, catch_signals
= !(osb
->s_mount_opt
& OCFS2_MOUNT_NOINTR
);
1311 int ret
= 0; /* gcc doesn't realize wait = 1 guarantees ret is set */
1312 unsigned long flags
;
1314 int noqueue_attempted
= 0;
1318 ocfs2_init_mask_waiter(&mw
);
1320 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
)
1321 lkm_flags
|= DLM_LKF_VALBLK
;
1326 if (catch_signals
&& signal_pending(current
)) {
1331 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1333 mlog_bug_on_msg(lockres
->l_flags
& OCFS2_LOCK_FREEING
,
1334 "Cluster lock called on freeing lockres %s! flags "
1335 "0x%lx\n", lockres
->l_name
, lockres
->l_flags
);
1337 /* We only compare against the currently granted level
1338 * here. If the lock is blocked waiting on a downconvert,
1339 * we'll get caught below. */
1340 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
&&
1341 level
> lockres
->l_level
) {
1342 /* is someone sitting in dlm_lock? If so, wait on
1344 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1349 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
&&
1350 !ocfs2_may_continue_on_blocked_lock(lockres
, level
)) {
1351 /* is the lock is currently blocked on behalf of
1353 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BLOCKED
, 0);
1358 if (level
> lockres
->l_level
) {
1359 if (noqueue_attempted
> 0) {
1363 if (lkm_flags
& DLM_LKF_NOQUEUE
)
1364 noqueue_attempted
= 1;
1366 if (lockres
->l_action
!= OCFS2_AST_INVALID
)
1367 mlog(ML_ERROR
, "lockres %s has action %u pending\n",
1368 lockres
->l_name
, lockres
->l_action
);
1370 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
1371 lockres
->l_action
= OCFS2_AST_ATTACH
;
1372 lkm_flags
&= ~DLM_LKF_CONVERT
;
1374 lockres
->l_action
= OCFS2_AST_CONVERT
;
1375 lkm_flags
|= DLM_LKF_CONVERT
;
1378 lockres
->l_requested
= level
;
1379 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1380 gen
= lockres_set_pending(lockres
);
1381 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1383 BUG_ON(level
== DLM_LOCK_IV
);
1384 BUG_ON(level
== DLM_LOCK_NL
);
1386 mlog(0, "lock %s, convert from %d to level = %d\n",
1387 lockres
->l_name
, lockres
->l_level
, level
);
1389 /* call dlm_lock to upgrade lock now */
1390 ret
= ocfs2_dlm_lock(osb
->cconn
,
1395 OCFS2_LOCK_ID_MAX_LEN
- 1,
1397 lockres_clear_pending(lockres
, gen
, osb
);
1399 if (!(lkm_flags
& DLM_LKF_NOQUEUE
) ||
1401 ocfs2_log_dlm_error("ocfs2_dlm_lock",
1404 ocfs2_recover_from_dlm_error(lockres
, 1);
1408 mlog(0, "lock %s, successful return from ocfs2_dlm_lock\n",
1411 /* At this point we've gone inside the dlm and need to
1412 * complete our work regardless. */
1415 /* wait for busy to clear and carry on */
1419 /* Ok, if we get here then we're good to go. */
1420 ocfs2_inc_holders(lockres
, level
);
1424 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1427 * This is helping work around a lock inversion between the page lock
1428 * and dlm locks. One path holds the page lock while calling aops
1429 * which block acquiring dlm locks. The voting thread holds dlm
1430 * locks while acquiring page locks while down converting data locks.
1431 * This block is helping an aop path notice the inversion and back
1432 * off to unlock its page lock before trying the dlm lock again.
1434 if (wait
&& arg_flags
& OCFS2_LOCK_NONBLOCK
&&
1435 mw
.mw_mask
& (OCFS2_LOCK_BUSY
|OCFS2_LOCK_BLOCKED
)) {
1437 if (lockres_remove_mask_waiter(lockres
, &mw
))
1443 ret
= ocfs2_wait_for_mask(&mw
);
1448 ocfs2_update_lock_stats(lockres
, level
, &mw
, ret
);
1450 #ifdef CONFIG_DEBUG_LOCK_ALLOC
1451 if (!ret
&& lockres
->l_lockdep_map
.key
!= NULL
) {
1452 if (level
== DLM_LOCK_PR
)
1453 rwsem_acquire_read(&lockres
->l_lockdep_map
, l_subclass
,
1454 !!(arg_flags
& OCFS2_META_LOCK_NOQUEUE
),
1457 rwsem_acquire(&lockres
->l_lockdep_map
, l_subclass
,
1458 !!(arg_flags
& OCFS2_META_LOCK_NOQUEUE
),
1466 static inline int ocfs2_cluster_lock(struct ocfs2_super
*osb
,
1467 struct ocfs2_lock_res
*lockres
,
1472 return __ocfs2_cluster_lock(osb
, lockres
, level
, lkm_flags
, arg_flags
,
1477 static void __ocfs2_cluster_unlock(struct ocfs2_super
*osb
,
1478 struct ocfs2_lock_res
*lockres
,
1480 unsigned long caller_ip
)
1482 unsigned long flags
;
1485 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1486 ocfs2_dec_holders(lockres
, level
);
1487 ocfs2_downconvert_on_unlock(osb
, lockres
);
1488 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1489 #ifdef CONFIG_DEBUG_LOCK_ALLOC
1490 if (lockres
->l_lockdep_map
.key
!= NULL
)
1491 rwsem_release(&lockres
->l_lockdep_map
, 1, caller_ip
);
1496 static int ocfs2_create_new_lock(struct ocfs2_super
*osb
,
1497 struct ocfs2_lock_res
*lockres
,
1501 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1502 unsigned long flags
;
1503 u32 lkm_flags
= local
? DLM_LKF_LOCAL
: 0;
1505 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1506 BUG_ON(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
);
1507 lockres_or_flags(lockres
, OCFS2_LOCK_LOCAL
);
1508 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1510 return ocfs2_lock_create(osb
, lockres
, level
, lkm_flags
);
1513 /* Grants us an EX lock on the data and metadata resources, skipping
1514 * the normal cluster directory lookup. Use this ONLY on newly created
1515 * inodes which other nodes can't possibly see, and which haven't been
1516 * hashed in the inode hash yet. This can give us a good performance
1517 * increase as it'll skip the network broadcast normally associated
1518 * with creating a new lock resource. */
1519 int ocfs2_create_new_inode_locks(struct inode
*inode
)
1522 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1525 BUG_ON(!ocfs2_inode_is_new(inode
));
1529 mlog(0, "Inode %llu\n", (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1531 /* NOTE: That we don't increment any of the holder counts, nor
1532 * do we add anything to a journal handle. Since this is
1533 * supposed to be a new inode which the cluster doesn't know
1534 * about yet, there is no need to. As far as the LVB handling
1535 * is concerned, this is basically like acquiring an EX lock
1536 * on a resource which has an invalid one -- we'll set it
1537 * valid when we release the EX. */
1539 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_rw_lockres
, 1, 1);
1546 * We don't want to use DLM_LKF_LOCAL on a meta data lock as they
1547 * don't use a generation in their lock names.
1549 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_inode_lockres
, 1, 0);
1555 ret
= ocfs2_create_new_lock(osb
, &OCFS2_I(inode
)->ip_open_lockres
, 0, 0);
1566 int ocfs2_rw_lock(struct inode
*inode
, int write
)
1569 struct ocfs2_lock_res
*lockres
;
1570 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1576 mlog(0, "inode %llu take %s RW lock\n",
1577 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1578 write
? "EXMODE" : "PRMODE");
1580 if (ocfs2_mount_local(osb
)) {
1585 lockres
= &OCFS2_I(inode
)->ip_rw_lockres
;
1587 level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1589 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
, level
, 0,
1598 void ocfs2_rw_unlock(struct inode
*inode
, int write
)
1600 int level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1601 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_rw_lockres
;
1602 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1606 mlog(0, "inode %llu drop %s RW lock\n",
1607 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1608 write
? "EXMODE" : "PRMODE");
1610 if (!ocfs2_mount_local(osb
))
1611 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
, level
);
1617 * ocfs2_open_lock always get PR mode lock.
1619 int ocfs2_open_lock(struct inode
*inode
)
1622 struct ocfs2_lock_res
*lockres
;
1623 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1629 mlog(0, "inode %llu take PRMODE open lock\n",
1630 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1632 if (ocfs2_mount_local(osb
))
1635 lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1637 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
,
1647 int ocfs2_try_open_lock(struct inode
*inode
, int write
)
1649 int status
= 0, level
;
1650 struct ocfs2_lock_res
*lockres
;
1651 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1657 mlog(0, "inode %llu try to take %s open lock\n",
1658 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1659 write
? "EXMODE" : "PRMODE");
1661 if (ocfs2_mount_local(osb
))
1664 lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1666 level
= write
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1669 * The file system may already holding a PRMODE/EXMODE open lock.
1670 * Since we pass DLM_LKF_NOQUEUE, the request won't block waiting on
1671 * other nodes and the -EAGAIN will indicate to the caller that
1672 * this inode is still in use.
1674 status
= ocfs2_cluster_lock(OCFS2_SB(inode
->i_sb
), lockres
,
1675 level
, DLM_LKF_NOQUEUE
, 0);
1683 * ocfs2_open_unlock unlock PR and EX mode open locks.
1685 void ocfs2_open_unlock(struct inode
*inode
)
1687 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_open_lockres
;
1688 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1692 mlog(0, "inode %llu drop open lock\n",
1693 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1695 if (ocfs2_mount_local(osb
))
1698 if(lockres
->l_ro_holders
)
1699 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
,
1701 if(lockres
->l_ex_holders
)
1702 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
,
1709 static int ocfs2_flock_handle_signal(struct ocfs2_lock_res
*lockres
,
1713 struct ocfs2_super
*osb
= ocfs2_get_lockres_osb(lockres
);
1714 unsigned long flags
;
1715 struct ocfs2_mask_waiter mw
;
1717 ocfs2_init_mask_waiter(&mw
);
1720 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1721 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
1722 ret
= ocfs2_prepare_cancel_convert(osb
, lockres
);
1724 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1725 ret
= ocfs2_cancel_convert(osb
, lockres
);
1732 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1733 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1735 ocfs2_wait_for_mask(&mw
);
1741 * We may still have gotten the lock, in which case there's no
1742 * point to restarting the syscall.
1744 if (lockres
->l_level
== level
)
1747 mlog(0, "Cancel returning %d. flags: 0x%lx, level: %d, act: %d\n", ret
,
1748 lockres
->l_flags
, lockres
->l_level
, lockres
->l_action
);
1750 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1757 * ocfs2_file_lock() and ocfs2_file_unlock() map to a single pair of
1758 * flock() calls. The locking approach this requires is sufficiently
1759 * different from all other cluster lock types that we implement a
1760 * seperate path to the "low-level" dlm calls. In particular:
1762 * - No optimization of lock levels is done - we take at exactly
1763 * what's been requested.
1765 * - No lock caching is employed. We immediately downconvert to
1766 * no-lock at unlock time. This also means flock locks never go on
1767 * the blocking list).
1769 * - Since userspace can trivially deadlock itself with flock, we make
1770 * sure to allow cancellation of a misbehaving applications flock()
1773 * - Access to any flock lockres doesn't require concurrency, so we
1774 * can simplify the code by requiring the caller to guarantee
1775 * serialization of dlmglue flock calls.
1777 int ocfs2_file_lock(struct file
*file
, int ex
, int trylock
)
1779 int ret
, level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
1780 unsigned int lkm_flags
= trylock
? DLM_LKF_NOQUEUE
: 0;
1781 unsigned long flags
;
1782 struct ocfs2_file_private
*fp
= file
->private_data
;
1783 struct ocfs2_lock_res
*lockres
= &fp
->fp_flock
;
1784 struct ocfs2_super
*osb
= OCFS2_SB(file
->f_mapping
->host
->i_sb
);
1785 struct ocfs2_mask_waiter mw
;
1787 ocfs2_init_mask_waiter(&mw
);
1789 if ((lockres
->l_flags
& OCFS2_LOCK_BUSY
) ||
1790 (lockres
->l_level
> DLM_LOCK_NL
)) {
1792 "File lock \"%s\" has busy or locked state: flags: 0x%lx, "
1793 "level: %u\n", lockres
->l_name
, lockres
->l_flags
,
1798 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1799 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
1800 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1801 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1804 * Get the lock at NLMODE to start - that way we
1805 * can cancel the upconvert request if need be.
1807 ret
= ocfs2_lock_create(osb
, lockres
, DLM_LOCK_NL
, 0);
1813 ret
= ocfs2_wait_for_mask(&mw
);
1818 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1821 lockres
->l_action
= OCFS2_AST_CONVERT
;
1822 lkm_flags
|= DLM_LKF_CONVERT
;
1823 lockres
->l_requested
= level
;
1824 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
1826 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1827 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1829 ret
= ocfs2_dlm_lock(osb
->cconn
, level
, &lockres
->l_lksb
, lkm_flags
,
1830 lockres
->l_name
, OCFS2_LOCK_ID_MAX_LEN
- 1,
1833 if (!trylock
|| (ret
!= -EAGAIN
)) {
1834 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
1838 ocfs2_recover_from_dlm_error(lockres
, 1);
1839 lockres_remove_mask_waiter(lockres
, &mw
);
1843 ret
= ocfs2_wait_for_mask_interruptible(&mw
, lockres
);
1844 if (ret
== -ERESTARTSYS
) {
1846 * Userspace can cause deadlock itself with
1847 * flock(). Current behavior locally is to allow the
1848 * deadlock, but abort the system call if a signal is
1849 * received. We follow this example, otherwise a
1850 * poorly written program could sit in kernel until
1853 * Handling this is a bit more complicated for Ocfs2
1854 * though. We can't exit this function with an
1855 * outstanding lock request, so a cancel convert is
1856 * required. We intentionally overwrite 'ret' - if the
1857 * cancel fails and the lock was granted, it's easier
1858 * to just bubble sucess back up to the user.
1860 ret
= ocfs2_flock_handle_signal(lockres
, level
);
1861 } else if (!ret
&& (level
> lockres
->l_level
)) {
1862 /* Trylock failed asynchronously */
1869 mlog(0, "Lock: \"%s\" ex: %d, trylock: %d, returns: %d\n",
1870 lockres
->l_name
, ex
, trylock
, ret
);
1874 void ocfs2_file_unlock(struct file
*file
)
1878 unsigned long flags
;
1879 struct ocfs2_file_private
*fp
= file
->private_data
;
1880 struct ocfs2_lock_res
*lockres
= &fp
->fp_flock
;
1881 struct ocfs2_super
*osb
= OCFS2_SB(file
->f_mapping
->host
->i_sb
);
1882 struct ocfs2_mask_waiter mw
;
1884 ocfs2_init_mask_waiter(&mw
);
1886 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
))
1889 if (lockres
->l_level
== DLM_LOCK_NL
)
1892 mlog(0, "Unlock: \"%s\" flags: 0x%lx, level: %d, act: %d\n",
1893 lockres
->l_name
, lockres
->l_flags
, lockres
->l_level
,
1896 spin_lock_irqsave(&lockres
->l_lock
, flags
);
1898 * Fake a blocking ast for the downconvert code.
1900 lockres_or_flags(lockres
, OCFS2_LOCK_BLOCKED
);
1901 lockres
->l_blocking
= DLM_LOCK_EX
;
1903 gen
= ocfs2_prepare_downconvert(lockres
, DLM_LOCK_NL
);
1904 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_BUSY
, 0);
1905 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
1907 ret
= ocfs2_downconvert_lock(osb
, lockres
, DLM_LOCK_NL
, 0, gen
);
1913 ret
= ocfs2_wait_for_mask(&mw
);
1918 static void ocfs2_downconvert_on_unlock(struct ocfs2_super
*osb
,
1919 struct ocfs2_lock_res
*lockres
)
1925 /* If we know that another node is waiting on our lock, kick
1926 * the downconvert thread * pre-emptively when we reach a release
1928 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
) {
1929 switch(lockres
->l_blocking
) {
1931 if (!lockres
->l_ex_holders
&& !lockres
->l_ro_holders
)
1935 if (!lockres
->l_ex_holders
)
1944 ocfs2_wake_downconvert_thread(osb
);
1949 #define OCFS2_SEC_BITS 34
1950 #define OCFS2_SEC_SHIFT (64 - 34)
1951 #define OCFS2_NSEC_MASK ((1ULL << OCFS2_SEC_SHIFT) - 1)
1953 /* LVB only has room for 64 bits of time here so we pack it for
1955 static u64
ocfs2_pack_timespec(struct timespec
*spec
)
1958 u64 sec
= spec
->tv_sec
;
1959 u32 nsec
= spec
->tv_nsec
;
1961 res
= (sec
<< OCFS2_SEC_SHIFT
) | (nsec
& OCFS2_NSEC_MASK
);
1966 /* Call this with the lockres locked. I am reasonably sure we don't
1967 * need ip_lock in this function as anyone who would be changing those
1968 * values is supposed to be blocked in ocfs2_inode_lock right now. */
1969 static void __ocfs2_stuff_meta_lvb(struct inode
*inode
)
1971 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1972 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
1973 struct ocfs2_meta_lvb
*lvb
;
1977 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
1980 * Invalidate the LVB of a deleted inode - this way other
1981 * nodes are forced to go to disk and discover the new inode
1984 if (oi
->ip_flags
& OCFS2_INODE_DELETED
) {
1985 lvb
->lvb_version
= 0;
1989 lvb
->lvb_version
= OCFS2_LVB_VERSION
;
1990 lvb
->lvb_isize
= cpu_to_be64(i_size_read(inode
));
1991 lvb
->lvb_iclusters
= cpu_to_be32(oi
->ip_clusters
);
1992 lvb
->lvb_iuid
= cpu_to_be32(inode
->i_uid
);
1993 lvb
->lvb_igid
= cpu_to_be32(inode
->i_gid
);
1994 lvb
->lvb_imode
= cpu_to_be16(inode
->i_mode
);
1995 lvb
->lvb_inlink
= cpu_to_be16(inode
->i_nlink
);
1996 lvb
->lvb_iatime_packed
=
1997 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_atime
));
1998 lvb
->lvb_ictime_packed
=
1999 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_ctime
));
2000 lvb
->lvb_imtime_packed
=
2001 cpu_to_be64(ocfs2_pack_timespec(&inode
->i_mtime
));
2002 lvb
->lvb_iattr
= cpu_to_be32(oi
->ip_attr
);
2003 lvb
->lvb_idynfeatures
= cpu_to_be16(oi
->ip_dyn_features
);
2004 lvb
->lvb_igeneration
= cpu_to_be32(inode
->i_generation
);
2007 mlog_meta_lvb(0, lockres
);
2012 static void ocfs2_unpack_timespec(struct timespec
*spec
,
2015 spec
->tv_sec
= packed_time
>> OCFS2_SEC_SHIFT
;
2016 spec
->tv_nsec
= packed_time
& OCFS2_NSEC_MASK
;
2019 static void ocfs2_refresh_inode_from_lvb(struct inode
*inode
)
2021 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
2022 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
2023 struct ocfs2_meta_lvb
*lvb
;
2027 mlog_meta_lvb(0, lockres
);
2029 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2031 /* We're safe here without the lockres lock... */
2032 spin_lock(&oi
->ip_lock
);
2033 oi
->ip_clusters
= be32_to_cpu(lvb
->lvb_iclusters
);
2034 i_size_write(inode
, be64_to_cpu(lvb
->lvb_isize
));
2036 oi
->ip_attr
= be32_to_cpu(lvb
->lvb_iattr
);
2037 oi
->ip_dyn_features
= be16_to_cpu(lvb
->lvb_idynfeatures
);
2038 ocfs2_set_inode_flags(inode
);
2040 /* fast-symlinks are a special case */
2041 if (S_ISLNK(inode
->i_mode
) && !oi
->ip_clusters
)
2042 inode
->i_blocks
= 0;
2044 inode
->i_blocks
= ocfs2_inode_sector_count(inode
);
2046 inode
->i_uid
= be32_to_cpu(lvb
->lvb_iuid
);
2047 inode
->i_gid
= be32_to_cpu(lvb
->lvb_igid
);
2048 inode
->i_mode
= be16_to_cpu(lvb
->lvb_imode
);
2049 inode
->i_nlink
= be16_to_cpu(lvb
->lvb_inlink
);
2050 ocfs2_unpack_timespec(&inode
->i_atime
,
2051 be64_to_cpu(lvb
->lvb_iatime_packed
));
2052 ocfs2_unpack_timespec(&inode
->i_mtime
,
2053 be64_to_cpu(lvb
->lvb_imtime_packed
));
2054 ocfs2_unpack_timespec(&inode
->i_ctime
,
2055 be64_to_cpu(lvb
->lvb_ictime_packed
));
2056 spin_unlock(&oi
->ip_lock
);
2061 static inline int ocfs2_meta_lvb_is_trustable(struct inode
*inode
,
2062 struct ocfs2_lock_res
*lockres
)
2064 struct ocfs2_meta_lvb
*lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2066 if (ocfs2_dlm_lvb_valid(&lockres
->l_lksb
)
2067 && lvb
->lvb_version
== OCFS2_LVB_VERSION
2068 && be32_to_cpu(lvb
->lvb_igeneration
) == inode
->i_generation
)
2073 /* Determine whether a lock resource needs to be refreshed, and
2074 * arbitrate who gets to refresh it.
2076 * 0 means no refresh needed.
2078 * > 0 means you need to refresh this and you MUST call
2079 * ocfs2_complete_lock_res_refresh afterwards. */
2080 static int ocfs2_should_refresh_lock_res(struct ocfs2_lock_res
*lockres
)
2082 unsigned long flags
;
2088 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2089 if (!(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
)) {
2090 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2094 if (lockres
->l_flags
& OCFS2_LOCK_REFRESHING
) {
2095 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2097 ocfs2_wait_on_refreshing_lock(lockres
);
2101 /* Ok, I'll be the one to refresh this lock. */
2102 lockres_or_flags(lockres
, OCFS2_LOCK_REFRESHING
);
2103 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2111 /* If status is non zero, I'll mark it as not being in refresh
2112 * anymroe, but i won't clear the needs refresh flag. */
2113 static inline void ocfs2_complete_lock_res_refresh(struct ocfs2_lock_res
*lockres
,
2116 unsigned long flags
;
2119 spin_lock_irqsave(&lockres
->l_lock
, flags
);
2120 lockres_clear_flags(lockres
, OCFS2_LOCK_REFRESHING
);
2122 lockres_clear_flags(lockres
, OCFS2_LOCK_NEEDS_REFRESH
);
2123 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
2125 wake_up(&lockres
->l_event
);
2130 /* may or may not return a bh if it went to disk. */
2131 static int ocfs2_inode_lock_update(struct inode
*inode
,
2132 struct buffer_head
**bh
)
2135 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
2136 struct ocfs2_lock_res
*lockres
= &oi
->ip_inode_lockres
;
2137 struct ocfs2_dinode
*fe
;
2138 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2142 if (ocfs2_mount_local(osb
))
2145 spin_lock(&oi
->ip_lock
);
2146 if (oi
->ip_flags
& OCFS2_INODE_DELETED
) {
2147 mlog(0, "Orphaned inode %llu was deleted while we "
2148 "were waiting on a lock. ip_flags = 0x%x\n",
2149 (unsigned long long)oi
->ip_blkno
, oi
->ip_flags
);
2150 spin_unlock(&oi
->ip_lock
);
2154 spin_unlock(&oi
->ip_lock
);
2156 if (!ocfs2_should_refresh_lock_res(lockres
))
2159 /* This will discard any caching information we might have had
2160 * for the inode metadata. */
2161 ocfs2_metadata_cache_purge(INODE_CACHE(inode
));
2163 ocfs2_extent_map_trunc(inode
, 0);
2165 if (ocfs2_meta_lvb_is_trustable(inode
, lockres
)) {
2166 mlog(0, "Trusting LVB on inode %llu\n",
2167 (unsigned long long)oi
->ip_blkno
);
2168 ocfs2_refresh_inode_from_lvb(inode
);
2170 /* Boo, we have to go to disk. */
2171 /* read bh, cast, ocfs2_refresh_inode */
2172 status
= ocfs2_read_inode_block(inode
, bh
);
2177 fe
= (struct ocfs2_dinode
*) (*bh
)->b_data
;
2179 /* This is a good chance to make sure we're not
2180 * locking an invalid object. ocfs2_read_inode_block()
2181 * already checked that the inode block is sane.
2183 * We bug on a stale inode here because we checked
2184 * above whether it was wiped from disk. The wiping
2185 * node provides a guarantee that we receive that
2186 * message and can mark the inode before dropping any
2187 * locks associated with it. */
2188 mlog_bug_on_msg(inode
->i_generation
!=
2189 le32_to_cpu(fe
->i_generation
),
2190 "Invalid dinode %llu disk generation: %u "
2191 "inode->i_generation: %u\n",
2192 (unsigned long long)oi
->ip_blkno
,
2193 le32_to_cpu(fe
->i_generation
),
2194 inode
->i_generation
);
2195 mlog_bug_on_msg(le64_to_cpu(fe
->i_dtime
) ||
2196 !(fe
->i_flags
& cpu_to_le32(OCFS2_VALID_FL
)),
2197 "Stale dinode %llu dtime: %llu flags: 0x%x\n",
2198 (unsigned long long)oi
->ip_blkno
,
2199 (unsigned long long)le64_to_cpu(fe
->i_dtime
),
2200 le32_to_cpu(fe
->i_flags
));
2202 ocfs2_refresh_inode(inode
, fe
);
2203 ocfs2_track_lock_refresh(lockres
);
2208 ocfs2_complete_lock_res_refresh(lockres
, status
);
2214 static int ocfs2_assign_bh(struct inode
*inode
,
2215 struct buffer_head
**ret_bh
,
2216 struct buffer_head
*passed_bh
)
2221 /* Ok, the update went to disk for us, use the
2223 *ret_bh
= passed_bh
;
2229 status
= ocfs2_read_inode_block(inode
, ret_bh
);
2237 * returns < 0 error if the callback will never be called, otherwise
2238 * the result of the lock will be communicated via the callback.
2240 int ocfs2_inode_lock_full_nested(struct inode
*inode
,
2241 struct buffer_head
**ret_bh
,
2246 int status
, level
, acquired
;
2248 struct ocfs2_lock_res
*lockres
= NULL
;
2249 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2250 struct buffer_head
*local_bh
= NULL
;
2256 mlog(0, "inode %llu, take %s META lock\n",
2257 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
2258 ex
? "EXMODE" : "PRMODE");
2262 /* We'll allow faking a readonly metadata lock for
2264 if (ocfs2_is_hard_readonly(osb
)) {
2270 if (ocfs2_mount_local(osb
))
2273 if (!(arg_flags
& OCFS2_META_LOCK_RECOVERY
))
2274 ocfs2_wait_for_recovery(osb
);
2276 lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2277 level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2279 if (arg_flags
& OCFS2_META_LOCK_NOQUEUE
)
2280 dlm_flags
|= DLM_LKF_NOQUEUE
;
2282 status
= __ocfs2_cluster_lock(osb
, lockres
, level
, dlm_flags
,
2283 arg_flags
, subclass
, _RET_IP_
);
2285 if (status
!= -EAGAIN
&& status
!= -EIOCBRETRY
)
2290 /* Notify the error cleanup path to drop the cluster lock. */
2293 /* We wait twice because a node may have died while we were in
2294 * the lower dlm layers. The second time though, we've
2295 * committed to owning this lock so we don't allow signals to
2296 * abort the operation. */
2297 if (!(arg_flags
& OCFS2_META_LOCK_RECOVERY
))
2298 ocfs2_wait_for_recovery(osb
);
2302 * We only see this flag if we're being called from
2303 * ocfs2_read_locked_inode(). It means we're locking an inode
2304 * which hasn't been populated yet, so clear the refresh flag
2305 * and let the caller handle it.
2307 if (inode
->i_state
& I_NEW
) {
2310 ocfs2_complete_lock_res_refresh(lockres
, 0);
2314 /* This is fun. The caller may want a bh back, or it may
2315 * not. ocfs2_inode_lock_update definitely wants one in, but
2316 * may or may not read one, depending on what's in the
2317 * LVB. The result of all of this is that we've *only* gone to
2318 * disk if we have to, so the complexity is worthwhile. */
2319 status
= ocfs2_inode_lock_update(inode
, &local_bh
);
2321 if (status
!= -ENOENT
)
2327 status
= ocfs2_assign_bh(inode
, ret_bh
, local_bh
);
2336 if (ret_bh
&& (*ret_bh
)) {
2341 ocfs2_inode_unlock(inode
, ex
);
2352 * This is working around a lock inversion between tasks acquiring DLM
2353 * locks while holding a page lock and the downconvert thread which
2354 * blocks dlm lock acquiry while acquiring page locks.
2356 * ** These _with_page variantes are only intended to be called from aop
2357 * methods that hold page locks and return a very specific *positive* error
2358 * code that aop methods pass up to the VFS -- test for errors with != 0. **
2360 * The DLM is called such that it returns -EAGAIN if it would have
2361 * blocked waiting for the downconvert thread. In that case we unlock
2362 * our page so the downconvert thread can make progress. Once we've
2363 * done this we have to return AOP_TRUNCATED_PAGE so the aop method
2364 * that called us can bubble that back up into the VFS who will then
2365 * immediately retry the aop call.
2367 * We do a blocking lock and immediate unlock before returning, though, so that
2368 * the lock has a great chance of being cached on this node by the time the VFS
2369 * calls back to retry the aop. This has a potential to livelock as nodes
2370 * ping locks back and forth, but that's a risk we're willing to take to avoid
2371 * the lock inversion simply.
2373 int ocfs2_inode_lock_with_page(struct inode
*inode
,
2374 struct buffer_head
**ret_bh
,
2380 ret
= ocfs2_inode_lock_full(inode
, ret_bh
, ex
, OCFS2_LOCK_NONBLOCK
);
2381 if (ret
== -EAGAIN
) {
2383 if (ocfs2_inode_lock(inode
, ret_bh
, ex
) == 0)
2384 ocfs2_inode_unlock(inode
, ex
);
2385 ret
= AOP_TRUNCATED_PAGE
;
2391 int ocfs2_inode_lock_atime(struct inode
*inode
,
2392 struct vfsmount
*vfsmnt
,
2398 ret
= ocfs2_inode_lock(inode
, NULL
, 0);
2405 * If we should update atime, we will get EX lock,
2406 * otherwise we just get PR lock.
2408 if (ocfs2_should_update_atime(inode
, vfsmnt
)) {
2409 struct buffer_head
*bh
= NULL
;
2411 ocfs2_inode_unlock(inode
, 0);
2412 ret
= ocfs2_inode_lock(inode
, &bh
, 1);
2418 if (ocfs2_should_update_atime(inode
, vfsmnt
))
2419 ocfs2_update_inode_atime(inode
, bh
);
2429 void ocfs2_inode_unlock(struct inode
*inode
,
2432 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2433 struct ocfs2_lock_res
*lockres
= &OCFS2_I(inode
)->ip_inode_lockres
;
2434 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2438 mlog(0, "inode %llu drop %s META lock\n",
2439 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
2440 ex
? "EXMODE" : "PRMODE");
2442 if (!ocfs2_is_hard_readonly(OCFS2_SB(inode
->i_sb
)) &&
2443 !ocfs2_mount_local(osb
))
2444 ocfs2_cluster_unlock(OCFS2_SB(inode
->i_sb
), lockres
, level
);
2449 int ocfs2_orphan_scan_lock(struct ocfs2_super
*osb
, u32
*seqno
)
2451 struct ocfs2_lock_res
*lockres
;
2452 struct ocfs2_orphan_scan_lvb
*lvb
;
2455 if (ocfs2_is_hard_readonly(osb
))
2458 if (ocfs2_mount_local(osb
))
2461 lockres
= &osb
->osb_orphan_scan
.os_lockres
;
2462 status
= ocfs2_cluster_lock(osb
, lockres
, DLM_LOCK_EX
, 0, 0);
2466 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2467 if (ocfs2_dlm_lvb_valid(&lockres
->l_lksb
) &&
2468 lvb
->lvb_version
== OCFS2_ORPHAN_LVB_VERSION
)
2469 *seqno
= be32_to_cpu(lvb
->lvb_os_seqno
);
2471 *seqno
= osb
->osb_orphan_scan
.os_seqno
+ 1;
2476 void ocfs2_orphan_scan_unlock(struct ocfs2_super
*osb
, u32 seqno
)
2478 struct ocfs2_lock_res
*lockres
;
2479 struct ocfs2_orphan_scan_lvb
*lvb
;
2481 if (!ocfs2_is_hard_readonly(osb
) && !ocfs2_mount_local(osb
)) {
2482 lockres
= &osb
->osb_orphan_scan
.os_lockres
;
2483 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2484 lvb
->lvb_version
= OCFS2_ORPHAN_LVB_VERSION
;
2485 lvb
->lvb_os_seqno
= cpu_to_be32(seqno
);
2486 ocfs2_cluster_unlock(osb
, lockres
, DLM_LOCK_EX
);
2490 int ocfs2_super_lock(struct ocfs2_super
*osb
,
2494 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2495 struct ocfs2_lock_res
*lockres
= &osb
->osb_super_lockres
;
2499 if (ocfs2_is_hard_readonly(osb
))
2502 if (ocfs2_mount_local(osb
))
2505 status
= ocfs2_cluster_lock(osb
, lockres
, level
, 0, 0);
2511 /* The super block lock path is really in the best position to
2512 * know when resources covered by the lock need to be
2513 * refreshed, so we do it here. Of course, making sense of
2514 * everything is up to the caller :) */
2515 status
= ocfs2_should_refresh_lock_res(lockres
);
2521 status
= ocfs2_refresh_slot_info(osb
);
2523 ocfs2_complete_lock_res_refresh(lockres
, status
);
2527 ocfs2_track_lock_refresh(lockres
);
2534 void ocfs2_super_unlock(struct ocfs2_super
*osb
,
2537 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2538 struct ocfs2_lock_res
*lockres
= &osb
->osb_super_lockres
;
2540 if (!ocfs2_mount_local(osb
))
2541 ocfs2_cluster_unlock(osb
, lockres
, level
);
2544 int ocfs2_rename_lock(struct ocfs2_super
*osb
)
2547 struct ocfs2_lock_res
*lockres
= &osb
->osb_rename_lockres
;
2549 if (ocfs2_is_hard_readonly(osb
))
2552 if (ocfs2_mount_local(osb
))
2555 status
= ocfs2_cluster_lock(osb
, lockres
, DLM_LOCK_EX
, 0, 0);
2562 void ocfs2_rename_unlock(struct ocfs2_super
*osb
)
2564 struct ocfs2_lock_res
*lockres
= &osb
->osb_rename_lockres
;
2566 if (!ocfs2_mount_local(osb
))
2567 ocfs2_cluster_unlock(osb
, lockres
, DLM_LOCK_EX
);
2570 int ocfs2_nfs_sync_lock(struct ocfs2_super
*osb
, int ex
)
2573 struct ocfs2_lock_res
*lockres
= &osb
->osb_nfs_sync_lockres
;
2575 if (ocfs2_is_hard_readonly(osb
))
2578 if (ocfs2_mount_local(osb
))
2581 status
= ocfs2_cluster_lock(osb
, lockres
, ex
? LKM_EXMODE
: LKM_PRMODE
,
2584 mlog(ML_ERROR
, "lock on nfs sync lock failed %d\n", status
);
2589 void ocfs2_nfs_sync_unlock(struct ocfs2_super
*osb
, int ex
)
2591 struct ocfs2_lock_res
*lockres
= &osb
->osb_nfs_sync_lockres
;
2593 if (!ocfs2_mount_local(osb
))
2594 ocfs2_cluster_unlock(osb
, lockres
,
2595 ex
? LKM_EXMODE
: LKM_PRMODE
);
2598 int ocfs2_dentry_lock(struct dentry
*dentry
, int ex
)
2601 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2602 struct ocfs2_dentry_lock
*dl
= dentry
->d_fsdata
;
2603 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
2607 if (ocfs2_is_hard_readonly(osb
))
2610 if (ocfs2_mount_local(osb
))
2613 ret
= ocfs2_cluster_lock(osb
, &dl
->dl_lockres
, level
, 0, 0);
2620 void ocfs2_dentry_unlock(struct dentry
*dentry
, int ex
)
2622 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
2623 struct ocfs2_dentry_lock
*dl
= dentry
->d_fsdata
;
2624 struct ocfs2_super
*osb
= OCFS2_SB(dentry
->d_sb
);
2626 if (!ocfs2_mount_local(osb
))
2627 ocfs2_cluster_unlock(osb
, &dl
->dl_lockres
, level
);
2630 /* Reference counting of the dlm debug structure. We want this because
2631 * open references on the debug inodes can live on after a mount, so
2632 * we can't rely on the ocfs2_super to always exist. */
2633 static void ocfs2_dlm_debug_free(struct kref
*kref
)
2635 struct ocfs2_dlm_debug
*dlm_debug
;
2637 dlm_debug
= container_of(kref
, struct ocfs2_dlm_debug
, d_refcnt
);
2642 void ocfs2_put_dlm_debug(struct ocfs2_dlm_debug
*dlm_debug
)
2645 kref_put(&dlm_debug
->d_refcnt
, ocfs2_dlm_debug_free
);
2648 static void ocfs2_get_dlm_debug(struct ocfs2_dlm_debug
*debug
)
2650 kref_get(&debug
->d_refcnt
);
2653 struct ocfs2_dlm_debug
*ocfs2_new_dlm_debug(void)
2655 struct ocfs2_dlm_debug
*dlm_debug
;
2657 dlm_debug
= kmalloc(sizeof(struct ocfs2_dlm_debug
), GFP_KERNEL
);
2659 mlog_errno(-ENOMEM
);
2663 kref_init(&dlm_debug
->d_refcnt
);
2664 INIT_LIST_HEAD(&dlm_debug
->d_lockres_tracking
);
2665 dlm_debug
->d_locking_state
= NULL
;
2670 /* Access to this is arbitrated for us via seq_file->sem. */
2671 struct ocfs2_dlm_seq_priv
{
2672 struct ocfs2_dlm_debug
*p_dlm_debug
;
2673 struct ocfs2_lock_res p_iter_res
;
2674 struct ocfs2_lock_res p_tmp_res
;
2677 static struct ocfs2_lock_res
*ocfs2_dlm_next_res(struct ocfs2_lock_res
*start
,
2678 struct ocfs2_dlm_seq_priv
*priv
)
2680 struct ocfs2_lock_res
*iter
, *ret
= NULL
;
2681 struct ocfs2_dlm_debug
*dlm_debug
= priv
->p_dlm_debug
;
2683 assert_spin_locked(&ocfs2_dlm_tracking_lock
);
2685 list_for_each_entry(iter
, &start
->l_debug_list
, l_debug_list
) {
2686 /* discover the head of the list */
2687 if (&iter
->l_debug_list
== &dlm_debug
->d_lockres_tracking
) {
2688 mlog(0, "End of list found, %p\n", ret
);
2692 /* We track our "dummy" iteration lockres' by a NULL
2694 if (iter
->l_ops
!= NULL
) {
2703 static void *ocfs2_dlm_seq_start(struct seq_file
*m
, loff_t
*pos
)
2705 struct ocfs2_dlm_seq_priv
*priv
= m
->private;
2706 struct ocfs2_lock_res
*iter
;
2708 spin_lock(&ocfs2_dlm_tracking_lock
);
2709 iter
= ocfs2_dlm_next_res(&priv
->p_iter_res
, priv
);
2711 /* Since lockres' have the lifetime of their container
2712 * (which can be inodes, ocfs2_supers, etc) we want to
2713 * copy this out to a temporary lockres while still
2714 * under the spinlock. Obviously after this we can't
2715 * trust any pointers on the copy returned, but that's
2716 * ok as the information we want isn't typically held
2718 priv
->p_tmp_res
= *iter
;
2719 iter
= &priv
->p_tmp_res
;
2721 spin_unlock(&ocfs2_dlm_tracking_lock
);
2726 static void ocfs2_dlm_seq_stop(struct seq_file
*m
, void *v
)
2730 static void *ocfs2_dlm_seq_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2732 struct ocfs2_dlm_seq_priv
*priv
= m
->private;
2733 struct ocfs2_lock_res
*iter
= v
;
2734 struct ocfs2_lock_res
*dummy
= &priv
->p_iter_res
;
2736 spin_lock(&ocfs2_dlm_tracking_lock
);
2737 iter
= ocfs2_dlm_next_res(iter
, priv
);
2738 list_del_init(&dummy
->l_debug_list
);
2740 list_add(&dummy
->l_debug_list
, &iter
->l_debug_list
);
2741 priv
->p_tmp_res
= *iter
;
2742 iter
= &priv
->p_tmp_res
;
2744 spin_unlock(&ocfs2_dlm_tracking_lock
);
2749 /* So that debugfs.ocfs2 can determine which format is being used */
2750 #define OCFS2_DLM_DEBUG_STR_VERSION 2
2751 static int ocfs2_dlm_seq_show(struct seq_file
*m
, void *v
)
2755 struct ocfs2_lock_res
*lockres
= v
;
2760 seq_printf(m
, "0x%x\t", OCFS2_DLM_DEBUG_STR_VERSION
);
2762 if (lockres
->l_type
== OCFS2_LOCK_TYPE_DENTRY
)
2763 seq_printf(m
, "%.*s%08x\t", OCFS2_DENTRY_LOCK_INO_START
- 1,
2765 (unsigned int)ocfs2_get_dentry_lock_ino(lockres
));
2767 seq_printf(m
, "%.*s\t", OCFS2_LOCK_ID_MAX_LEN
, lockres
->l_name
);
2769 seq_printf(m
, "%d\t"
2780 lockres
->l_unlock_action
,
2781 lockres
->l_ro_holders
,
2782 lockres
->l_ex_holders
,
2783 lockres
->l_requested
,
2784 lockres
->l_blocking
);
2786 /* Dump the raw LVB */
2787 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
2788 for(i
= 0; i
< DLM_LVB_LEN
; i
++)
2789 seq_printf(m
, "0x%x\t", lvb
[i
]);
2791 #ifdef CONFIG_OCFS2_FS_STATS
2792 # define lock_num_prmode(_l) (_l)->l_lock_num_prmode
2793 # define lock_num_exmode(_l) (_l)->l_lock_num_exmode
2794 # define lock_num_prmode_failed(_l) (_l)->l_lock_num_prmode_failed
2795 # define lock_num_exmode_failed(_l) (_l)->l_lock_num_exmode_failed
2796 # define lock_total_prmode(_l) (_l)->l_lock_total_prmode
2797 # define lock_total_exmode(_l) (_l)->l_lock_total_exmode
2798 # define lock_max_prmode(_l) (_l)->l_lock_max_prmode
2799 # define lock_max_exmode(_l) (_l)->l_lock_max_exmode
2800 # define lock_refresh(_l) (_l)->l_lock_refresh
2802 # define lock_num_prmode(_l) (0ULL)
2803 # define lock_num_exmode(_l) (0ULL)
2804 # define lock_num_prmode_failed(_l) (0)
2805 # define lock_num_exmode_failed(_l) (0)
2806 # define lock_total_prmode(_l) (0ULL)
2807 # define lock_total_exmode(_l) (0ULL)
2808 # define lock_max_prmode(_l) (0)
2809 # define lock_max_exmode(_l) (0)
2810 # define lock_refresh(_l) (0)
2812 /* The following seq_print was added in version 2 of this output */
2813 seq_printf(m
, "%llu\t"
2822 lock_num_prmode(lockres
),
2823 lock_num_exmode(lockres
),
2824 lock_num_prmode_failed(lockres
),
2825 lock_num_exmode_failed(lockres
),
2826 lock_total_prmode(lockres
),
2827 lock_total_exmode(lockres
),
2828 lock_max_prmode(lockres
),
2829 lock_max_exmode(lockres
),
2830 lock_refresh(lockres
));
2833 seq_printf(m
, "\n");
2837 static const struct seq_operations ocfs2_dlm_seq_ops
= {
2838 .start
= ocfs2_dlm_seq_start
,
2839 .stop
= ocfs2_dlm_seq_stop
,
2840 .next
= ocfs2_dlm_seq_next
,
2841 .show
= ocfs2_dlm_seq_show
,
2844 static int ocfs2_dlm_debug_release(struct inode
*inode
, struct file
*file
)
2846 struct seq_file
*seq
= (struct seq_file
*) file
->private_data
;
2847 struct ocfs2_dlm_seq_priv
*priv
= seq
->private;
2848 struct ocfs2_lock_res
*res
= &priv
->p_iter_res
;
2850 ocfs2_remove_lockres_tracking(res
);
2851 ocfs2_put_dlm_debug(priv
->p_dlm_debug
);
2852 return seq_release_private(inode
, file
);
2855 static int ocfs2_dlm_debug_open(struct inode
*inode
, struct file
*file
)
2858 struct ocfs2_dlm_seq_priv
*priv
;
2859 struct seq_file
*seq
;
2860 struct ocfs2_super
*osb
;
2862 priv
= kzalloc(sizeof(struct ocfs2_dlm_seq_priv
), GFP_KERNEL
);
2868 osb
= inode
->i_private
;
2869 ocfs2_get_dlm_debug(osb
->osb_dlm_debug
);
2870 priv
->p_dlm_debug
= osb
->osb_dlm_debug
;
2871 INIT_LIST_HEAD(&priv
->p_iter_res
.l_debug_list
);
2873 ret
= seq_open(file
, &ocfs2_dlm_seq_ops
);
2880 seq
= (struct seq_file
*) file
->private_data
;
2881 seq
->private = priv
;
2883 ocfs2_add_lockres_tracking(&priv
->p_iter_res
,
2890 static const struct file_operations ocfs2_dlm_debug_fops
= {
2891 .open
= ocfs2_dlm_debug_open
,
2892 .release
= ocfs2_dlm_debug_release
,
2894 .llseek
= seq_lseek
,
2897 static int ocfs2_dlm_init_debug(struct ocfs2_super
*osb
)
2900 struct ocfs2_dlm_debug
*dlm_debug
= osb
->osb_dlm_debug
;
2902 dlm_debug
->d_locking_state
= debugfs_create_file("locking_state",
2904 osb
->osb_debug_root
,
2906 &ocfs2_dlm_debug_fops
);
2907 if (!dlm_debug
->d_locking_state
) {
2910 "Unable to create locking state debugfs file.\n");
2914 ocfs2_get_dlm_debug(dlm_debug
);
2919 static void ocfs2_dlm_shutdown_debug(struct ocfs2_super
*osb
)
2921 struct ocfs2_dlm_debug
*dlm_debug
= osb
->osb_dlm_debug
;
2924 debugfs_remove(dlm_debug
->d_locking_state
);
2925 ocfs2_put_dlm_debug(dlm_debug
);
2929 int ocfs2_dlm_init(struct ocfs2_super
*osb
)
2932 struct ocfs2_cluster_connection
*conn
= NULL
;
2936 if (ocfs2_mount_local(osb
)) {
2941 status
= ocfs2_dlm_init_debug(osb
);
2947 /* launch downconvert thread */
2948 osb
->dc_task
= kthread_run(ocfs2_downconvert_thread
, osb
, "ocfs2dc");
2949 if (IS_ERR(osb
->dc_task
)) {
2950 status
= PTR_ERR(osb
->dc_task
);
2951 osb
->dc_task
= NULL
;
2956 /* for now, uuid == domain */
2957 status
= ocfs2_cluster_connect(osb
->osb_cluster_stack
,
2959 strlen(osb
->uuid_str
),
2960 ocfs2_do_node_down
, osb
,
2967 status
= ocfs2_cluster_this_node(&osb
->node_num
);
2971 "could not find this host's node number\n");
2972 ocfs2_cluster_disconnect(conn
, 0);
2977 ocfs2_super_lock_res_init(&osb
->osb_super_lockres
, osb
);
2978 ocfs2_rename_lock_res_init(&osb
->osb_rename_lockres
, osb
);
2979 ocfs2_nfs_sync_lock_res_init(&osb
->osb_nfs_sync_lockres
, osb
);
2980 ocfs2_orphan_scan_lock_res_init(&osb
->osb_orphan_scan
.os_lockres
, osb
);
2987 ocfs2_dlm_shutdown_debug(osb
);
2989 kthread_stop(osb
->dc_task
);
2996 void ocfs2_dlm_shutdown(struct ocfs2_super
*osb
,
3001 ocfs2_drop_osb_locks(osb
);
3004 * Now that we have dropped all locks and ocfs2_dismount_volume()
3005 * has disabled recovery, the DLM won't be talking to us. It's
3006 * safe to tear things down before disconnecting the cluster.
3010 kthread_stop(osb
->dc_task
);
3011 osb
->dc_task
= NULL
;
3014 ocfs2_lock_res_free(&osb
->osb_super_lockres
);
3015 ocfs2_lock_res_free(&osb
->osb_rename_lockres
);
3016 ocfs2_lock_res_free(&osb
->osb_nfs_sync_lockres
);
3017 ocfs2_lock_res_free(&osb
->osb_orphan_scan
.os_lockres
);
3019 ocfs2_cluster_disconnect(osb
->cconn
, hangup_pending
);
3022 ocfs2_dlm_shutdown_debug(osb
);
3027 static void ocfs2_unlock_ast(void *opaque
, int error
)
3029 struct ocfs2_lock_res
*lockres
= opaque
;
3030 unsigned long flags
;
3034 mlog(0, "UNLOCK AST called on lock %s, action = %d\n", lockres
->l_name
,
3035 lockres
->l_unlock_action
);
3037 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3039 mlog(ML_ERROR
, "Dlm passes error %d for lock %s, "
3040 "unlock_action %d\n", error
, lockres
->l_name
,
3041 lockres
->l_unlock_action
);
3042 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3047 switch(lockres
->l_unlock_action
) {
3048 case OCFS2_UNLOCK_CANCEL_CONVERT
:
3049 mlog(0, "Cancel convert success for %s\n", lockres
->l_name
);
3050 lockres
->l_action
= OCFS2_AST_INVALID
;
3051 /* Downconvert thread may have requeued this lock, we
3052 * need to wake it. */
3053 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
3054 ocfs2_wake_downconvert_thread(ocfs2_get_lockres_osb(lockres
));
3056 case OCFS2_UNLOCK_DROP_LOCK
:
3057 lockres
->l_level
= DLM_LOCK_IV
;
3063 lockres_clear_flags(lockres
, OCFS2_LOCK_BUSY
);
3064 lockres
->l_unlock_action
= OCFS2_UNLOCK_INVALID
;
3065 wake_up(&lockres
->l_event
);
3066 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3071 static int ocfs2_drop_lock(struct ocfs2_super
*osb
,
3072 struct ocfs2_lock_res
*lockres
)
3075 unsigned long flags
;
3078 /* We didn't get anywhere near actually using this lockres. */
3079 if (!(lockres
->l_flags
& OCFS2_LOCK_INITIALIZED
))
3082 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
)
3083 lkm_flags
|= DLM_LKF_VALBLK
;
3085 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3087 mlog_bug_on_msg(!(lockres
->l_flags
& OCFS2_LOCK_FREEING
),
3088 "lockres %s, flags 0x%lx\n",
3089 lockres
->l_name
, lockres
->l_flags
);
3091 while (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
3092 mlog(0, "waiting on busy lock \"%s\": flags = %lx, action = "
3093 "%u, unlock_action = %u\n",
3094 lockres
->l_name
, lockres
->l_flags
, lockres
->l_action
,
3095 lockres
->l_unlock_action
);
3097 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3099 /* XXX: Today we just wait on any busy
3100 * locks... Perhaps we need to cancel converts in the
3102 ocfs2_wait_on_busy_lock(lockres
);
3104 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3107 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
) {
3108 if (lockres
->l_flags
& OCFS2_LOCK_ATTACHED
&&
3109 lockres
->l_level
== DLM_LOCK_EX
&&
3110 !(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
))
3111 lockres
->l_ops
->set_lvb(lockres
);
3114 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
)
3115 mlog(ML_ERROR
, "destroying busy lock: \"%s\"\n",
3117 if (lockres
->l_flags
& OCFS2_LOCK_BLOCKED
)
3118 mlog(0, "destroying blocked lock: \"%s\"\n", lockres
->l_name
);
3120 if (!(lockres
->l_flags
& OCFS2_LOCK_ATTACHED
)) {
3121 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3125 lockres_clear_flags(lockres
, OCFS2_LOCK_ATTACHED
);
3127 /* make sure we never get here while waiting for an ast to
3129 BUG_ON(lockres
->l_action
!= OCFS2_AST_INVALID
);
3131 /* is this necessary? */
3132 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
3133 lockres
->l_unlock_action
= OCFS2_UNLOCK_DROP_LOCK
;
3134 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3136 mlog(0, "lock %s\n", lockres
->l_name
);
3138 ret
= ocfs2_dlm_unlock(osb
->cconn
, &lockres
->l_lksb
, lkm_flags
,
3141 ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret
, lockres
);
3142 mlog(ML_ERROR
, "lockres flags: %lu\n", lockres
->l_flags
);
3143 ocfs2_dlm_dump_lksb(&lockres
->l_lksb
);
3146 mlog(0, "lock %s, successful return from ocfs2_dlm_unlock\n",
3149 ocfs2_wait_on_busy_lock(lockres
);
3155 /* Mark the lockres as being dropped. It will no longer be
3156 * queued if blocking, but we still may have to wait on it
3157 * being dequeued from the downconvert thread before we can consider
3160 * You can *not* attempt to call cluster_lock on this lockres anymore. */
3161 void ocfs2_mark_lockres_freeing(struct ocfs2_lock_res
*lockres
)
3164 struct ocfs2_mask_waiter mw
;
3165 unsigned long flags
;
3167 ocfs2_init_mask_waiter(&mw
);
3169 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3170 lockres
->l_flags
|= OCFS2_LOCK_FREEING
;
3171 while (lockres
->l_flags
& OCFS2_LOCK_QUEUED
) {
3172 lockres_add_mask_waiter(lockres
, &mw
, OCFS2_LOCK_QUEUED
, 0);
3173 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3175 mlog(0, "Waiting on lockres %s\n", lockres
->l_name
);
3177 status
= ocfs2_wait_for_mask(&mw
);
3181 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3183 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3186 void ocfs2_simple_drop_lockres(struct ocfs2_super
*osb
,
3187 struct ocfs2_lock_res
*lockres
)
3191 ocfs2_mark_lockres_freeing(lockres
);
3192 ret
= ocfs2_drop_lock(osb
, lockres
);
3197 static void ocfs2_drop_osb_locks(struct ocfs2_super
*osb
)
3199 ocfs2_simple_drop_lockres(osb
, &osb
->osb_super_lockres
);
3200 ocfs2_simple_drop_lockres(osb
, &osb
->osb_rename_lockres
);
3201 ocfs2_simple_drop_lockres(osb
, &osb
->osb_nfs_sync_lockres
);
3202 ocfs2_simple_drop_lockres(osb
, &osb
->osb_orphan_scan
.os_lockres
);
3205 int ocfs2_drop_inode_locks(struct inode
*inode
)
3211 /* No need to call ocfs2_mark_lockres_freeing here -
3212 * ocfs2_clear_inode has done it for us. */
3214 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
3215 &OCFS2_I(inode
)->ip_open_lockres
);
3221 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
3222 &OCFS2_I(inode
)->ip_inode_lockres
);
3225 if (err
< 0 && !status
)
3228 err
= ocfs2_drop_lock(OCFS2_SB(inode
->i_sb
),
3229 &OCFS2_I(inode
)->ip_rw_lockres
);
3232 if (err
< 0 && !status
)
3239 static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res
*lockres
,
3242 assert_spin_locked(&lockres
->l_lock
);
3244 BUG_ON(lockres
->l_blocking
<= DLM_LOCK_NL
);
3246 if (lockres
->l_level
<= new_level
) {
3247 mlog(ML_ERROR
, "lockres->l_level (%d) <= new_level (%d)\n",
3248 lockres
->l_level
, new_level
);
3252 mlog(0, "lock %s, new_level = %d, l_blocking = %d\n",
3253 lockres
->l_name
, new_level
, lockres
->l_blocking
);
3255 lockres
->l_action
= OCFS2_AST_DOWNCONVERT
;
3256 lockres
->l_requested
= new_level
;
3257 lockres_or_flags(lockres
, OCFS2_LOCK_BUSY
);
3258 return lockres_set_pending(lockres
);
3261 static int ocfs2_downconvert_lock(struct ocfs2_super
*osb
,
3262 struct ocfs2_lock_res
*lockres
,
3265 unsigned int generation
)
3268 u32 dlm_flags
= DLM_LKF_CONVERT
;
3273 dlm_flags
|= DLM_LKF_VALBLK
;
3275 ret
= ocfs2_dlm_lock(osb
->cconn
,
3280 OCFS2_LOCK_ID_MAX_LEN
- 1,
3282 lockres_clear_pending(lockres
, generation
, osb
);
3284 ocfs2_log_dlm_error("ocfs2_dlm_lock", ret
, lockres
);
3285 ocfs2_recover_from_dlm_error(lockres
, 1);
3295 /* returns 1 when the caller should unlock and call ocfs2_dlm_unlock */
3296 static int ocfs2_prepare_cancel_convert(struct ocfs2_super
*osb
,
3297 struct ocfs2_lock_res
*lockres
)
3299 assert_spin_locked(&lockres
->l_lock
);
3302 mlog(0, "lock %s\n", lockres
->l_name
);
3304 if (lockres
->l_unlock_action
== OCFS2_UNLOCK_CANCEL_CONVERT
) {
3305 /* If we're already trying to cancel a lock conversion
3306 * then just drop the spinlock and allow the caller to
3307 * requeue this lock. */
3309 mlog(0, "Lockres %s, skip convert\n", lockres
->l_name
);
3313 /* were we in a convert when we got the bast fire? */
3314 BUG_ON(lockres
->l_action
!= OCFS2_AST_CONVERT
&&
3315 lockres
->l_action
!= OCFS2_AST_DOWNCONVERT
);
3316 /* set things up for the unlockast to know to just
3317 * clear out the ast_action and unset busy, etc. */
3318 lockres
->l_unlock_action
= OCFS2_UNLOCK_CANCEL_CONVERT
;
3320 mlog_bug_on_msg(!(lockres
->l_flags
& OCFS2_LOCK_BUSY
),
3321 "lock %s, invalid flags: 0x%lx\n",
3322 lockres
->l_name
, lockres
->l_flags
);
3327 static int ocfs2_cancel_convert(struct ocfs2_super
*osb
,
3328 struct ocfs2_lock_res
*lockres
)
3333 mlog(0, "lock %s\n", lockres
->l_name
);
3335 ret
= ocfs2_dlm_unlock(osb
->cconn
, &lockres
->l_lksb
,
3336 DLM_LKF_CANCEL
, lockres
);
3338 ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret
, lockres
);
3339 ocfs2_recover_from_dlm_error(lockres
, 0);
3342 mlog(0, "lock %s return from ocfs2_dlm_unlock\n", lockres
->l_name
);
3348 static int ocfs2_unblock_lock(struct ocfs2_super
*osb
,
3349 struct ocfs2_lock_res
*lockres
,
3350 struct ocfs2_unblock_ctl
*ctl
)
3352 unsigned long flags
;
3361 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3363 BUG_ON(!(lockres
->l_flags
& OCFS2_LOCK_BLOCKED
));
3366 if (lockres
->l_flags
& OCFS2_LOCK_BUSY
) {
3368 * This is a *big* race. The OCFS2_LOCK_PENDING flag
3369 * exists entirely for one reason - another thread has set
3370 * OCFS2_LOCK_BUSY, but has *NOT* yet called dlm_lock().
3372 * If we do ocfs2_cancel_convert() before the other thread
3373 * calls dlm_lock(), our cancel will do nothing. We will
3374 * get no ast, and we will have no way of knowing the
3375 * cancel failed. Meanwhile, the other thread will call
3376 * into dlm_lock() and wait...forever.
3378 * Why forever? Because another node has asked for the
3379 * lock first; that's why we're here in unblock_lock().
3381 * The solution is OCFS2_LOCK_PENDING. When PENDING is
3382 * set, we just requeue the unblock. Only when the other
3383 * thread has called dlm_lock() and cleared PENDING will
3384 * we then cancel their request.
3386 * All callers of dlm_lock() must set OCFS2_DLM_PENDING
3387 * at the same time they set OCFS2_DLM_BUSY. They must
3388 * clear OCFS2_DLM_PENDING after dlm_lock() returns.
3390 if (lockres
->l_flags
& OCFS2_LOCK_PENDING
)
3394 ret
= ocfs2_prepare_cancel_convert(osb
, lockres
);
3395 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3397 ret
= ocfs2_cancel_convert(osb
, lockres
);
3404 /* if we're blocking an exclusive and we have *any* holders,
3406 if ((lockres
->l_blocking
== DLM_LOCK_EX
)
3407 && (lockres
->l_ex_holders
|| lockres
->l_ro_holders
))
3410 /* If it's a PR we're blocking, then only
3411 * requeue if we've got any EX holders */
3412 if (lockres
->l_blocking
== DLM_LOCK_PR
&&
3413 lockres
->l_ex_holders
)
3417 * Can we get a lock in this state if the holder counts are
3418 * zero? The meta data unblock code used to check this.
3420 if ((lockres
->l_ops
->flags
& LOCK_TYPE_REQUIRES_REFRESH
)
3421 && (lockres
->l_flags
& OCFS2_LOCK_REFRESHING
))
3424 new_level
= ocfs2_highest_compat_lock_level(lockres
->l_blocking
);
3426 if (lockres
->l_ops
->check_downconvert
3427 && !lockres
->l_ops
->check_downconvert(lockres
, new_level
))
3430 /* If we get here, then we know that there are no more
3431 * incompatible holders (and anyone asking for an incompatible
3432 * lock is blocked). We can now downconvert the lock */
3433 if (!lockres
->l_ops
->downconvert_worker
)
3436 /* Some lockres types want to do a bit of work before
3437 * downconverting a lock. Allow that here. The worker function
3438 * may sleep, so we save off a copy of what we're blocking as
3439 * it may change while we're not holding the spin lock. */
3440 blocking
= lockres
->l_blocking
;
3441 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3443 ctl
->unblock_action
= lockres
->l_ops
->downconvert_worker(lockres
, blocking
);
3445 if (ctl
->unblock_action
== UNBLOCK_STOP_POST
)
3448 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3449 if (blocking
!= lockres
->l_blocking
) {
3450 /* If this changed underneath us, then we can't drop
3458 if (lockres
->l_ops
->flags
& LOCK_TYPE_USES_LVB
) {
3459 if (lockres
->l_level
== DLM_LOCK_EX
)
3463 * We only set the lvb if the lock has been fully
3464 * refreshed - otherwise we risk setting stale
3465 * data. Otherwise, there's no need to actually clear
3466 * out the lvb here as it's value is still valid.
3468 if (set_lvb
&& !(lockres
->l_flags
& OCFS2_LOCK_NEEDS_REFRESH
))
3469 lockres
->l_ops
->set_lvb(lockres
);
3472 gen
= ocfs2_prepare_downconvert(lockres
, new_level
);
3473 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3474 ret
= ocfs2_downconvert_lock(osb
, lockres
, new_level
, set_lvb
,
3482 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3489 static int ocfs2_data_convert_worker(struct ocfs2_lock_res
*lockres
,
3492 struct inode
*inode
;
3493 struct address_space
*mapping
;
3495 inode
= ocfs2_lock_res_inode(lockres
);
3496 mapping
= inode
->i_mapping
;
3498 if (!S_ISREG(inode
->i_mode
))
3502 * We need this before the filemap_fdatawrite() so that it can
3503 * transfer the dirty bit from the PTE to the
3504 * page. Unfortunately this means that even for EX->PR
3505 * downconverts, we'll lose our mappings and have to build
3508 unmap_mapping_range(mapping
, 0, 0, 0);
3510 if (filemap_fdatawrite(mapping
)) {
3511 mlog(ML_ERROR
, "Could not sync inode %llu for downconvert!",
3512 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
3514 sync_mapping_buffers(mapping
);
3515 if (blocking
== DLM_LOCK_EX
) {
3516 truncate_inode_pages(mapping
, 0);
3518 /* We only need to wait on the I/O if we're not also
3519 * truncating pages because truncate_inode_pages waits
3520 * for us above. We don't truncate pages if we're
3521 * blocking anything < EXMODE because we want to keep
3522 * them around in that case. */
3523 filemap_fdatawait(mapping
);
3527 return UNBLOCK_CONTINUE
;
3530 static int ocfs2_ci_checkpointed(struct ocfs2_caching_info
*ci
,
3531 struct ocfs2_lock_res
*lockres
,
3534 int checkpointed
= ocfs2_ci_fully_checkpointed(ci
);
3536 BUG_ON(new_level
!= DLM_LOCK_NL
&& new_level
!= DLM_LOCK_PR
);
3537 BUG_ON(lockres
->l_level
!= DLM_LOCK_EX
&& !checkpointed
);
3542 ocfs2_start_checkpoint(OCFS2_SB(ocfs2_metadata_cache_get_super(ci
)));
3546 static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res
*lockres
,
3549 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
3551 return ocfs2_ci_checkpointed(INODE_CACHE(inode
), lockres
, new_level
);
3554 static void ocfs2_set_meta_lvb(struct ocfs2_lock_res
*lockres
)
3556 struct inode
*inode
= ocfs2_lock_res_inode(lockres
);
3558 __ocfs2_stuff_meta_lvb(inode
);
3562 * Does the final reference drop on our dentry lock. Right now this
3563 * happens in the downconvert thread, but we could choose to simplify the
3564 * dlmglue API and push these off to the ocfs2_wq in the future.
3566 static void ocfs2_dentry_post_unlock(struct ocfs2_super
*osb
,
3567 struct ocfs2_lock_res
*lockres
)
3569 struct ocfs2_dentry_lock
*dl
= ocfs2_lock_res_dl(lockres
);
3570 ocfs2_dentry_lock_put(osb
, dl
);
3574 * d_delete() matching dentries before the lock downconvert.
3576 * At this point, any process waiting to destroy the
3577 * dentry_lock due to last ref count is stopped by the
3578 * OCFS2_LOCK_QUEUED flag.
3580 * We have two potential problems
3582 * 1) If we do the last reference drop on our dentry_lock (via dput)
3583 * we'll wind up in ocfs2_release_dentry_lock(), waiting on
3584 * the downconvert to finish. Instead we take an elevated
3585 * reference and push the drop until after we've completed our
3586 * unblock processing.
3588 * 2) There might be another process with a final reference,
3589 * waiting on us to finish processing. If this is the case, we
3590 * detect it and exit out - there's no more dentries anyway.
3592 static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res
*lockres
,
3595 struct ocfs2_dentry_lock
*dl
= ocfs2_lock_res_dl(lockres
);
3596 struct ocfs2_inode_info
*oi
= OCFS2_I(dl
->dl_inode
);
3597 struct dentry
*dentry
;
3598 unsigned long flags
;
3602 * This node is blocking another node from getting a read
3603 * lock. This happens when we've renamed within a
3604 * directory. We've forced the other nodes to d_delete(), but
3605 * we never actually dropped our lock because it's still
3606 * valid. The downconvert code will retain a PR for this node,
3607 * so there's no further work to do.
3609 if (blocking
== DLM_LOCK_PR
)
3610 return UNBLOCK_CONTINUE
;
3613 * Mark this inode as potentially orphaned. The code in
3614 * ocfs2_delete_inode() will figure out whether it actually
3615 * needs to be freed or not.
3617 spin_lock(&oi
->ip_lock
);
3618 oi
->ip_flags
|= OCFS2_INODE_MAYBE_ORPHANED
;
3619 spin_unlock(&oi
->ip_lock
);
3622 * Yuck. We need to make sure however that the check of
3623 * OCFS2_LOCK_FREEING and the extra reference are atomic with
3624 * respect to a reference decrement or the setting of that
3627 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3628 spin_lock(&dentry_attach_lock
);
3629 if (!(lockres
->l_flags
& OCFS2_LOCK_FREEING
)
3634 spin_unlock(&dentry_attach_lock
);
3635 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3637 mlog(0, "extra_ref = %d\n", extra_ref
);
3640 * We have a process waiting on us in ocfs2_dentry_iput(),
3641 * which means we can't have any more outstanding
3642 * aliases. There's no need to do any more work.
3645 return UNBLOCK_CONTINUE
;
3647 spin_lock(&dentry_attach_lock
);
3649 dentry
= ocfs2_find_local_alias(dl
->dl_inode
,
3650 dl
->dl_parent_blkno
, 1);
3653 spin_unlock(&dentry_attach_lock
);
3655 mlog(0, "d_delete(%.*s);\n", dentry
->d_name
.len
,
3656 dentry
->d_name
.name
);
3659 * The following dcache calls may do an
3660 * iput(). Normally we don't want that from the
3661 * downconverting thread, but in this case it's ok
3662 * because the requesting node already has an
3663 * exclusive lock on the inode, so it can't be queued
3664 * for a downconvert.
3669 spin_lock(&dentry_attach_lock
);
3671 spin_unlock(&dentry_attach_lock
);
3674 * If we are the last holder of this dentry lock, there is no
3675 * reason to downconvert so skip straight to the unlock.
3677 if (dl
->dl_count
== 1)
3678 return UNBLOCK_STOP_POST
;
3680 return UNBLOCK_CONTINUE_POST
;
3683 static int ocfs2_check_refcount_downconvert(struct ocfs2_lock_res
*lockres
,
3686 struct ocfs2_refcount_tree
*tree
=
3687 ocfs2_lock_res_refcount_tree(lockres
);
3689 return ocfs2_ci_checkpointed(&tree
->rf_ci
, lockres
, new_level
);
3692 static int ocfs2_refcount_convert_worker(struct ocfs2_lock_res
*lockres
,
3695 struct ocfs2_refcount_tree
*tree
=
3696 ocfs2_lock_res_refcount_tree(lockres
);
3698 ocfs2_metadata_cache_purge(&tree
->rf_ci
);
3700 return UNBLOCK_CONTINUE
;
3703 static void ocfs2_set_qinfo_lvb(struct ocfs2_lock_res
*lockres
)
3705 struct ocfs2_qinfo_lvb
*lvb
;
3706 struct ocfs2_mem_dqinfo
*oinfo
= ocfs2_lock_res_qinfo(lockres
);
3707 struct mem_dqinfo
*info
= sb_dqinfo(oinfo
->dqi_gi
.dqi_sb
,
3708 oinfo
->dqi_gi
.dqi_type
);
3712 lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
3713 lvb
->lvb_version
= OCFS2_QINFO_LVB_VERSION
;
3714 lvb
->lvb_bgrace
= cpu_to_be32(info
->dqi_bgrace
);
3715 lvb
->lvb_igrace
= cpu_to_be32(info
->dqi_igrace
);
3716 lvb
->lvb_syncms
= cpu_to_be32(oinfo
->dqi_syncms
);
3717 lvb
->lvb_blocks
= cpu_to_be32(oinfo
->dqi_gi
.dqi_blocks
);
3718 lvb
->lvb_free_blk
= cpu_to_be32(oinfo
->dqi_gi
.dqi_free_blk
);
3719 lvb
->lvb_free_entry
= cpu_to_be32(oinfo
->dqi_gi
.dqi_free_entry
);
3724 void ocfs2_qinfo_unlock(struct ocfs2_mem_dqinfo
*oinfo
, int ex
)
3726 struct ocfs2_lock_res
*lockres
= &oinfo
->dqi_gqlock
;
3727 struct ocfs2_super
*osb
= OCFS2_SB(oinfo
->dqi_gi
.dqi_sb
);
3728 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
3731 if (!ocfs2_is_hard_readonly(osb
) && !ocfs2_mount_local(osb
))
3732 ocfs2_cluster_unlock(osb
, lockres
, level
);
3736 static int ocfs2_refresh_qinfo(struct ocfs2_mem_dqinfo
*oinfo
)
3738 struct mem_dqinfo
*info
= sb_dqinfo(oinfo
->dqi_gi
.dqi_sb
,
3739 oinfo
->dqi_gi
.dqi_type
);
3740 struct ocfs2_lock_res
*lockres
= &oinfo
->dqi_gqlock
;
3741 struct ocfs2_qinfo_lvb
*lvb
= ocfs2_dlm_lvb(&lockres
->l_lksb
);
3742 struct buffer_head
*bh
= NULL
;
3743 struct ocfs2_global_disk_dqinfo
*gdinfo
;
3746 if (ocfs2_dlm_lvb_valid(&lockres
->l_lksb
) &&
3747 lvb
->lvb_version
== OCFS2_QINFO_LVB_VERSION
) {
3748 info
->dqi_bgrace
= be32_to_cpu(lvb
->lvb_bgrace
);
3749 info
->dqi_igrace
= be32_to_cpu(lvb
->lvb_igrace
);
3750 oinfo
->dqi_syncms
= be32_to_cpu(lvb
->lvb_syncms
);
3751 oinfo
->dqi_gi
.dqi_blocks
= be32_to_cpu(lvb
->lvb_blocks
);
3752 oinfo
->dqi_gi
.dqi_free_blk
= be32_to_cpu(lvb
->lvb_free_blk
);
3753 oinfo
->dqi_gi
.dqi_free_entry
=
3754 be32_to_cpu(lvb
->lvb_free_entry
);
3756 status
= ocfs2_read_quota_block(oinfo
->dqi_gqinode
, 0, &bh
);
3761 gdinfo
= (struct ocfs2_global_disk_dqinfo
*)
3762 (bh
->b_data
+ OCFS2_GLOBAL_INFO_OFF
);
3763 info
->dqi_bgrace
= le32_to_cpu(gdinfo
->dqi_bgrace
);
3764 info
->dqi_igrace
= le32_to_cpu(gdinfo
->dqi_igrace
);
3765 oinfo
->dqi_syncms
= le32_to_cpu(gdinfo
->dqi_syncms
);
3766 oinfo
->dqi_gi
.dqi_blocks
= le32_to_cpu(gdinfo
->dqi_blocks
);
3767 oinfo
->dqi_gi
.dqi_free_blk
= le32_to_cpu(gdinfo
->dqi_free_blk
);
3768 oinfo
->dqi_gi
.dqi_free_entry
=
3769 le32_to_cpu(gdinfo
->dqi_free_entry
);
3771 ocfs2_track_lock_refresh(lockres
);
3778 /* Lock quota info, this function expects at least shared lock on the quota file
3779 * so that we can safely refresh quota info from disk. */
3780 int ocfs2_qinfo_lock(struct ocfs2_mem_dqinfo
*oinfo
, int ex
)
3782 struct ocfs2_lock_res
*lockres
= &oinfo
->dqi_gqlock
;
3783 struct ocfs2_super
*osb
= OCFS2_SB(oinfo
->dqi_gi
.dqi_sb
);
3784 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
3789 /* On RO devices, locking really isn't needed... */
3790 if (ocfs2_is_hard_readonly(osb
)) {
3795 if (ocfs2_mount_local(osb
))
3798 status
= ocfs2_cluster_lock(osb
, lockres
, level
, 0, 0);
3803 if (!ocfs2_should_refresh_lock_res(lockres
))
3805 /* OK, we have the lock but we need to refresh the quota info */
3806 status
= ocfs2_refresh_qinfo(oinfo
);
3808 ocfs2_qinfo_unlock(oinfo
, ex
);
3809 ocfs2_complete_lock_res_refresh(lockres
, status
);
3815 int ocfs2_refcount_lock(struct ocfs2_refcount_tree
*ref_tree
, int ex
)
3818 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
3819 struct ocfs2_lock_res
*lockres
= &ref_tree
->rf_lockres
;
3820 struct ocfs2_super
*osb
= lockres
->l_priv
;
3823 if (ocfs2_is_hard_readonly(osb
))
3826 if (ocfs2_mount_local(osb
))
3829 status
= ocfs2_cluster_lock(osb
, lockres
, level
, 0, 0);
3836 void ocfs2_refcount_unlock(struct ocfs2_refcount_tree
*ref_tree
, int ex
)
3838 int level
= ex
? DLM_LOCK_EX
: DLM_LOCK_PR
;
3839 struct ocfs2_lock_res
*lockres
= &ref_tree
->rf_lockres
;
3840 struct ocfs2_super
*osb
= lockres
->l_priv
;
3842 if (!ocfs2_mount_local(osb
))
3843 ocfs2_cluster_unlock(osb
, lockres
, level
);
3847 * This is the filesystem locking protocol. It provides the lock handling
3848 * hooks for the underlying DLM. It has a maximum version number.
3849 * The version number allows interoperability with systems running at
3850 * the same major number and an equal or smaller minor number.
3852 * Whenever the filesystem does new things with locks (adds or removes a
3853 * lock, orders them differently, does different things underneath a lock),
3854 * the version must be changed. The protocol is negotiated when joining
3855 * the dlm domain. A node may join the domain if its major version is
3856 * identical to all other nodes and its minor version is greater than
3857 * or equal to all other nodes. When its minor version is greater than
3858 * the other nodes, it will run at the minor version specified by the
3861 * If a locking change is made that will not be compatible with older
3862 * versions, the major number must be increased and the minor version set
3863 * to zero. If a change merely adds a behavior that can be disabled when
3864 * speaking to older versions, the minor version must be increased. If a
3865 * change adds a fully backwards compatible change (eg, LVB changes that
3866 * are just ignored by older versions), the version does not need to be
3869 static struct ocfs2_locking_protocol lproto
= {
3871 .pv_major
= OCFS2_LOCKING_PROTOCOL_MAJOR
,
3872 .pv_minor
= OCFS2_LOCKING_PROTOCOL_MINOR
,
3874 .lp_lock_ast
= ocfs2_locking_ast
,
3875 .lp_blocking_ast
= ocfs2_blocking_ast
,
3876 .lp_unlock_ast
= ocfs2_unlock_ast
,
3879 void ocfs2_set_locking_protocol(void)
3881 ocfs2_stack_glue_set_locking_protocol(&lproto
);
3885 static void ocfs2_process_blocked_lock(struct ocfs2_super
*osb
,
3886 struct ocfs2_lock_res
*lockres
)
3889 struct ocfs2_unblock_ctl ctl
= {0, 0,};
3890 unsigned long flags
;
3892 /* Our reference to the lockres in this function can be
3893 * considered valid until we remove the OCFS2_LOCK_QUEUED
3899 BUG_ON(!lockres
->l_ops
);
3901 mlog(0, "lockres %s blocked.\n", lockres
->l_name
);
3903 /* Detect whether a lock has been marked as going away while
3904 * the downconvert thread was processing other things. A lock can
3905 * still be marked with OCFS2_LOCK_FREEING after this check,
3906 * but short circuiting here will still save us some
3908 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3909 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
)
3911 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3913 status
= ocfs2_unblock_lock(osb
, lockres
, &ctl
);
3917 spin_lock_irqsave(&lockres
->l_lock
, flags
);
3919 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
|| !ctl
.requeue
) {
3920 lockres_clear_flags(lockres
, OCFS2_LOCK_QUEUED
);
3922 ocfs2_schedule_blocked_lock(osb
, lockres
);
3924 mlog(0, "lockres %s, requeue = %s.\n", lockres
->l_name
,
3925 ctl
.requeue
? "yes" : "no");
3926 spin_unlock_irqrestore(&lockres
->l_lock
, flags
);
3928 if (ctl
.unblock_action
!= UNBLOCK_CONTINUE
3929 && lockres
->l_ops
->post_unlock
)
3930 lockres
->l_ops
->post_unlock(osb
, lockres
);
3935 static void ocfs2_schedule_blocked_lock(struct ocfs2_super
*osb
,
3936 struct ocfs2_lock_res
*lockres
)
3940 assert_spin_locked(&lockres
->l_lock
);
3942 if (lockres
->l_flags
& OCFS2_LOCK_FREEING
) {
3943 /* Do not schedule a lock for downconvert when it's on
3944 * the way to destruction - any nodes wanting access
3945 * to the resource will get it soon. */
3946 mlog(0, "Lockres %s won't be scheduled: flags 0x%lx\n",
3947 lockres
->l_name
, lockres
->l_flags
);
3951 lockres_or_flags(lockres
, OCFS2_LOCK_QUEUED
);
3953 spin_lock(&osb
->dc_task_lock
);
3954 if (list_empty(&lockres
->l_blocked_list
)) {
3955 list_add_tail(&lockres
->l_blocked_list
,
3956 &osb
->blocked_lock_list
);
3957 osb
->blocked_lock_count
++;
3959 spin_unlock(&osb
->dc_task_lock
);
3964 static void ocfs2_downconvert_thread_do_work(struct ocfs2_super
*osb
)
3966 unsigned long processed
;
3967 struct ocfs2_lock_res
*lockres
;
3971 spin_lock(&osb
->dc_task_lock
);
3972 /* grab this early so we know to try again if a state change and
3973 * wake happens part-way through our work */
3974 osb
->dc_work_sequence
= osb
->dc_wake_sequence
;
3976 processed
= osb
->blocked_lock_count
;
3978 BUG_ON(list_empty(&osb
->blocked_lock_list
));
3980 lockres
= list_entry(osb
->blocked_lock_list
.next
,
3981 struct ocfs2_lock_res
, l_blocked_list
);
3982 list_del_init(&lockres
->l_blocked_list
);
3983 osb
->blocked_lock_count
--;
3984 spin_unlock(&osb
->dc_task_lock
);
3989 ocfs2_process_blocked_lock(osb
, lockres
);
3991 spin_lock(&osb
->dc_task_lock
);
3993 spin_unlock(&osb
->dc_task_lock
);
3998 static int ocfs2_downconvert_thread_lists_empty(struct ocfs2_super
*osb
)
4002 spin_lock(&osb
->dc_task_lock
);
4003 if (list_empty(&osb
->blocked_lock_list
))
4006 spin_unlock(&osb
->dc_task_lock
);
4010 static int ocfs2_downconvert_thread_should_wake(struct ocfs2_super
*osb
)
4012 int should_wake
= 0;
4014 spin_lock(&osb
->dc_task_lock
);
4015 if (osb
->dc_work_sequence
!= osb
->dc_wake_sequence
)
4017 spin_unlock(&osb
->dc_task_lock
);
4022 static int ocfs2_downconvert_thread(void *arg
)
4025 struct ocfs2_super
*osb
= arg
;
4027 /* only quit once we've been asked to stop and there is no more
4029 while (!(kthread_should_stop() &&
4030 ocfs2_downconvert_thread_lists_empty(osb
))) {
4032 wait_event_interruptible(osb
->dc_event
,
4033 ocfs2_downconvert_thread_should_wake(osb
) ||
4034 kthread_should_stop());
4036 mlog(0, "downconvert_thread: awoken\n");
4038 ocfs2_downconvert_thread_do_work(osb
);
4041 osb
->dc_task
= NULL
;
4045 void ocfs2_wake_downconvert_thread(struct ocfs2_super
*osb
)
4047 spin_lock(&osb
->dc_task_lock
);
4048 /* make sure the voting thread gets a swipe at whatever changes
4049 * the caller may have made to the voting state */
4050 osb
->dc_wake_sequence
++;
4051 spin_unlock(&osb
->dc_task_lock
);
4052 wake_up(&osb
->dc_event
);