Skip to content

Commit 367e753

Browse files
Alexander Aringteigland
authored andcommitted
dlm: fix format seq ops type 4
This patch fixes to set the type 4 format ops in case of table_open4(). It got accidentially changed by commit 541adb0 ("fs: dlm: debugfs for queued callbacks") and since them toss debug dumps the same format as format 5 that are the queued ast callbacks for lkbs. Fixes: 541adb0 ("fs: dlm: debugfs for queued callbacks") Signed-off-by: Alexander Aring <aahringo@redhat.com> Signed-off-by: David Teigland <teigland@redhat.com>
1 parent 0c08699 commit 367e753

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/dlm/debug_fs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ static int table_open4(struct inode *inode, struct file *file)
748748
struct seq_file *seq;
749749
int ret;
750750

751-
ret = seq_open(file, &format5_seq_ops);
751+
ret = seq_open(file, &format4_seq_ops);
752752
if (ret)
753753
return ret;
754754

0 commit comments

Comments
 (0)