diff options
Diffstat (limited to 'fs/ocfs2/dlm/dlmcommon.h')
-rw-r--r-- | fs/ocfs2/dlm/dlmcommon.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ocfs2/dlm/dlmcommon.h b/fs/ocfs2/dlm/dlmcommon.h index 261e26501e57..b232aa0b3345 100644 --- a/fs/ocfs2/dlm/dlmcommon.h +++ b/fs/ocfs2/dlm/dlmcommon.h | |||
@@ -56,8 +56,8 @@ enum dlm_mle_type { | |||
56 | }; | 56 | }; |
57 | 57 | ||
58 | struct dlm_lock_name { | 58 | struct dlm_lock_name { |
59 | u8 len; | 59 | unsigned int len; |
60 | u8 name[DLM_LOCKID_NAME_MAX]; | 60 | unsigned char name[DLM_LOCKID_NAME_MAX]; |
61 | }; | 61 | }; |
62 | 62 | ||
63 | struct dlm_master_list_entry { | 63 | struct dlm_master_list_entry { |
@@ -79,8 +79,8 @@ struct dlm_master_list_entry { | |||
79 | struct o2hb_callback_func mle_hb_up; | 79 | struct o2hb_callback_func mle_hb_up; |
80 | struct o2hb_callback_func mle_hb_down; | 80 | struct o2hb_callback_func mle_hb_down; |
81 | union { | 81 | union { |
82 | struct dlm_lock_resource *res; | 82 | struct dlm_lock_resource *mleres; |
83 | struct dlm_lock_name name; | 83 | struct dlm_lock_name mlename; |
84 | } u; | 84 | } u; |
85 | }; | 85 | }; |
86 | 86 | ||