mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-21 20:15:17 +00:00
conf: Format spapr-vio addresses as 32-bit
Using 8 hex digits all the time, regardless of whether the actual value can fit in fewer, makes it more obvious to the user what the limits are. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
656d88f906
commit
fb91763d41
@ -7136,7 +7136,7 @@ virDomainDeviceInfoFormat(virBufferPtr buf,
|
||||
|
||||
case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO:
|
||||
if (info->addr.spaprvio.has_reg)
|
||||
virBufferAsprintf(&attrBuf, " reg='0x%llx'", info->addr.spaprvio.reg);
|
||||
virBufferAsprintf(&attrBuf, " reg='0x%08llx'", info->addr.spaprvio.reg);
|
||||
break;
|
||||
|
||||
case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW:
|
||||
|
@ -62,7 +62,7 @@
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>
|
||||
</controller>
|
||||
<controller type='scsi' index='3' model='ibmvscsi'>
|
||||
<address type='spapr-vio' reg='0x2000'/>
|
||||
<address type='spapr-vio' reg='0x00002000'/>
|
||||
</controller>
|
||||
<controller type='pci' index='0' model='pci-root'/>
|
||||
<input type='mouse' bus='ps2'/>
|
||||
|
@ -23,7 +23,7 @@
|
||||
</controller>
|
||||
<memballoon model='none'/>
|
||||
<nvram>
|
||||
<address type='spapr-vio' reg='0x4000'/>
|
||||
<address type='spapr-vio' reg='0x00004000'/>
|
||||
</nvram>
|
||||
<panic model='pseries'/>
|
||||
</devices>
|
||||
|
Loading…
x
Reference in New Issue
Block a user