diff options
author | Alexander Aring <aahringo@redhat.com> | 2023-12-20 22:38:59 +0300 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2023-12-21 00:36:48 +0300 |
commit | 5beebc1dda47719dac85830c53bca1a0ab497d96 (patch) | |
tree | cf4de1b433820147ebffc9342b831ef84b653271 /fs/dlm/debug_fs.c | |
parent | 367e753d5c54a414d82610eb709fe71fda6cf1c3 (diff) | |
download | linux-5beebc1dda47719dac85830c53bca1a0ab497d96.tar.xz |
dlm: update format header reflect current format
Over the time the dlm debugfs format string has been changed but the
header wasn't updated. This patch changes the first line dump header and
their meaning to reflect the current formats.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/debug_fs.c')
-rw-r--r-- | fs/dlm/debug_fs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/dlm/debug_fs.c b/fs/dlm/debug_fs.c index c587bfadeff4..4fa11d9ddbb6 100644 --- a/fs/dlm/debug_fs.c +++ b/fs/dlm/debug_fs.c @@ -443,14 +443,14 @@ static int table_seq_show(struct seq_file *seq, void *iter_ptr) break; case 3: if (ri->header) { - seq_puts(seq, "version rsb 1.1 lvb 1.1 lkb 1.1\n"); + seq_puts(seq, "rsb ptr nodeid first_lkid flags !root_list_empty !recover_list_empty recover_locks_count len\n"); ri->header = 0; } print_format3(ri->rsb, seq); break; case 4: if (ri->header) { - seq_puts(seq, "version 4 rsb 2\n"); + seq_puts(seq, "rsb ptr nodeid master_nodeid dir_nodeid our_nodeid toss_time flags len str|hex name\n"); ri->header = 0; } print_format4(ri->rsb, seq); |