diff options
author | Alexander Aring <aahringo@redhat.com> | 2023-12-20 14:38:58 -0500 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2023-12-20 15:36:48 -0600 |
commit | 367e753d5c54a414d82610eb709fe71fda6cf1c3 (patch) | |
tree | 9a7f09b2b0e0f49836de47c565a1eedd99cedc60 /fs/dlm | |
parent | 0c08699744d20ce0bac22b9f291a646a0302e51f (diff) |
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 541adb0d4d10 ("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: 541adb0d4d10 ("fs: dlm: debugfs for queued callbacks")
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/debug_fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/debug_fs.c b/fs/dlm/debug_fs.c index 42f332f46359..c587bfadeff4 100644 --- a/fs/dlm/debug_fs.c +++ b/fs/dlm/debug_fs.c @@ -748,7 +748,7 @@ static int table_open4(struct inode *inode, struct file *file) struct seq_file *seq; int ret; - ret = seq_open(file, &format5_seq_ops); + ret = seq_open(file, &format4_seq_ops); if (ret) return ret; |