diff options
author | David Howells <dhowells@redhat.com> | 2019-12-11 11:58:59 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2019-12-11 20:48:20 +0300 |
commit | 50559800b76a7a2a46da303100da639536261808 (patch) | |
tree | 25801b42505a26b908d58121102c9a79eb274bb3 | |
parent | 106bc79843c3c6f4f00753d1f46e54e815f99377 (diff) | |
download | linux-50559800b76a7a2a46da303100da639536261808.tar.xz |
afs: Show volume name in /proc/net/afs/<cell>/volumes
Show the name of each volume in /proc/net/afs/<cell>/volumes to make it
easier to work out the name corresponding to a volume ID. This makes it
easier to work out which mounts in /proc/mounts correspond to which volume
ID.
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Marc Dionne <marc.dionne@auristor.com>
-rw-r--r-- | fs/afs/proc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/afs/proc.c b/fs/afs/proc.c index fba2ec3a3a9c..468e1713bce1 100644 --- a/fs/afs/proc.c +++ b/fs/afs/proc.c @@ -213,13 +213,14 @@ static int afs_proc_cell_volumes_show(struct seq_file *m, void *v) /* Display header on line 1 */ if (v == &cell->proc_volumes) { - seq_puts(m, "USE VID TY\n"); + seq_puts(m, "USE VID TY NAME\n"); return 0; } - seq_printf(m, "%3d %08llx %s\n", + seq_printf(m, "%3d %08llx %s %s\n", atomic_read(&vol->usage), vol->vid, - afs_vol_types[vol->type]); + afs_vol_types[vol->type], + vol->name); return 0; } |