From 4b4c7208c9a56376ad3502325921e9c5b76a0845 Mon Sep 17 00:00:00 2001 From: Stefan Zimmermann Date: Wed, 4 Feb 2015 15:00:08 +0100 Subject: [PATCH] S390: ccw support for virsh attach-disk address parameter Adding ccw bus address support to the optional address parameter of virsh attach-disk. The format used is ccw:cssid. ssid.devno, e.g. ccw:0xfe.0x0.0x0201 Virtio-ccw devices must have their cssid set to 0xfe. Signed-off-by: Stefan Zimmermann Reviewed-by: Boris Fiuczynski Reviewed-by: Cornelia Huck --- tools/virsh-domain.c | 46 +++++++++++++++++++++++++++++++++++++++++++- tools/virsh.pod | 3 ++- 2 files changed, 47 insertions(+), 2 deletions(-) diff --git a/tools/virsh-domain.c b/tools/virsh-domain.c index bab44feb5d..358d61c6d4 100644 --- a/tools/virsh-domain.c +++ b/tools/virsh-domain.c @@ -404,6 +404,7 @@ enum { DISK_ADDR_TYPE_PCI, DISK_ADDR_TYPE_SCSI, DISK_ADDR_TYPE_IDE, + DISK_ADDR_TYPE_CCW, }; struct PCIAddress { @@ -425,12 +426,19 @@ struct IDEAddress { unsigned int unit; }; +struct CCWAddress { + unsigned int cssid; + unsigned int ssid; + unsigned int devno; +}; + struct DiskAddress { int type; union { struct PCIAddress pci; struct SCSIAddress scsi; struct IDEAddress ide; + struct CCWAddress ccw; } addr; }; @@ -513,9 +521,35 @@ static int str2IDEAddress(const char *str, struct IDEAddress *ideAddr) return 0; } +static int str2CCWAddress(const char *str, struct CCWAddress *ccwAddr) +{ + char *cssid, *ssid, *devno; + + if (!ccwAddr) + return -1; + if (!str) + return -1; + + cssid = (char *)str; + + if (virStrToLong_ui(cssid, &ssid, 0, &ccwAddr->cssid) != 0) + return -1; + + ssid++; + if (virStrToLong_ui(ssid, &devno, 0, &ccwAddr->ssid) != 0) + return -1; + + devno++; + if (virStrToLong_ui(devno, NULL, 0, &ccwAddr->devno) != 0) + return -1; + + return 0; +} + /* pci address pci:0000.00.0x0a.0 (domain:bus:slot:function) * ide disk address: ide:00.00.0 (controller:bus:unit) * scsi disk address: scsi:00.00.0 (controller:bus:unit) + * ccw disk address: ccw:0xfe.0.0000 (cssid:ssid:devno) */ static int str2DiskAddress(const char *str, struct DiskAddress *diskAddr) @@ -541,6 +575,9 @@ static int str2DiskAddress(const char *str, struct DiskAddress *diskAddr) } else if (STREQLEN(type, "ide", addr - type)) { diskAddr->type = DISK_ADDR_TYPE_IDE; return str2IDEAddress(addr + 1, &diskAddr->addr.ide); + } else if (STREQLEN(type, "ccw", addr - type)) { + diskAddr->type = DISK_ADDR_TYPE_CCW; + return str2CCWAddress(addr + 1, &diskAddr->addr.ccw); } return -1; @@ -675,8 +712,15 @@ cmdAttachDisk(vshControl *ctl, const vshCmd *cmd) if (vshCommandOptBool(cmd, "multifunction")) virBufferAddLit(&buf, " multifunction='on'"); virBufferAddLit(&buf, "/>\n"); + } else if (diskAddr.type == DISK_ADDR_TYPE_CCW) { + virBufferAsprintf(&buf, + "
\n", + diskAddr.addr.ccw.cssid, diskAddr.addr.ccw.ssid, + diskAddr.addr.ccw.devno); } else { - vshError(ctl, "%s", _("expecting a pci:0000.00.00.00 address.")); + vshError(ctl, "%s", + _("expecting a pci:0000.00.00.00 or ccw:00.0.0000 address.")); goto cleanup; } } else if (STRPREFIX((const char *)target, "sd")) { diff --git a/tools/virsh.pod b/tools/virsh.pod index e367e04ccf..a3f527fe72 100644 --- a/tools/virsh.pod +++ b/tools/virsh.pod @@ -2367,7 +2367,8 @@ this disk may be attached (QEMU only). I is the serial of disk device. I is the wwn of disk device. I indicates the disk needs rawio capability. I
is the address of disk device in the form of pci:domain.bus.slot.function, -scsi:controller.bus.unit or ide:controller.bus.unit. +scsi:controller.bus.unit, ide:controller.bus.unit or ccw:cssid.ssid.devno. +Virtio-ccw devices must have their cssid set to 0xfe. I indicates specified pci address is a multifunction pci device address.