diff options
author | Anthony Liguori | 2013-04-05 19:52:32 +0200 |
---|---|---|
committer | Anthony Liguori | 2013-04-05 19:52:32 +0200 |
commit | 54baa6f3c07a155939a6edda6d17706a6e9ab11c (patch) | |
tree | f723f313e06a4b0d51b72d27ca60889c92b06f52 /hw/xen_backend.h | |
parent | Merge remote-tracking branch 'kwolf/for-anthony' into staging (diff) | |
parent | Allow xen guests to plug disks of 1 TiB or more (diff) | |
download | qemu-54baa6f3c07a155939a6edda6d17706a6e9ab11c.tar.gz qemu-54baa6f3c07a155939a6edda6d17706a6e9ab11c.tar.xz qemu-54baa6f3c07a155939a6edda6d17706a6e9ab11c.zip |
Merge remote-tracking branch 'sstabellini/xen-2013-04-05' into staging
# By Alex Bligh (2) and Felipe Franciosi (2)
# Via Stefano Stabellini
* sstabellini/xen-2013-04-05:
Allow xen guests to plug disks of 1 TiB or more
Introduce 64 bit integer write interface to xenstore
Xen PV backend: Disable use of O_DIRECT by default as it results in crashes.
Xen PV backend: Move call to bdrv_new from blk_init to blk_connect
Diffstat (limited to 'hw/xen_backend.h')
-rw-r--r-- | hw/xen_backend.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/xen_backend.h b/hw/xen_backend.h index 6d5c699c51..d04b985d10 100644 --- a/hw/xen_backend.h +++ b/hw/xen_backend.h @@ -63,11 +63,13 @@ extern const char *xen_protocol; /* xenstore helper functions */ int xenstore_write_str(const char *base, const char *node, const char *val); int xenstore_write_int(const char *base, const char *node, int ival); +int xenstore_write_int64(const char *base, const char *node, int64_t ival); char *xenstore_read_str(const char *base, const char *node); int xenstore_read_int(const char *base, const char *node, int *ival); int xenstore_write_be_str(struct XenDevice *xendev, const char *node, const char *val); int xenstore_write_be_int(struct XenDevice *xendev, const char *node, int ival); +int xenstore_write_be_int64(struct XenDevice *xendev, const char *node, int64_t ival); char *xenstore_read_be_str(struct XenDevice *xendev, const char *node); int xenstore_read_be_int(struct XenDevice *xendev, const char *node, int *ival); char *xenstore_read_fe_str(struct XenDevice *xendev, const char *node); |