mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
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 commit541adb0d4d
("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:541adb0d4d
("fs: dlm: debugfs for queued callbacks") Signed-off-by: Alexander Aring <aahringo@redhat.com> Signed-off-by: David Teigland <teigland@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
4f234d5fcd
commit
528a422b94
1 changed files with 1 additions and 1 deletions
|
@ -748,7 +748,7 @@ static int table_open4(struct inode *inode, struct file *file)
|
||||||
struct seq_file *seq;
|
struct seq_file *seq;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = seq_open(file, &format5_seq_ops);
|
ret = seq_open(file, &format4_seq_ops);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue