iostat: Always display persistent names with option -j
When a persistent name (e.g. UUID) is entered on the command line,
iostat displayed the real name of the device instead of its persistent
name, e.g.:
$ iostat -d -j UUID
65ccf2b5-50de-4f89-bf8e-
e3e88eae4c63
Linux 5.12.14-200.fc33.x86_64 (linux-1.home) 07/14/2021 _x86_64_ (8 CPU)
tps kB_read/s kB_wrtn/s kB_dscd/s kB_read kB_wrtn kB_dscd Device
1.89 6.73 0.00 31799.48 58452 12
276250680 sda
Fix this so that the persistent name appears in the report:
$ iostat -d -j UUID
65ccf2b5-50de-4f89-bf8e-
e3e88eae4c63
Linux 5.12.14-200.fc33.x86_64 (linux-1.home) 07/14/2021 _x86_64_ (8 CPU)
tps kB_read/s kB_wrtn/s kB_dscd/s kB_read kB_wrtn kB_dscd Device
1.88 6.66 0.00 31489.67 58452 12
276250680 65ccf2b5-50de-4f89-bf8e-
e3e88eae4c63
Signed-off-by: Sebastien GODARD <sysstat@users.noreply.github.com>