[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [RFC XEN PATCH 12/16] tools/libxl: build qemu options from xl vNVDIMM configs
For xl vNVDIMM configs vnvdimms = [ '/path/to/pmem0', '/path/to/pmem1', ... ] the following qemu options are built -machine <existing options>,nvdimm -m <existing options>,slots=$NR_SLOTS,maxmem=$MEM_SIZE -object memory-backend-xen,id=mem1,size=$PMEM0_SIZE,mem-path=/path/to/pmem0 -device nvdimm,id=nvdimm1,memdev=mem1 -object memory-backend-xen,id=mem2,size=$PMEM1_SIZE,mem-path=/path/to/pmem1 -device nvdimm,id=nvdimm2,memdev=mem2 ... where * NR_SLOTS is the number of entries in vnvdimms + 1, * MEM_SIZE is the total size of all RAM and NVDIMM devices, * PMEM#_SIZE is the size of the host pmem device/file '/path/to/pmem#'. Signed-off-by: Haozhong Zhang <haozhong.zhang@xxxxxxxxx> --- Cc: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Cc: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/libxl/libxl_dm.c | 113 +++++++++++++++++++++++++++++++++++++++++++- tools/libxl/libxl_types.idl | 8 ++++ tools/libxl/xl_cmdimpl.c | 16 +++++++ 3 files changed, 135 insertions(+), 2 deletions(-) diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c index ad366a8..6b8c019 100644 --- a/tools/libxl/libxl_dm.c +++ b/tools/libxl/libxl_dm.c @@ -24,6 +24,10 @@ #include <sys/types.h> #include <pwd.h> +#if defined(__linux__) +#include <linux/fs.h> +#endif + static const char *libxl_tapif_script(libxl__gc *gc) { #if defined(__linux__) || defined(__FreeBSD__) @@ -905,6 +909,86 @@ static char *qemu_disk_ide_drive_string(libxl__gc *gc, const char *target_path, return drive; } +#if defined(__linux__) + +static uint64_t libxl__build_dm_vnvdimm_args(libxl__gc *gc, flexarray_t *dm_args, + struct libxl_device_vnvdimm *dev, + int dev_no) +{ + int fd, rc; + struct stat st; + uint64_t size = 0; + char *arg; + + fd = open(dev->file, O_RDONLY); + if (fd < 0) { + LOG(ERROR, "failed to open file %s: %s", + dev->file, strerror(errno)); + goto out; + } + + if (stat(dev->file, &st)) { + LOG(ERROR, "failed to get status of file %s: %s", + dev->file, strerror(errno)); + goto out_fclose; + } + + switch (st.st_mode & S_IFMT) { + case S_IFBLK: + rc = ioctl(fd, BLKGETSIZE64, &size); + if (rc == -1) { + LOG(ERROR, "failed to get size of block device %s: %s", + dev->file, strerror(errno)); + size = 0; + } + break; + + case S_IFREG: + size = st.st_size; + break; + + default: + LOG(ERROR, "%s is not a block device or regular file", dev->file); + break; + } + + if (!size) + goto out_fclose; + + flexarray_append(dm_args, "-object"); + arg = GCSPRINTF("memory-backend-xen,id=mem%d,size=%"PRIu64",mem-path=%s", + dev_no + 1, size, dev->file); + flexarray_append(dm_args, arg); + + flexarray_append(dm_args, "-device"); + arg = GCSPRINTF("nvdimm,id=nvdimm%d,memdev=mem%d", dev_no + 1, dev_no + 1); + flexarray_append(dm_args, arg); + + out_fclose: + close(fd); + out: + return size; +} + +static uint64_t libxl__build_dm_vnvdimms_args( + libxl__gc *gc, flexarray_t *dm_args, + struct libxl_device_vnvdimm *vnvdimms, int num_vnvdimms) +{ + uint64_t total_size = 0, size; + int i; + + for (i = 0; i < num_vnvdimms; i++) { + size = libxl__build_dm_vnvdimm_args(gc, dm_args, &vnvdimms[i], i); + if (!size) + break; + total_size += size; + } + + return total_size; +} + +#endif /* __linux__ */ + static int libxl__build_device_model_args_new(libxl__gc *gc, const char *dm, int guest_domid, const libxl_domain_config *guest_config, @@ -918,13 +1002,18 @@ static int libxl__build_device_model_args_new(libxl__gc *gc, const libxl_device_nic *nics = guest_config->nics; const int num_disks = guest_config->num_disks; const int num_nics = guest_config->num_nics; +#if defined(__linux__) + const int num_vnvdimms = guest_config->num_vnvdimms; +#else + const int num_vnvdimms = 0; +#endif const libxl_vnc_info *vnc = libxl__dm_vnc(guest_config); const libxl_sdl_info *sdl = dm_sdl(guest_config); const char *keymap = dm_keymap(guest_config); char *machinearg; flexarray_t *dm_args, *dm_envs; int i, connection, devid, ret; - uint64_t ram_size; + uint64_t ram_size, ram_size_in_byte, vnvdimms_size = 0; const char *path, *chardev; char *user = NULL; @@ -1307,6 +1396,9 @@ static int libxl__build_device_model_args_new(libxl__gc *gc, } } + if (num_vnvdimms) + machinearg = libxl__sprintf(gc, "%s,nvdimm", machinearg); + flexarray_append(dm_args, machinearg); for (i = 0; b_info->extra_hvm && b_info->extra_hvm[i] != NULL; i++) flexarray_append(dm_args, b_info->extra_hvm[i]); @@ -1316,8 +1408,25 @@ static int libxl__build_device_model_args_new(libxl__gc *gc, } ram_size = libxl__sizekb_to_mb(b_info->max_memkb - b_info->video_memkb); + ram_size_in_byte = ram_size * 1024 * 1024; + if (num_vnvdimms) { + vnvdimms_size = libxl__build_dm_vnvdimms_args(gc, dm_args, + guest_config->vnvdimms, + num_vnvdimms); + if (ram_size_in_byte + vnvdimms_size < ram_size_in_byte) { + LOG(ERROR, + "total size of RAM (%"PRIu64") and NVDIMM (%"PRIu64") overflow", + ram_size_in_byte, vnvdimms_size); + return ERROR_INVAL; + } + } flexarray_append(dm_args, "-m"); - flexarray_append(dm_args, GCSPRINTF("%"PRId64, ram_size)); + flexarray_append(dm_args, + vnvdimms_size ? + GCSPRINTF("%"PRId64",slots=%d,maxmem=%"PRId64, + ram_size, num_vnvdimms + 1, + ROUNDUP(ram_size_in_byte + vnvdimms_size, 12)) : + GCSPRINTF("%"PRId64, ram_size)); if (b_info->type == LIBXL_DOMAIN_TYPE_HVM) { if (b_info->u.hvm.hdtype == LIBXL_HDTYPE_AHCI) diff --git a/tools/libxl/libxl_types.idl b/tools/libxl/libxl_types.idl index a32c751..76e4643 100644 --- a/tools/libxl/libxl_types.idl +++ b/tools/libxl/libxl_types.idl @@ -703,6 +703,13 @@ libxl_device_channel = Struct("device_channel", [ ])), ]) +libxl_device_vnvdimm = Struct("device_vnvdimm", [ + ("backend_domid", libxl_domid), + ("backend_domname", string), + ("devid", libxl_devid), + ("file", string), +]) + libxl_domain_config = Struct("domain_config", [ ("c_info", libxl_domain_create_info), ("b_info", libxl_domain_build_info), @@ -720,6 +727,7 @@ libxl_domain_config = Struct("domain_config", [ ("channels", Array(libxl_device_channel, "num_channels")), ("usbctrls", Array(libxl_device_usbctrl, "num_usbctrls")), ("usbdevs", Array(libxl_device_usbdev, "num_usbdevs")), + ("vnvdimms", Array(libxl_device_vnvdimm, "num_vnvdimms")), ("on_poweroff", libxl_action_on_shutdown), ("on_reboot", libxl_action_on_shutdown), diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index bb5afb8..e314b42 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -1330,6 +1330,7 @@ static void parse_config_data(const char *config_source, XLU_ConfigList *cpus, *vbds, *nics, *pcis, *cvfbs, *cpuids, *vtpms, *usbctrls, *usbdevs; XLU_ConfigList *channels, *ioports, *irqs, *iomem, *viridian, *dtdevs; + XLU_ConfigList *vnvdimms; int num_ioports, num_irqs, num_iomem, num_cpus, num_viridian; int pci_power_mgmt = 0; int pci_msitranslate = 0; @@ -2514,6 +2515,21 @@ skip_usbdev: } } + if (!xlu_cfg_get_list (config, "vnvdimms", &vnvdimms, 0, 0)) { +#if defined(__linux__) + while ((buf = xlu_cfg_get_listitem(vnvdimms, + d_config->num_vnvdimms)) != NULL) { + libxl_device_vnvdimm *vnvdimm = + ARRAY_EXTEND_INIT(d_config->vnvdimms, d_config->num_vnvdimms, + libxl_device_vnvdimm_init); + vnvdimm->file = strdup(buf); + } +#else + fprintf(stderr, "ERROR: vnvdimms is only supported on Linux\n"); + exit(-ERROR_FAIL); +#endif /* __linux__ */ + } + xlu_cfg_destroy(config); } -- 2.10.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |