Home
last modified time | relevance | path

Searched refs:dlm_ls (Results 1 – 25 of 26) sorted by relevance

12

/linux-6.1.9/fs/dlm/
Dlock.h15 void dlm_dump_rsb_name(struct dlm_ls *ls, char *name, int len);
17 void dlm_receive_message_saved(struct dlm_ls *ls, struct dlm_message *ms,
24 void dlm_scan_rsbs(struct dlm_ls *ls);
25 int dlm_lock_recovery_try(struct dlm_ls *ls);
26 void dlm_unlock_recovery(struct dlm_ls *ls);
29 void dlm_scan_timeout(struct dlm_ls *ls);
30 void dlm_adjust_timeouts(struct dlm_ls *ls);
32 static inline void dlm_scan_timeout(struct dlm_ls *ls) { } in dlm_scan_timeout()
33 static inline void dlm_adjust_timeouts(struct dlm_ls *ls) { } in dlm_adjust_timeouts()
36 int dlm_master_lookup(struct dlm_ls *ls, int nodeid, char *name, int len,
[all …]
Drecover.h15 int dlm_wait_function(struct dlm_ls *ls, int (*testfn) (struct dlm_ls *ls));
16 uint32_t dlm_recover_status(struct dlm_ls *ls);
17 void dlm_set_recover_status(struct dlm_ls *ls, uint32_t status);
18 int dlm_recover_members_wait(struct dlm_ls *ls);
19 int dlm_recover_directory_wait(struct dlm_ls *ls);
20 int dlm_recover_locks_wait(struct dlm_ls *ls);
21 int dlm_recover_done_wait(struct dlm_ls *ls);
22 int dlm_recover_masters(struct dlm_ls *ls);
23 int dlm_recover_master_reply(struct dlm_ls *ls, struct dlm_rcom *rc);
24 int dlm_recover_locks(struct dlm_ls *ls);
[all …]
Dmember.h14 int dlm_ls_stop(struct dlm_ls *ls);
15 int dlm_ls_start(struct dlm_ls *ls);
16 void dlm_clear_members(struct dlm_ls *ls);
17 void dlm_clear_members_gone(struct dlm_ls *ls);
18 int dlm_recover_members(struct dlm_ls *ls, struct dlm_recover *rv,int *neg_out);
19 int dlm_is_removed(struct dlm_ls *ls, int nodeid);
20 int dlm_is_member(struct dlm_ls *ls, int nodeid);
22 void dlm_slot_save(struct dlm_ls *ls, struct dlm_rcom *rc,
24 void dlm_slots_copy_out(struct dlm_ls *ls, struct dlm_rcom *rc);
25 int dlm_slots_copy_in(struct dlm_ls *ls);
[all …]
Dlockspace.c36 static ssize_t dlm_control_store(struct dlm_ls *ls, const char *buf, size_t len) in dlm_control_store()
62 static ssize_t dlm_event_store(struct dlm_ls *ls, const char *buf, size_t len) in dlm_event_store()
73 static ssize_t dlm_id_show(struct dlm_ls *ls, char *buf) in dlm_id_show()
78 static ssize_t dlm_id_store(struct dlm_ls *ls, const char *buf, size_t len) in dlm_id_store()
87 static ssize_t dlm_nodir_show(struct dlm_ls *ls, char *buf) in dlm_nodir_show()
92 static ssize_t dlm_nodir_store(struct dlm_ls *ls, const char *buf, size_t len) in dlm_nodir_store()
104 static ssize_t dlm_recover_status_show(struct dlm_ls *ls, char *buf) in dlm_recover_status_show()
110 static ssize_t dlm_recover_nodeid_show(struct dlm_ls *ls, char *buf) in dlm_recover_nodeid_show()
117 ssize_t (*show)(struct dlm_ls *, char *);
118 ssize_t (*store)(struct dlm_ls *, const char *, size_t);
[all …]
Drecover.c42 int dlm_wait_function(struct dlm_ls *ls, int (*testfn) (struct dlm_ls *ls)) in dlm_wait_function()
74 uint32_t dlm_recover_status(struct dlm_ls *ls) in dlm_recover_status()
83 static void _set_recover_status(struct dlm_ls *ls, uint32_t status) in _set_recover_status()
88 void dlm_set_recover_status(struct dlm_ls *ls, uint32_t status) in dlm_set_recover_status()
95 static int wait_status_all(struct dlm_ls *ls, uint32_t wait_status, in wait_status_all()
128 static int wait_status_low(struct dlm_ls *ls, uint32_t wait_status, in wait_status_low()
154 static int wait_status(struct dlm_ls *ls, uint32_t status) in wait_status()
169 int dlm_recover_members_wait(struct dlm_ls *ls) in dlm_recover_members_wait()
212 int dlm_recover_directory_wait(struct dlm_ls *ls) in dlm_recover_directory_wait()
217 int dlm_recover_locks_wait(struct dlm_ls *ls) in dlm_recover_locks_wait()
[all …]
Dast.h16 int dlm_rem_lkb_callback(struct dlm_ls *ls, struct dlm_lkb *lkb,
22 int dlm_callback_start(struct dlm_ls *ls);
23 void dlm_callback_stop(struct dlm_ls *ls);
24 void dlm_callback_suspend(struct dlm_ls *ls);
25 void dlm_callback_resume(struct dlm_ls *ls);
Drecoverd.h15 void dlm_recoverd_stop(struct dlm_ls *ls);
16 int dlm_recoverd_start(struct dlm_ls *ls);
17 void dlm_recoverd_suspend(struct dlm_ls *ls);
18 void dlm_recoverd_resume(struct dlm_ls *ls);
Drequestqueue.h14 void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms);
15 int dlm_process_requestqueue(struct dlm_ls *ls);
16 void dlm_wait_requestqueue(struct dlm_ls *ls);
17 void dlm_purge_requestqueue(struct dlm_ls *ls);
Ddir.h16 int dlm_hash2nodeid(struct dlm_ls *ls, uint32_t hash);
17 void dlm_recover_dir_nodeid(struct dlm_ls *ls);
18 int dlm_recover_directory(struct dlm_ls *ls);
19 void dlm_copy_master_names(struct dlm_ls *ls, char *inbuf, int inlen,
Dlockspace.h25 struct dlm_ls *dlm_find_lockspace_global(uint32_t id);
26 struct dlm_ls *dlm_find_lockspace_local(void *id);
27 struct dlm_ls *dlm_find_lockspace_device(int minor);
28 void dlm_put_lockspace(struct dlm_ls *ls);
Dmember.c28 void dlm_slot_save(struct dlm_ls *ls, struct dlm_rcom *rc, in dlm_slot_save()
40 void dlm_slots_copy_out(struct dlm_ls *ls, struct dlm_rcom *rc) in dlm_slots_copy_out()
62 static void log_slots(struct dlm_ls *ls, uint32_t gen, int num_slots, in log_slots()
97 int dlm_slots_copy_in(struct dlm_ls *ls) in dlm_slots_copy_in()
160 int dlm_slots_assign(struct dlm_ls *ls, int *num_slots, int *slots_size, in dlm_slots_assign()
286 static void add_ordered_member(struct dlm_ls *ls, struct dlm_member *new) in add_ordered_member()
310 static int dlm_add_member(struct dlm_ls *ls, struct dlm_config_node *node) in dlm_add_member()
345 int dlm_is_member(struct dlm_ls *ls, int nodeid) in dlm_is_member()
352 int dlm_is_removed(struct dlm_ls *ls, int nodeid) in dlm_is_removed()
378 void dlm_clear_members(struct dlm_ls *ls) in dlm_clear_members()
[all …]
Drcom.c25 static int rcom_response(struct dlm_ls *ls) in rcom_response()
30 static void _create_rcom(struct dlm_ls *ls, int to_nodeid, int type, int len, in _create_rcom()
52 static int create_rcom(struct dlm_ls *ls, int to_nodeid, int type, int len, in create_rcom()
71 static int create_rcom_stateless(struct dlm_ls *ls, int to_nodeid, int type, in create_rcom_stateless()
103 static void set_rcom_status(struct dlm_ls *ls, struct rcom_status *rs, in set_rcom_status()
113 static void set_rcom_config(struct dlm_ls *ls, struct rcom_config *rf, in set_rcom_config()
124 static int check_rcom_config(struct dlm_ls *ls, struct dlm_rcom *rc, int nodeid) in check_rcom_config()
146 static void allow_sync_reply(struct dlm_ls *ls, __le64 *new_seq) in allow_sync_reply()
154 static void disallow_sync_reply(struct dlm_ls *ls) in disallow_sync_reply()
173 int dlm_rcom_status(struct dlm_ls *ls, int nodeid, uint32_t status_flags) in dlm_rcom_status()
[all …]
Drecoverd.c31 static int enable_locking(struct dlm_ls *ls, uint64_t seq) in enable_locking()
51 static int ls_recover(struct dlm_ls *ls, struct dlm_recover *rv) in ls_recover()
259 static void do_ls_recovery(struct dlm_ls *ls) in do_ls_recovery()
304 struct dlm_ls *ls; in dlm_recoverd()
352 int dlm_recoverd_start(struct dlm_ls *ls) in dlm_recoverd_start()
365 void dlm_recoverd_stop(struct dlm_ls *ls) in dlm_recoverd_stop()
370 void dlm_recoverd_suspend(struct dlm_ls *ls) in dlm_recoverd_suspend()
376 void dlm_recoverd_resume(struct dlm_ls *ls) in dlm_recoverd_resume()
Drcom.h15 int dlm_rcom_status(struct dlm_ls *ls, int nodeid, uint32_t status_flags);
16 int dlm_rcom_names(struct dlm_ls *ls, int nodeid, char *last_name,int last_len);
19 void dlm_receive_rcom(struct dlm_ls *ls, struct dlm_rcom *rc, int nodeid);
Dmemory.h17 struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls);
19 struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls);
21 char *dlm_allocate_lvb(struct dlm_ls *ls);
Drequestqueue.c33 void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms) in dlm_add_requestqueue()
66 int dlm_process_requestqueue(struct dlm_ls *ls) in dlm_process_requestqueue()
123 void dlm_wait_requestqueue(struct dlm_ls *ls) in dlm_wait_requestqueue()
129 static int purge_request(struct dlm_ls *ls, struct dlm_message *ms, int nodeid) in purge_request()
154 void dlm_purge_requestqueue(struct dlm_ls *ls) in dlm_purge_requestqueue()
Dast.c56 struct dlm_ls *ls = lkb->lkb_resource->res_ls; in dlm_add_lkb_callback()
114 int dlm_rem_lkb_callback(struct dlm_ls *ls, struct dlm_lkb *lkb, in dlm_rem_lkb_callback()
178 struct dlm_ls *ls = lkb->lkb_resource->res_ls; in dlm_add_cb()
218 struct dlm_ls *ls = lkb->lkb_resource->res_ls; in dlm_callback_work()
272 int dlm_callback_start(struct dlm_ls *ls) in dlm_callback_start()
283 void dlm_callback_stop(struct dlm_ls *ls) in dlm_callback_stop()
289 void dlm_callback_suspend(struct dlm_ls *ls) in dlm_callback_suspend()
302 void dlm_callback_resume(struct dlm_ls *ls) in dlm_callback_resume()
Dlock.c91 static void do_purge(struct dlm_ls *ls, int nodeid, int pid);
205 static inline void dlm_lock_recovery(struct dlm_ls *ls) in dlm_lock_recovery()
210 void dlm_unlock_recovery(struct dlm_ls *ls) in dlm_unlock_recovery()
215 int dlm_lock_recovery_try(struct dlm_ls *ls) in dlm_lock_recovery_try()
353 struct dlm_ls *ls = r->res_ls; in put_rsb()
368 static int pre_rsb_struct(struct dlm_ls *ls) in pre_rsb_struct()
404 static int get_rsb_struct(struct dlm_ls *ls, const void *name, int len, in get_rsb_struct()
550 static int find_rsb_dir(struct dlm_ls *ls, const void *name, int len, in find_rsb_dir()
728 static int find_rsb_nodir(struct dlm_ls *ls, const void *name, int len, in find_rsb_nodir()
822 static int find_rsb(struct dlm_ls *ls, const void *name, int len, in find_rsb()
[all …]
Ddlm_internal.h44 struct dlm_ls;
303 struct dlm_ls *res_ls; /* the lockspace */
558 struct dlm_ls { struct
747 static inline int dlm_locking_stopped(struct dlm_ls *ls) in dlm_locking_stopped()
752 static inline int dlm_recovery_stopped(struct dlm_ls *ls) in dlm_recovery_stopped()
757 static inline int dlm_no_directory(struct dlm_ls *ls) in dlm_no_directory()
777 void dlm_create_debug_file(struct dlm_ls *ls);
778 void dlm_delete_debug_file(struct dlm_ls *ls);
784 static inline void dlm_create_debug_file(struct dlm_ls *ls) { } in dlm_create_debug_file()
785 static inline void dlm_delete_debug_file(struct dlm_ls *ls) { } in dlm_delete_debug_file()
Ddir.c33 int dlm_hash2nodeid(struct dlm_ls *ls, uint32_t hash) in dlm_hash2nodeid()
50 void dlm_recover_dir_nodeid(struct dlm_ls *ls) in dlm_recover_dir_nodeid()
61 int dlm_recover_directory(struct dlm_ls *ls) in dlm_recover_directory()
199 static struct dlm_rsb *find_rsb_root(struct dlm_ls *ls, char *name, int len) in find_rsb_root()
235 void dlm_copy_master_names(struct dlm_ls *ls, char *inbuf, int inlen, in dlm_copy_master_names()
Dmemory.c72 char *dlm_allocate_lvb(struct dlm_ls *ls) in dlm_allocate_lvb()
85 struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls) in dlm_allocate_rsb()
100 struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls) in dlm_allocate_lkb()
Duser.c180 struct dlm_ls *ls; in dlm_user_add_ast()
241 struct dlm_ls *ls; in device_user_lock()
314 struct dlm_ls *ls; in device_user_unlock()
343 struct dlm_ls *ls; in device_user_deadlock()
356 static int dlm_device_register(struct dlm_ls *ls, char *name) in dlm_device_register()
388 int dlm_device_deregister(struct dlm_ls *ls) in dlm_device_deregister()
404 struct dlm_ls *ls; in device_user_purge()
420 struct dlm_ls *ls; in device_create_lockspace()
450 struct dlm_ls *ls; in device_remove_lockspace()
654 struct dlm_ls *ls; in device_open()
[all …]
Duser.h13 int dlm_device_deregister(struct dlm_ls *ls);
Ddebug_fs.c425 struct dlm_ls *ls = seq->private; in table_seq_start()
503 struct dlm_ls *ls = seq->private; in table_seq_next()
644 struct dlm_ls *ls = seq->private; in table_write2()
734 struct dlm_ls *ls = file->private_data; in waiters_read()
760 struct dlm_ls *ls = file->private_data; in waiters_write()
789 void dlm_delete_debug_file(struct dlm_ls *ls) in dlm_delete_debug_file()
886 void dlm_create_debug_file(struct dlm_ls *ls) in dlm_create_debug_file()
/linux-6.1.9/include/trace/events/
Ddlm.h52 TP_PROTO(struct dlm_ls *ls, struct dlm_lkb *lkb, const void *name,
94 TP_PROTO(struct dlm_ls *ls, struct dlm_lkb *lkb, const void *name,
149 TP_PROTO(struct dlm_ls *ls, struct dlm_lkb *lkb, int mode),
184 TP_PROTO(struct dlm_ls *ls, struct dlm_lkb *lkb),
222 TP_PROTO(struct dlm_ls *ls, struct dlm_lkb *lkb, __u32 flags),
257 TP_PROTO(struct dlm_ls *ls, struct dlm_lkb *lkb, __u32 flags,

12