search for: dlm_user_lvb_len

Displaying 1 result from an estimated 1 matches for "dlm_user_lvb_len".

2009 Jul 06
1
lvb length issue [was Re: [ocfs2-tools-devel] question of ocfs2_controld (Jun 27)]
...ctl handler inside fs/dlm, which (indeed) is fs/dlm/user.c:device_create_lockspace(): 404 static int device_create_lockspace(struct dlm_lspace_params *params) ... ... 412 413 error = dlm_new_lockspace(params->name, strlen(params->name), 414 &lockspace, params->flags, DLM_USER_LVB_LEN); ... ... 431 } DLM_USER_LVB_LEN is defined to 32. When mounting an ocfs2 volume, ocfs2 code calls dlm_new_lockspace directly. Which is in fs/ocfs2/stack_user.c:user_cluster_connect(): 814 static int user_cluster_connect(struct ocfs2_cluster_connection *conn) 815 { ... ... 842 rc = dlm_new...