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:
Andrea Bolognani 2019-06-14 12:46:05 +02:00
parent 656d88f906
commit fb91763d41
3 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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'/>

View File

@ -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>