From: Alexander Aring Date: Wed, 20 Dec 2023 19:38:58 +0000 (-0500) Subject: dlm: fix format seq ops type 4 X-Git-Tag: v6.6.17~1302 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=528a422b94b3a9116c53b90af9ffc17a8a6d9e80;p=platform%2Fkernel%2Flinux-rpi.git dlm: fix format seq ops type 4 [ Upstream commit 367e753d5c54a414d82610eb709fe71fda6cf1c3 ] 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 Signed-off-by: David Teigland Signed-off-by: Sasha Levin --- diff --git a/fs/dlm/debug_fs.c b/fs/dlm/debug_fs.c index c93359c..d2c0353 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;