1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Copyright (C) 2004 Oracle. All rights reserved.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public
19 * License along with this program; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 021110-1307, USA.
28 #include <linux/kref.h>
30 #define DLM_HB_NODE_DOWN_PRI (0xf000000)
31 #define DLM_HB_NODE_UP_PRI (0x8000000)
33 #define DLM_LOCKID_NAME_MAX 32
35 #define DLM_DOMAIN_NAME_MAX_LEN 255
36 #define DLM_LOCK_RES_OWNER_UNKNOWN O2NM_MAX_NODES
37 #define DLM_THREAD_SHUFFLE_INTERVAL 5 // flush everything every 5 passes
38 #define DLM_THREAD_MS 200 // flush at least every 200 ms
40 #define DLM_HASH_BITS 7
41 #define DLM_HASH_SIZE (1 << DLM_HASH_BITS)
42 #define DLM_HASH_MASK (DLM_HASH_SIZE - 1)
51 #define LKM_VALID_FLAGS (LKM_VALBLK | LKM_CONVERT | LKM_UNLOCK | \
52 LKM_CANCEL | LKM_INVVALBLK | LKM_FORCE | \
53 LKM_RECOVERY | LKM_LOCAL | LKM_NOQUEUE)
55 #define DLM_RECOVERY_LOCK_NAME "$RECOVERY"
56 #define DLM_RECOVERY_LOCK_NAME_LEN 9
58 static inline int dlm_is_recovery_lock(const char *lock_name
, int name_len
)
60 if (name_len
== DLM_RECOVERY_LOCK_NAME_LEN
&&
61 memcmp(lock_name
, DLM_RECOVERY_LOCK_NAME
, name_len
)==0)
66 #define DLM_RECO_STATE_ACTIVE 0x0001
68 struct dlm_recovery_ctxt
70 struct list_head resources
;
71 struct list_head received
;
72 struct list_head node_data
;
76 unsigned long node_map
[BITS_TO_LONGS(O2NM_MAX_NODES
)];
77 wait_queue_head_t event
;
89 struct list_head list
;
90 struct list_head
*resources
;
91 struct list_head dirty_list
;
92 struct list_head purge_list
;
93 struct list_head pending_asts
;
94 struct list_head pending_basts
;
95 unsigned int purge_count
;
102 wait_queue_head_t dlm_join_events
;
103 unsigned long live_nodes_map
[BITS_TO_LONGS(O2NM_MAX_NODES
)];
104 unsigned long domain_map
[BITS_TO_LONGS(O2NM_MAX_NODES
)];
105 unsigned long recovery_map
[BITS_TO_LONGS(O2NM_MAX_NODES
)];
106 struct dlm_recovery_ctxt reco
;
107 spinlock_t master_lock
;
108 struct list_head master_list
;
109 struct list_head mle_hb_events
;
111 /* these give a really vague idea of the system load */
112 atomic_t local_resources
;
113 atomic_t remote_resources
;
114 atomic_t unknown_resources
;
116 /* NOTE: Next three are protected by dlm_domain_lock */
117 struct kref dlm_refs
;
118 enum dlm_ctxt_state dlm_state
;
119 unsigned int num_joins
;
121 struct o2hb_callback_func dlm_hb_up
;
122 struct o2hb_callback_func dlm_hb_down
;
123 struct task_struct
*dlm_thread_task
;
124 struct task_struct
*dlm_reco_thread_task
;
125 wait_queue_head_t dlm_thread_wq
;
126 wait_queue_head_t dlm_reco_thread_wq
;
127 wait_queue_head_t ast_wq
;
128 wait_queue_head_t migration_wq
;
130 struct work_struct dispatched_work
;
131 struct list_head work_list
;
132 spinlock_t work_lock
;
133 struct list_head dlm_domain_handlers
;
134 struct list_head dlm_eviction_callbacks
;
137 /* these keventd work queue items are for less-frequently
138 * called functions that cannot be directly called from the
139 * net message handlers for some reason, usually because
140 * they need to send net messages of their own. */
141 void dlm_dispatch_work(void *data
);
143 struct dlm_lock_resource
;
144 struct dlm_work_item
;
146 typedef void (dlm_workfunc_t
)(struct dlm_work_item
*, void *);
148 struct dlm_request_all_locks_priv
154 struct dlm_mig_lockres_priv
156 struct dlm_lock_resource
*lockres
;
160 struct dlm_assert_master_priv
162 struct dlm_lock_resource
*lockres
;
165 unsigned ignore_higher
:1;
171 struct list_head list
;
172 dlm_workfunc_t
*func
;
173 struct dlm_ctxt
*dlm
;
176 struct dlm_request_all_locks_priv ral
;
177 struct dlm_mig_lockres_priv ml
;
178 struct dlm_assert_master_priv am
;
182 static inline void dlm_init_work_item(struct dlm_ctxt
*dlm
,
183 struct dlm_work_item
*i
,
184 dlm_workfunc_t
*f
, void *data
)
186 memset(i
, 0, sizeof(*i
));
188 INIT_LIST_HEAD(&i
->list
);
190 i
->dlm
= dlm
; /* must have already done a dlm_grab on this! */
195 static inline void __dlm_set_joining_node(struct dlm_ctxt
*dlm
,
198 assert_spin_locked(&dlm
->spinlock
);
200 dlm
->joining_node
= node
;
201 wake_up(&dlm
->dlm_join_events
);
204 #define DLM_LOCK_RES_UNINITED 0x00000001
205 #define DLM_LOCK_RES_RECOVERING 0x00000002
206 #define DLM_LOCK_RES_READY 0x00000004
207 #define DLM_LOCK_RES_DIRTY 0x00000008
208 #define DLM_LOCK_RES_IN_PROGRESS 0x00000010
209 #define DLM_LOCK_RES_MIGRATING 0x00000020
211 #define DLM_PURGE_INTERVAL_MS (8 * 1000)
213 struct dlm_lock_resource
215 /* WARNING: Please see the comment in dlm_init_lockres before
216 * adding fields here. */
217 struct list_head list
;
220 /* please keep these next 3 in this order
221 * some funcs want to iterate over all lists */
222 struct list_head granted
;
223 struct list_head converting
;
224 struct list_head blocked
;
226 struct list_head dirty
;
227 struct list_head recovering
; // dlm_recovery_ctxt.resources list
229 /* unused lock resources have their last_used stamped and are
230 * put on a list for the dlm thread to run. */
231 struct list_head purge
;
232 unsigned long last_used
;
234 unsigned migration_pending
:1;
235 atomic_t asts_reserved
;
237 wait_queue_head_t wq
;
238 u8 owner
; //node which owns the lock resource, or unknown
240 struct qstr lockname
;
241 char lvb
[DLM_LVB_LEN
];
244 struct dlm_migratable_lock
248 /* these 3 are just padding for the in-memory structure, but
249 * list and flags are actually used when sent over the wire */
251 u8 list
; // 0=granted, 1=converting, 2=blocked
262 struct dlm_migratable_lock ml
;
264 struct list_head list
;
265 struct list_head ast_list
;
266 struct list_head bast_list
;
267 struct dlm_lock_resource
*lockres
;
269 struct kref lock_refs
;
271 // ast and bast must be callable while holding a spinlock!
272 dlm_astlockfunc_t
*ast
;
273 dlm_bastlockfunc_t
*bast
;
275 struct dlm_lockstatus
*lksb
;
276 unsigned ast_pending
:1,
282 lksb_kernel_allocated
:1;
286 #define DLM_LKSB_UNUSED1 0x01
287 #define DLM_LKSB_PUT_LVB 0x02
288 #define DLM_LKSB_GET_LVB 0x04
289 #define DLM_LKSB_UNUSED2 0x08
290 #define DLM_LKSB_UNUSED3 0x10
291 #define DLM_LKSB_UNUSED4 0x20
292 #define DLM_LKSB_UNUSED5 0x40
293 #define DLM_LKSB_UNUSED6 0x80
296 enum dlm_lockres_list
{
297 DLM_GRANTED_LIST
= 0,
302 static inline struct list_head
*
303 dlm_list_idx_to_ptr(struct dlm_lock_resource
*res
, enum dlm_lockres_list idx
)
305 struct list_head
*ret
= NULL
;
306 if (idx
== DLM_GRANTED_LIST
)
308 else if (idx
== DLM_CONVERTING_LIST
)
309 ret
= &res
->converting
;
310 else if (idx
== DLM_BLOCKED_LIST
)
322 unsigned long node_map
[BITS_TO_LONGS(O2NM_MAX_NODES
)];
328 DLM_MASTER_REQUEST_MSG
= 500,
329 DLM_UNUSED_MSG1
, /* 501 */
330 DLM_ASSERT_MASTER_MSG
, /* 502 */
331 DLM_CREATE_LOCK_MSG
, /* 503 */
332 DLM_CONVERT_LOCK_MSG
, /* 504 */
333 DLM_PROXY_AST_MSG
, /* 505 */
334 DLM_UNLOCK_LOCK_MSG
, /* 506 */
335 DLM_UNUSED_MSG2
, /* 507 */
336 DLM_MIGRATE_REQUEST_MSG
, /* 508 */
337 DLM_MIG_LOCKRES_MSG
, /* 509 */
338 DLM_QUERY_JOIN_MSG
, /* 510 */
339 DLM_ASSERT_JOINED_MSG
, /* 511 */
340 DLM_CANCEL_JOIN_MSG
, /* 512 */
341 DLM_EXIT_DOMAIN_MSG
, /* 513 */
342 DLM_MASTER_REQUERY_MSG
, /* 514 */
343 DLM_LOCK_REQUEST_MSG
, /* 515 */
344 DLM_RECO_DATA_DONE_MSG
, /* 516 */
345 DLM_BEGIN_RECO_MSG
, /* 517 */
346 DLM_FINALIZE_RECO_MSG
/* 518 */
349 struct dlm_reco_node_data
353 struct list_head list
;
357 DLM_RECO_NODE_DATA_DEAD
= -1,
358 DLM_RECO_NODE_DATA_INIT
= 0,
359 DLM_RECO_NODE_DATA_REQUESTING
,
360 DLM_RECO_NODE_DATA_REQUESTED
,
361 DLM_RECO_NODE_DATA_RECEIVING
,
362 DLM_RECO_NODE_DATA_DONE
,
363 DLM_RECO_NODE_DATA_FINALIZE_SENT
,
368 DLM_MASTER_RESP_NO
= 0,
370 DLM_MASTER_RESP_MAYBE
,
371 DLM_MASTER_RESP_ERROR
375 struct dlm_master_request
382 u8 name
[O2NM_MAX_NAME_LEN
];
385 #define DLM_ASSERT_MASTER_MLE_CLEANUP 0x00000001
386 #define DLM_ASSERT_MASTER_REQUERY 0x00000002
387 #define DLM_ASSERT_MASTER_FINISH_MIGRATION 0x00000004
388 struct dlm_assert_master
395 u8 name
[O2NM_MAX_NAME_LEN
];
398 struct dlm_migrate_request
405 u8 name
[O2NM_MAX_NAME_LEN
];
408 struct dlm_master_requery
415 u8 name
[O2NM_MAX_NAME_LEN
];
418 #define DLM_MRES_RECOVERY 0x01
419 #define DLM_MRES_MIGRATION 0x02
420 #define DLM_MRES_ALL_DONE 0x04
423 * We would like to get one whole lockres into a single network
424 * message whenever possible. Generally speaking, there will be
425 * at most one dlm_lock on a lockres for each node in the cluster,
426 * plus (infrequently) any additional locks coming in from userdlm.
428 * struct _dlm_lockres_page
430 * dlm_migratable_lockres mres;
431 * dlm_migratable_lock ml[DLM_MAX_MIGRATABLE_LOCKS];
432 * u8 pad[DLM_MIG_LOCKRES_RESERVED];
435 * from ../cluster/tcp.h
436 * NET_MAX_PAYLOAD_BYTES (4096 - sizeof(net_msg))
437 * (roughly 4080 bytes)
438 * and sizeof(dlm_migratable_lockres) = 112 bytes
439 * and sizeof(dlm_migratable_lock) = 16 bytes
441 * Choosing DLM_MAX_MIGRATABLE_LOCKS=240 and
442 * DLM_MIG_LOCKRES_RESERVED=128 means we have this:
444 * (DLM_MAX_MIGRATABLE_LOCKS * sizeof(dlm_migratable_lock)) +
445 * sizeof(dlm_migratable_lockres) + DLM_MIG_LOCKRES_RESERVED =
446 * NET_MAX_PAYLOAD_BYTES
447 * (240 * 16) + 112 + 128 = 4080
449 * So a lockres would need more than 240 locks before it would
450 * use more than one network packet to recover. Not too bad.
452 #define DLM_MAX_MIGRATABLE_LOCKS 240
454 struct dlm_migratable_lockres
458 u8 num_locks
; // locks sent in this structure
460 __be32 total_locks
; // locks to be sent for this migration cookie
461 __be64 mig_cookie
; // cookie for this lockres migration
462 // or zero if not needed
464 u8 lockname
[DLM_LOCKID_NAME_MAX
];
468 struct dlm_migratable_lock ml
[0]; // 16 bytes each, begins at byte 112
470 #define DLM_MIG_LOCKRES_MAX_LEN \
471 (sizeof(struct dlm_migratable_lockres) + \
472 (sizeof(struct dlm_migratable_lock) * \
473 DLM_MAX_MIGRATABLE_LOCKS) )
475 /* from above, 128 bytes
476 * for some undetermined future use */
477 #define DLM_MIG_LOCKRES_RESERVED (NET_MAX_PAYLOAD_BYTES - \
478 DLM_MIG_LOCKRES_MAX_LEN)
480 struct dlm_create_lock
490 u8 name
[O2NM_MAX_NAME_LEN
];
493 struct dlm_convert_lock
503 u8 name
[O2NM_MAX_NAME_LEN
];
507 #define DLM_CONVERT_LOCK_MAX_LEN (sizeof(struct dlm_convert_lock)+DLM_LVB_LEN)
509 struct dlm_unlock_lock
518 u8 name
[O2NM_MAX_NAME_LEN
];
522 #define DLM_UNLOCK_LOCK_MAX_LEN (sizeof(struct dlm_unlock_lock)+DLM_LVB_LEN)
534 u8 name
[O2NM_MAX_NAME_LEN
];
538 #define DLM_PROXY_AST_MAX_LEN (sizeof(struct dlm_proxy_ast)+DLM_LVB_LEN)
540 #define DLM_MOD_KEY (0x666c6172)
541 enum dlm_query_join_response
{
547 struct dlm_lock_request
555 struct dlm_reco_data_done
563 /* eventually we can use this to attempt
564 * lvb recovery based on each node's info */
565 u8 reco_lvb
[DLM_LVB_LEN
];
568 struct dlm_begin_reco
577 struct dlm_query_join_request
582 u8 domain
[O2NM_MAX_NAME_LEN
];
585 struct dlm_assert_joined
590 u8 domain
[O2NM_MAX_NAME_LEN
];
593 struct dlm_cancel_join
598 u8 domain
[O2NM_MAX_NAME_LEN
];
601 struct dlm_exit_domain
607 struct dlm_finalize_reco
615 static inline enum dlm_status
616 __dlm_lockres_state_to_status(struct dlm_lock_resource
*res
)
618 enum dlm_status status
= DLM_NORMAL
;
620 assert_spin_locked(&res
->spinlock
);
622 if (res
->state
& DLM_LOCK_RES_RECOVERING
)
623 status
= DLM_RECOVERING
;
624 else if (res
->state
& DLM_LOCK_RES_MIGRATING
)
625 status
= DLM_MIGRATING
;
626 else if (res
->state
& DLM_LOCK_RES_IN_PROGRESS
)
627 status
= DLM_FORWARD
;
632 struct dlm_lock
* dlm_new_lock(int type
, u8 node
, u64 cookie
,
633 struct dlm_lockstatus
*lksb
);
634 void dlm_lock_get(struct dlm_lock
*lock
);
635 void dlm_lock_put(struct dlm_lock
*lock
);
637 void dlm_lock_attach_lockres(struct dlm_lock
*lock
,
638 struct dlm_lock_resource
*res
);
640 int dlm_create_lock_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
641 int dlm_convert_lock_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
642 int dlm_proxy_ast_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
644 void dlm_revert_pending_convert(struct dlm_lock_resource
*res
,
645 struct dlm_lock
*lock
);
646 void dlm_revert_pending_lock(struct dlm_lock_resource
*res
,
647 struct dlm_lock
*lock
);
649 int dlm_unlock_lock_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
650 void dlm_commit_pending_cancel(struct dlm_lock_resource
*res
,
651 struct dlm_lock
*lock
);
652 void dlm_commit_pending_unlock(struct dlm_lock_resource
*res
,
653 struct dlm_lock
*lock
);
655 int dlm_launch_thread(struct dlm_ctxt
*dlm
);
656 void dlm_complete_thread(struct dlm_ctxt
*dlm
);
657 int dlm_launch_recovery_thread(struct dlm_ctxt
*dlm
);
658 void dlm_complete_recovery_thread(struct dlm_ctxt
*dlm
);
659 void dlm_wait_for_recovery(struct dlm_ctxt
*dlm
);
661 void dlm_put(struct dlm_ctxt
*dlm
);
662 struct dlm_ctxt
*dlm_grab(struct dlm_ctxt
*dlm
);
663 int dlm_domain_fully_joined(struct dlm_ctxt
*dlm
);
665 void __dlm_lockres_calc_usage(struct dlm_ctxt
*dlm
,
666 struct dlm_lock_resource
*res
);
667 void dlm_lockres_calc_usage(struct dlm_ctxt
*dlm
,
668 struct dlm_lock_resource
*res
);
669 void dlm_purge_lockres(struct dlm_ctxt
*dlm
,
670 struct dlm_lock_resource
*lockres
);
671 void dlm_lockres_get(struct dlm_lock_resource
*res
);
672 void dlm_lockres_put(struct dlm_lock_resource
*res
);
673 void __dlm_unhash_lockres(struct dlm_lock_resource
*res
);
674 void __dlm_insert_lockres(struct dlm_ctxt
*dlm
,
675 struct dlm_lock_resource
*res
);
676 struct dlm_lock_resource
* __dlm_lookup_lockres(struct dlm_ctxt
*dlm
,
679 struct dlm_lock_resource
* dlm_lookup_lockres(struct dlm_ctxt
*dlm
,
683 int dlm_is_host_down(int errno
);
684 void dlm_change_lockres_owner(struct dlm_ctxt
*dlm
,
685 struct dlm_lock_resource
*res
,
687 struct dlm_lock_resource
* dlm_get_lock_resource(struct dlm_ctxt
*dlm
,
690 struct dlm_lock_resource
*dlm_new_lockres(struct dlm_ctxt
*dlm
,
692 unsigned int namelen
);
694 void dlm_queue_ast(struct dlm_ctxt
*dlm
, struct dlm_lock
*lock
);
695 void dlm_queue_bast(struct dlm_ctxt
*dlm
, struct dlm_lock
*lock
);
696 void dlm_do_local_ast(struct dlm_ctxt
*dlm
,
697 struct dlm_lock_resource
*res
,
698 struct dlm_lock
*lock
);
699 int dlm_do_remote_ast(struct dlm_ctxt
*dlm
,
700 struct dlm_lock_resource
*res
,
701 struct dlm_lock
*lock
);
702 void dlm_do_local_bast(struct dlm_ctxt
*dlm
,
703 struct dlm_lock_resource
*res
,
704 struct dlm_lock
*lock
,
706 int dlm_send_proxy_ast_msg(struct dlm_ctxt
*dlm
,
707 struct dlm_lock_resource
*res
,
708 struct dlm_lock
*lock
,
710 int blocked_type
, int flags
);
711 static inline int dlm_send_proxy_bast(struct dlm_ctxt
*dlm
,
712 struct dlm_lock_resource
*res
,
713 struct dlm_lock
*lock
,
716 return dlm_send_proxy_ast_msg(dlm
, res
, lock
, DLM_BAST
,
720 static inline int dlm_send_proxy_ast(struct dlm_ctxt
*dlm
,
721 struct dlm_lock_resource
*res
,
722 struct dlm_lock
*lock
,
725 return dlm_send_proxy_ast_msg(dlm
, res
, lock
, DLM_AST
,
729 void dlm_print_one_lock_resource(struct dlm_lock_resource
*res
);
730 void __dlm_print_one_lock_resource(struct dlm_lock_resource
*res
);
732 u8
dlm_nm_this_node(struct dlm_ctxt
*dlm
);
733 void dlm_kick_thread(struct dlm_ctxt
*dlm
, struct dlm_lock_resource
*res
);
734 void __dlm_dirty_lockres(struct dlm_ctxt
*dlm
, struct dlm_lock_resource
*res
);
737 int dlm_nm_init(struct dlm_ctxt
*dlm
);
738 int dlm_heartbeat_init(struct dlm_ctxt
*dlm
);
739 void dlm_hb_node_down_cb(struct o2nm_node
*node
, int idx
, void *data
);
740 void dlm_hb_node_up_cb(struct o2nm_node
*node
, int idx
, void *data
);
742 int dlm_lockres_is_dirty(struct dlm_ctxt
*dlm
, struct dlm_lock_resource
*res
);
743 int dlm_migrate_lockres(struct dlm_ctxt
*dlm
,
744 struct dlm_lock_resource
*res
,
746 int dlm_finish_migration(struct dlm_ctxt
*dlm
,
747 struct dlm_lock_resource
*res
,
749 void dlm_lockres_release_ast(struct dlm_ctxt
*dlm
,
750 struct dlm_lock_resource
*res
);
751 void __dlm_lockres_reserve_ast(struct dlm_lock_resource
*res
);
753 int dlm_master_request_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
754 int dlm_assert_master_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
755 int dlm_migrate_request_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
756 int dlm_mig_lockres_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
757 int dlm_master_requery_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
758 int dlm_request_all_locks_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
759 int dlm_reco_data_done_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
760 int dlm_begin_reco_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
761 int dlm_finalize_reco_handler(struct o2net_msg
*msg
, u32 len
, void *data
);
763 int dlm_dispatch_assert_master(struct dlm_ctxt
*dlm
,
764 struct dlm_lock_resource
*res
,
770 int dlm_send_one_lockres(struct dlm_ctxt
*dlm
,
771 struct dlm_lock_resource
*res
,
772 struct dlm_migratable_lockres
*mres
,
775 void dlm_move_lockres_to_recovery_list(struct dlm_ctxt
*dlm
,
776 struct dlm_lock_resource
*res
);
778 /* will exit holding res->spinlock, but may drop in function */
779 void __dlm_wait_on_lockres_flags(struct dlm_lock_resource
*res
, int flags
);
780 void __dlm_wait_on_lockres_flags_set(struct dlm_lock_resource
*res
, int flags
);
782 /* will exit holding res->spinlock, but may drop in function */
783 static inline void __dlm_wait_on_lockres(struct dlm_lock_resource
*res
)
785 __dlm_wait_on_lockres_flags(res
, (DLM_LOCK_RES_IN_PROGRESS
|
786 DLM_LOCK_RES_RECOVERING
|
787 DLM_LOCK_RES_MIGRATING
));
791 int dlm_init_mle_cache(void);
792 void dlm_destroy_mle_cache(void);
793 void dlm_hb_event_notify_attached(struct dlm_ctxt
*dlm
, int idx
, int node_up
);
794 void dlm_clean_master_list(struct dlm_ctxt
*dlm
,
796 int dlm_lock_basts_flushed(struct dlm_ctxt
*dlm
, struct dlm_lock
*lock
);
799 static inline const char * dlm_lock_mode_name(int mode
)
813 static inline int dlm_lock_compatible(int existing
, int request
)
815 /* NO_LOCK compatible with all */
816 if (request
== LKM_NLMODE
||
817 existing
== LKM_NLMODE
)
820 /* EX incompatible with all non-NO_LOCK */
821 if (request
== LKM_EXMODE
)
824 /* request must be PR, which is compatible with PR */
825 if (existing
== LKM_PRMODE
)
831 static inline int dlm_lock_on_list(struct list_head
*head
,
832 struct dlm_lock
*lock
)
834 struct list_head
*iter
;
835 struct dlm_lock
*tmplock
;
837 list_for_each(iter
, head
) {
838 tmplock
= list_entry(iter
, struct dlm_lock
, list
);
846 static inline enum dlm_status
dlm_err_to_dlm_status(int err
)
851 else if (err
== -ETIMEDOUT
|| o2net_link_down(err
, NULL
))
853 else if (err
== -EINVAL
)
855 else if (err
== -ENAMETOOLONG
)
863 static inline void dlm_node_iter_init(unsigned long *map
,
864 struct dlm_node_iter
*iter
)
866 memcpy(iter
->node_map
, map
, sizeof(iter
->node_map
));
870 static inline int dlm_node_iter_next(struct dlm_node_iter
*iter
)
873 bit
= find_next_bit(iter
->node_map
, O2NM_MAX_NODES
, iter
->curnode
+1);
874 if (bit
>= O2NM_MAX_NODES
) {
875 iter
->curnode
= O2NM_MAX_NODES
;
884 #endif /* DLMCOMMON_H */