]> Git Repo - linux.git/commitdiff
dlm: fix format seq ops type 4
authorAlexander Aring <[email protected]>
Wed, 20 Dec 2023 19:38:58 +0000 (14:38 -0500)
committerDavid Teigland <[email protected]>
Wed, 20 Dec 2023 21:36:48 +0000 (15:36 -0600)
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 <[email protected]>
Signed-off-by: David Teigland <[email protected]>
fs/dlm/debug_fs.c

index 42f332f463598cc4a045c906120641dd142a05cd..c587bfadeff43e0c9b90e40b03507064ca8f9035 100644 (file)
@@ -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;
 
This page took 0.054034 seconds and 4 git commands to generate.