* [pve-devel] [PATCH manager] report: add WWN column to lsblk output
@ 2025-03-31 9:41 Friedrich Weber
2025-04-01 8:04 ` Michael Köppl
2025-04-01 9:56 ` [pve-devel] applied: " Thomas Lamprecht
0 siblings, 2 replies; 4+ messages in thread
From: Friedrich Weber @ 2025-03-31 9:41 UTC (permalink / raw)
To: pve-devel
WWNs (WWIDs) are useful information for debugging setups where
multipath is not (correctly) set up, as the WWN reveals which block
devices point to the same LUN. The report currently does not provide
WWNs in such scenarios. There is a symlink for the WWN under
/dev/disk/by-id/wwn-*, but if there are multiple block devices with
the same WWN, the symlink just points to one of them.
Hence, add the WWN column to the lsblk output.
Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
---
PVE/Report.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/PVE/Report.pm b/PVE/Report.pm
index 1ed91c8e..8f53823e 100644
--- a/PVE/Report.pm
+++ b/PVE/Report.pm
@@ -117,7 +117,7 @@ my $init_report_cmds = sub {
'block devices' => {
order => 80,
cmds => [
- 'lsblk --ascii -M -o +HOTPLUG,ROTA,PHY-SEC,FSTYPE,MODEL,TRAN',
+ 'lsblk --ascii -M -o +HOTPLUG,ROTA,PHY-SEC,FSTYPE,MODEL,TRAN,WWN',
'ls -l /dev/disk/by-*/',
'iscsiadm -m node',
'iscsiadm -m session',
--
2.39.5
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [pve-devel] [PATCH manager] report: add WWN column to lsblk output
2025-03-31 9:41 [pve-devel] [PATCH manager] report: add WWN column to lsblk output Friedrich Weber
@ 2025-04-01 8:04 ` Michael Köppl
2025-04-01 9:56 ` Thomas Lamprecht
2025-04-01 9:56 ` [pve-devel] applied: " Thomas Lamprecht
1 sibling, 1 reply; 4+ messages in thread
From: Michael Köppl @ 2025-04-01 8:04 UTC (permalink / raw)
To: Proxmox VE development discussion, Friedrich Weber
On 3/31/25 11:41, Friedrich Weber wrote:
> WWNs (WWIDs) are useful information for debugging setups where
> multipath is not (correctly) set up, as the WWN reveals which block
> devices point to the same LUN. The report currently does not provide
> WWNs in such scenarios. There is a symlink for the WWN under
> /dev/disk/by-id/wwn-*, but if there are multiple block devices with
> the same WWN, the symlink just points to one of them.
>
> Hence, add the WWN column to the lsblk output.
>
> Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
> ---
> PVE/Report.pm | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/PVE/Report.pm b/PVE/Report.pm
> index 1ed91c8e..8f53823e 100644
> --- a/PVE/Report.pm
> +++ b/PVE/Report.pm
> @@ -117,7 +117,7 @@ my $init_report_cmds = sub {
> 'block devices' => {
> order => 80,
> cmds => [
> - 'lsblk --ascii -M -o +HOTPLUG,ROTA,PHY-SEC,FSTYPE,MODEL,TRAN',
> + 'lsblk --ascii -M -o +HOTPLUG,ROTA,PHY-SEC,FSTYPE,MODEL,TRAN,WWN',
> 'ls -l /dev/disk/by-*/',
> 'iscsiadm -m node',
> 'iscsiadm -m session',
Tested this by adding SCSI, IDE, and SATA hard disks to a VM and
manually setting a WWN via qm set. I noticed that the output of lsblk
does only show a WWN for the SCSI disk, but not for the others. smartctl
-i does return a WWN for the SATA disk and scsi_id also seems to
recognize the manually set value. I think it could make sense to add a
note to the documentation regarding the limitations of the lsblk output
in this regard?
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [pve-devel] [PATCH manager] report: add WWN column to lsblk output
2025-04-01 8:04 ` Michael Köppl
@ 2025-04-01 9:56 ` Thomas Lamprecht
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2025-04-01 9:56 UTC (permalink / raw)
To: Proxmox VE development discussion, Michael Köppl, Friedrich Weber
Am 01.04.25 um 10:04 schrieb Michael Köppl:
> On 3/31/25 11:41, Friedrich Weber wrote:
>> WWNs (WWIDs) are useful information for debugging setups where
>> multipath is not (correctly) set up, as the WWN reveals which block
>> devices point to the same LUN. The report currently does not provide
>> WWNs in such scenarios. There is a symlink for the WWN under
>> /dev/disk/by-id/wwn-*, but if there are multiple block devices with
>> the same WWN, the symlink just points to one of them.
>>
>> Hence, add the WWN column to the lsblk output.
>>
>> Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
>> ---
>> PVE/Report.pm | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/PVE/Report.pm b/PVE/Report.pm
>> index 1ed91c8e..8f53823e 100644
>> --- a/PVE/Report.pm
>> +++ b/PVE/Report.pm
>> @@ -117,7 +117,7 @@ my $init_report_cmds = sub {
>> 'block devices' => {
>> order => 80,
>> cmds => [
>> - 'lsblk --ascii -M -o +HOTPLUG,ROTA,PHY-SEC,FSTYPE,MODEL,TRAN',
>> + 'lsblk --ascii -M -o +HOTPLUG,ROTA,PHY-SEC,FSTYPE,MODEL,TRAN,WWN',
>> 'ls -l /dev/disk/by-*/',
>> 'iscsiadm -m node',
>> 'iscsiadm -m session',
>
> Tested this by adding SCSI, IDE, and SATA hard disks to a VM and
> manually setting a WWN via qm set. I noticed that the output of lsblk
> does only show a WWN for the SCSI disk, but not for the others. smartctl
> -i does return a WWN for the SATA disk and scsi_id also seems to
> recognize the manually set value. I think it could make sense to add a
> note to the documentation regarding the limitations of the lsblk output
> in this regard?
I think that might be rather a general limitation of those older transport
buses and maybe also what QEMU allows (or can) expose over them, but I
think it's mostly the former. FWIW, I see a WWN for all physical disks
on my host, which includes both NVMe and SATA attached disks.
Note also that this is for the system report, which basically tries to
assemble lots of information that can be useful when debugging issues, e.g.,
for enterprise support, so normally not something end users interact
which much themselves, that's also why we do not have much documentation
for end-users in the first place.
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* [pve-devel] applied: [PATCH manager] report: add WWN column to lsblk output
2025-03-31 9:41 [pve-devel] [PATCH manager] report: add WWN column to lsblk output Friedrich Weber
2025-04-01 8:04 ` Michael Köppl
@ 2025-04-01 9:56 ` Thomas Lamprecht
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2025-04-01 9:56 UTC (permalink / raw)
To: Proxmox VE development discussion, Friedrich Weber
Am 31.03.25 um 11:41 schrieb Friedrich Weber:
> WWNs (WWIDs) are useful information for debugging setups where
> multipath is not (correctly) set up, as the WWN reveals which block
> devices point to the same LUN. The report currently does not provide
> WWNs in such scenarios. There is a symlink for the WWN under
> /dev/disk/by-id/wwn-*, but if there are multiple block devices with
> the same WWN, the symlink just points to one of them.
>
> Hence, add the WWN column to the lsblk output.
>
> Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
> ---
> PVE/Report.pm | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>
applied, thanks!
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-04-01 9:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-03-31 9:41 [pve-devel] [PATCH manager] report: add WWN column to lsblk output Friedrich Weber
2025-04-01 8:04 ` Michael Köppl
2025-04-01 9:56 ` Thomas Lamprecht
2025-04-01 9:56 ` [pve-devel] applied: " Thomas Lamprecht
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal