aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dlm/debug_fs.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/dlm/debug_fs.c')
-rw-r--r--fs/dlm/debug_fs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/dlm/debug_fs.c b/fs/dlm/debug_fs.c
index 5faa747c7ca..516f6c9ee4d 100644
--- a/fs/dlm/debug_fs.c
+++ b/fs/dlm/debug_fs.c
@@ -123,7 +123,7 @@ static int print_resource(struct dlm_rsb *res, struct seq_file *s)
123 if (root_list || recover_list) { 123 if (root_list || recover_list) {
124 seq_printf(s, "Recovery: root %d recover %d flags %lx " 124 seq_printf(s, "Recovery: root %d recover %d flags %lx "
125 "count %d\n", root_list, recover_list, 125 "count %d\n", root_list, recover_list,
126 res->flags, res->res_recover_locks_count); 126 res->res_flags, res->res_recover_locks_count);
127 } 127 }
128 128
129 /* Print the locks attached to this resource */ 129 /* Print the locks attached to this resource */
@@ -277,7 +277,7 @@ static int rsb_open(struct inode *inode, struct file *file)
277 struct seq_file *seq; 277 struct seq_file *seq;
278 int ret; 278 int ret;
279 279
280 ret = rsb_seq_open(file, &rsb_seq_ops); 280 ret = seq_open(file, &rsb_seq_ops);
281 if (ret) 281 if (ret)
282 return ret; 282 return ret;
283 283
@@ -343,7 +343,7 @@ int dlm_create_debug_file(struct dlm_ls *ls)
343 dlm_root, 343 dlm_root,
344 ls, 344 ls,
345 &rsb_fops); 345 &rsb_fops);
346 if (!ls->ls_rsb_debug_dentry) 346 if (!ls->ls_debug_rsb_dentry)
347 return -ENOMEM; 347 return -ENOMEM;
348 348
349 memset(name, 0, sizeof(name)); 349 memset(name, 0, sizeof(name));