diff options
author | Anthony Liguori <anthony@codemonkey.ws> | 2013-09-17 09:50:23 -0500 |
---|---|---|
committer | Anthony Liguori <anthony@codemonkey.ws> | 2013-09-17 09:50:23 -0500 |
commit | 7d41364e712f00894759f7dbf2623a8b27b79a0e (patch) | |
tree | f636be5d9a3670711c37b3b15fb29aead8fbb0fb /stubs/uuid.c | |
parent | 25afd6eb150324c70164875853a9aede08c48aff (diff) | |
parent | f4ff3b7ba1bcb77d5b5cdbd6e695df793761170b (diff) |
Merge remote-tracking branch 'bonzini/scsi-next' into staging
# By Peter Lieven (3) and others
# Via Paolo Bonzini
* bonzini/scsi-next:
spapr-vscsi: Report error on unsupported MAD requests
spapr-vscsi: Adding VSCSI capabilities
iscsi: split discard requests in multiple parts
iscsi: add .bdrv_get_block_status
iscsi: add logical block provisioning information to iscsilun
hw/scsi/lsi53c895a: Use deposit32 rather than handcoded shift/mask
hw/scsi/lsi53c895a: Use sextract32 for sign-extension
scsi: Fix scsi_bus_legacy_add_drive() scsi-generic with serial
virtio-scsi: Make type virtio-scsi-common abstract
spapr-vscsi: add task management
scsi: prefer UUID to VM name for the initiator name
Message-id: 1378984634-765-1-git-send-email-pbonzini@redhat.com
Diffstat (limited to 'stubs/uuid.c')
-rw-r--r-- | stubs/uuid.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/stubs/uuid.c b/stubs/uuid.c new file mode 100644 index 0000000000..ffc0ed40ae --- /dev/null +++ b/stubs/uuid.c @@ -0,0 +1,12 @@ +#include "qemu-common.h" +#include "sysemu/sysemu.h" +#include "qmp-commands.h" + +UuidInfo *qmp_query_uuid(Error **errp) +{ + UuidInfo *info = g_malloc0(sizeof(*info)); + + info->UUID = g_strdup(UUID_NONE); + return info; +} + |