dump: allow target to set the page size
[qemu/ar7.git] / block / gluster.c
blob0857c146457e1dd5528b1fab0a0d9087eaac1d57
1 /*
2 * GlusterFS backend for QEMU
4 * Copyright (C) 2012 Bharata B Rao <bharata@linux.vnet.ibm.com>
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
9 */
10 #include <glusterfs/api/glfs.h>
11 #include "block/block_int.h"
12 #include "qemu/uri.h"
14 typedef struct GlusterAIOCB {
15 int64_t size;
16 int ret;
17 QEMUBH *bh;
18 Coroutine *coroutine;
19 AioContext *aio_context;
20 } GlusterAIOCB;
22 typedef struct BDRVGlusterState {
23 struct glfs *glfs;
24 struct glfs_fd *fd;
25 } BDRVGlusterState;
27 typedef struct GlusterConf {
28 char *server;
29 int port;
30 char *volname;
31 char *image;
32 char *transport;
33 } GlusterConf;
35 static void qemu_gluster_gconf_free(GlusterConf *gconf)
37 if (gconf) {
38 g_free(gconf->server);
39 g_free(gconf->volname);
40 g_free(gconf->image);
41 g_free(gconf->transport);
42 g_free(gconf);
46 static int parse_volume_options(GlusterConf *gconf, char *path)
48 char *p, *q;
50 if (!path) {
51 return -EINVAL;
54 /* volume */
55 p = q = path + strspn(path, "/");
56 p += strcspn(p, "/");
57 if (*p == '\0') {
58 return -EINVAL;
60 gconf->volname = g_strndup(q, p - q);
62 /* image */
63 p += strspn(p, "/");
64 if (*p == '\0') {
65 return -EINVAL;
67 gconf->image = g_strdup(p);
68 return 0;
72 * file=gluster[+transport]://[server[:port]]/volname/image[?socket=...]
74 * 'gluster' is the protocol.
76 * 'transport' specifies the transport type used to connect to gluster
77 * management daemon (glusterd). Valid transport types are
78 * tcp, unix and rdma. If a transport type isn't specified, then tcp
79 * type is assumed.
81 * 'server' specifies the server where the volume file specification for
82 * the given volume resides. This can be either hostname, ipv4 address
83 * or ipv6 address. ipv6 address needs to be within square brackets [ ].
84 * If transport type is 'unix', then 'server' field should not be specified.
85 * The 'socket' field needs to be populated with the path to unix domain
86 * socket.
88 * 'port' is the port number on which glusterd is listening. This is optional
89 * and if not specified, QEMU will send 0 which will make gluster to use the
90 * default port. If the transport type is unix, then 'port' should not be
91 * specified.
93 * 'volname' is the name of the gluster volume which contains the VM image.
95 * 'image' is the path to the actual VM image that resides on gluster volume.
97 * Examples:
99 * file=gluster://1.2.3.4/testvol/a.img
100 * file=gluster+tcp://1.2.3.4/testvol/a.img
101 * file=gluster+tcp://1.2.3.4:24007/testvol/dir/a.img
102 * file=gluster+tcp://[1:2:3:4:5:6:7:8]/testvol/dir/a.img
103 * file=gluster+tcp://[1:2:3:4:5:6:7:8]:24007/testvol/dir/a.img
104 * file=gluster+tcp://server.domain.com:24007/testvol/dir/a.img
105 * file=gluster+unix:///testvol/dir/a.img?socket=/tmp/glusterd.socket
106 * file=gluster+rdma://1.2.3.4:24007/testvol/a.img
108 static int qemu_gluster_parseuri(GlusterConf *gconf, const char *filename)
110 URI *uri;
111 QueryParams *qp = NULL;
112 bool is_unix = false;
113 int ret = 0;
115 uri = uri_parse(filename);
116 if (!uri) {
117 return -EINVAL;
120 /* transport */
121 if (!uri->scheme || !strcmp(uri->scheme, "gluster")) {
122 gconf->transport = g_strdup("tcp");
123 } else if (!strcmp(uri->scheme, "gluster+tcp")) {
124 gconf->transport = g_strdup("tcp");
125 } else if (!strcmp(uri->scheme, "gluster+unix")) {
126 gconf->transport = g_strdup("unix");
127 is_unix = true;
128 } else if (!strcmp(uri->scheme, "gluster+rdma")) {
129 gconf->transport = g_strdup("rdma");
130 } else {
131 ret = -EINVAL;
132 goto out;
135 ret = parse_volume_options(gconf, uri->path);
136 if (ret < 0) {
137 goto out;
140 qp = query_params_parse(uri->query);
141 if (qp->n > 1 || (is_unix && !qp->n) || (!is_unix && qp->n)) {
142 ret = -EINVAL;
143 goto out;
146 if (is_unix) {
147 if (uri->server || uri->port) {
148 ret = -EINVAL;
149 goto out;
151 if (strcmp(qp->p[0].name, "socket")) {
152 ret = -EINVAL;
153 goto out;
155 gconf->server = g_strdup(qp->p[0].value);
156 } else {
157 gconf->server = g_strdup(uri->server ? uri->server : "localhost");
158 gconf->port = uri->port;
161 out:
162 if (qp) {
163 query_params_free(qp);
165 uri_free(uri);
166 return ret;
169 static struct glfs *qemu_gluster_init(GlusterConf *gconf, const char *filename,
170 Error **errp)
172 struct glfs *glfs = NULL;
173 int ret;
174 int old_errno;
176 ret = qemu_gluster_parseuri(gconf, filename);
177 if (ret < 0) {
178 error_setg(errp, "Usage: file=gluster[+transport]://[server[:port]]/"
179 "volname/image[?socket=...]");
180 errno = -ret;
181 goto out;
184 glfs = glfs_new(gconf->volname);
185 if (!glfs) {
186 goto out;
189 ret = glfs_set_volfile_server(glfs, gconf->transport, gconf->server,
190 gconf->port);
191 if (ret < 0) {
192 goto out;
196 * TODO: Use GF_LOG_ERROR instead of hard code value of 4 here when
197 * GlusterFS makes GF_LOG_* macros available to libgfapi users.
199 ret = glfs_set_logging(glfs, "-", 4);
200 if (ret < 0) {
201 goto out;
204 ret = glfs_init(glfs);
205 if (ret) {
206 error_setg_errno(errp, errno,
207 "Gluster connection failed for server=%s port=%d "
208 "volume=%s image=%s transport=%s", gconf->server,
209 gconf->port, gconf->volname, gconf->image,
210 gconf->transport);
212 /* glfs_init sometimes doesn't set errno although docs suggest that */
213 if (errno == 0)
214 errno = EINVAL;
216 goto out;
218 return glfs;
220 out:
221 if (glfs) {
222 old_errno = errno;
223 glfs_fini(glfs);
224 errno = old_errno;
226 return NULL;
229 static void qemu_gluster_complete_aio(void *opaque)
231 GlusterAIOCB *acb = (GlusterAIOCB *)opaque;
233 qemu_bh_delete(acb->bh);
234 acb->bh = NULL;
235 qemu_coroutine_enter(acb->coroutine, NULL);
239 * AIO callback routine called from GlusterFS thread.
241 static void gluster_finish_aiocb(struct glfs_fd *fd, ssize_t ret, void *arg)
243 GlusterAIOCB *acb = (GlusterAIOCB *)arg;
245 if (!ret || ret == acb->size) {
246 acb->ret = 0; /* Success */
247 } else if (ret < 0) {
248 acb->ret = ret; /* Read/Write failed */
249 } else {
250 acb->ret = -EIO; /* Partial read/write - fail it */
253 acb->bh = aio_bh_new(acb->aio_context, qemu_gluster_complete_aio, acb);
254 qemu_bh_schedule(acb->bh);
257 /* TODO Convert to fine grained options */
258 static QemuOptsList runtime_opts = {
259 .name = "gluster",
260 .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
261 .desc = {
263 .name = "filename",
264 .type = QEMU_OPT_STRING,
265 .help = "URL to the gluster image",
267 { /* end of list */ }
271 static void qemu_gluster_parse_flags(int bdrv_flags, int *open_flags)
273 assert(open_flags != NULL);
275 *open_flags |= O_BINARY;
277 if (bdrv_flags & BDRV_O_RDWR) {
278 *open_flags |= O_RDWR;
279 } else {
280 *open_flags |= O_RDONLY;
283 if ((bdrv_flags & BDRV_O_NOCACHE)) {
284 *open_flags |= O_DIRECT;
288 static int qemu_gluster_open(BlockDriverState *bs, QDict *options,
289 int bdrv_flags, Error **errp)
291 BDRVGlusterState *s = bs->opaque;
292 int open_flags = 0;
293 int ret = 0;
294 GlusterConf *gconf = g_new0(GlusterConf, 1);
295 QemuOpts *opts;
296 Error *local_err = NULL;
297 const char *filename;
299 opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
300 qemu_opts_absorb_qdict(opts, options, &local_err);
301 if (local_err) {
302 error_propagate(errp, local_err);
303 ret = -EINVAL;
304 goto out;
307 filename = qemu_opt_get(opts, "filename");
309 s->glfs = qemu_gluster_init(gconf, filename, errp);
310 if (!s->glfs) {
311 ret = -errno;
312 goto out;
315 qemu_gluster_parse_flags(bdrv_flags, &open_flags);
317 s->fd = glfs_open(s->glfs, gconf->image, open_flags);
318 if (!s->fd) {
319 ret = -errno;
322 out:
323 qemu_opts_del(opts);
324 qemu_gluster_gconf_free(gconf);
325 if (!ret) {
326 return ret;
328 if (s->fd) {
329 glfs_close(s->fd);
331 if (s->glfs) {
332 glfs_fini(s->glfs);
334 return ret;
337 typedef struct BDRVGlusterReopenState {
338 struct glfs *glfs;
339 struct glfs_fd *fd;
340 } BDRVGlusterReopenState;
343 static int qemu_gluster_reopen_prepare(BDRVReopenState *state,
344 BlockReopenQueue *queue, Error **errp)
346 int ret = 0;
347 BDRVGlusterReopenState *reop_s;
348 GlusterConf *gconf = NULL;
349 int open_flags = 0;
351 assert(state != NULL);
352 assert(state->bs != NULL);
354 state->opaque = g_new0(BDRVGlusterReopenState, 1);
355 reop_s = state->opaque;
357 qemu_gluster_parse_flags(state->flags, &open_flags);
359 gconf = g_new0(GlusterConf, 1);
361 reop_s->glfs = qemu_gluster_init(gconf, state->bs->filename, errp);
362 if (reop_s->glfs == NULL) {
363 ret = -errno;
364 goto exit;
367 reop_s->fd = glfs_open(reop_s->glfs, gconf->image, open_flags);
368 if (reop_s->fd == NULL) {
369 /* reops->glfs will be cleaned up in _abort */
370 ret = -errno;
371 goto exit;
374 exit:
375 /* state->opaque will be freed in either the _abort or _commit */
376 qemu_gluster_gconf_free(gconf);
377 return ret;
380 static void qemu_gluster_reopen_commit(BDRVReopenState *state)
382 BDRVGlusterReopenState *reop_s = state->opaque;
383 BDRVGlusterState *s = state->bs->opaque;
386 /* close the old */
387 if (s->fd) {
388 glfs_close(s->fd);
390 if (s->glfs) {
391 glfs_fini(s->glfs);
394 /* use the newly opened image / connection */
395 s->fd = reop_s->fd;
396 s->glfs = reop_s->glfs;
398 g_free(state->opaque);
399 state->opaque = NULL;
401 return;
405 static void qemu_gluster_reopen_abort(BDRVReopenState *state)
407 BDRVGlusterReopenState *reop_s = state->opaque;
409 if (reop_s == NULL) {
410 return;
413 if (reop_s->fd) {
414 glfs_close(reop_s->fd);
417 if (reop_s->glfs) {
418 glfs_fini(reop_s->glfs);
421 g_free(state->opaque);
422 state->opaque = NULL;
424 return;
427 #ifdef CONFIG_GLUSTERFS_ZEROFILL
428 static coroutine_fn int qemu_gluster_co_write_zeroes(BlockDriverState *bs,
429 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
431 int ret;
432 GlusterAIOCB acb;
433 BDRVGlusterState *s = bs->opaque;
434 off_t size = nb_sectors * BDRV_SECTOR_SIZE;
435 off_t offset = sector_num * BDRV_SECTOR_SIZE;
437 acb.size = size;
438 acb.ret = 0;
439 acb.coroutine = qemu_coroutine_self();
440 acb.aio_context = bdrv_get_aio_context(bs);
442 ret = glfs_zerofill_async(s->fd, offset, size, gluster_finish_aiocb, &acb);
443 if (ret < 0) {
444 return -errno;
447 qemu_coroutine_yield();
448 return acb.ret;
451 static inline bool gluster_supports_zerofill(void)
453 return 1;
456 static inline int qemu_gluster_zerofill(struct glfs_fd *fd, int64_t offset,
457 int64_t size)
459 return glfs_zerofill(fd, offset, size);
462 #else
463 static inline bool gluster_supports_zerofill(void)
465 return 0;
468 static inline int qemu_gluster_zerofill(struct glfs_fd *fd, int64_t offset,
469 int64_t size)
471 return 0;
473 #endif
475 static int qemu_gluster_create(const char *filename,
476 QemuOpts *opts, Error **errp)
478 struct glfs *glfs;
479 struct glfs_fd *fd;
480 int ret = 0;
481 int prealloc = 0;
482 int64_t total_size = 0;
483 char *tmp = NULL;
484 GlusterConf *gconf = g_new0(GlusterConf, 1);
486 glfs = qemu_gluster_init(gconf, filename, errp);
487 if (!glfs) {
488 ret = -errno;
489 goto out;
492 total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
493 BDRV_SECTOR_SIZE);
495 tmp = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
496 if (!tmp || !strcmp(tmp, "off")) {
497 prealloc = 0;
498 } else if (!strcmp(tmp, "full") &&
499 gluster_supports_zerofill()) {
500 prealloc = 1;
501 } else {
502 error_setg(errp, "Invalid preallocation mode: '%s'"
503 " or GlusterFS doesn't support zerofill API",
504 tmp);
505 ret = -EINVAL;
506 goto out;
509 fd = glfs_creat(glfs, gconf->image,
510 O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR | S_IWUSR);
511 if (!fd) {
512 ret = -errno;
513 } else {
514 if (!glfs_ftruncate(fd, total_size)) {
515 if (prealloc && qemu_gluster_zerofill(fd, 0, total_size)) {
516 ret = -errno;
518 } else {
519 ret = -errno;
522 if (glfs_close(fd) != 0) {
523 ret = -errno;
526 out:
527 g_free(tmp);
528 qemu_gluster_gconf_free(gconf);
529 if (glfs) {
530 glfs_fini(glfs);
532 return ret;
535 static coroutine_fn int qemu_gluster_co_rw(BlockDriverState *bs,
536 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, int write)
538 int ret;
539 GlusterAIOCB acb;
540 BDRVGlusterState *s = bs->opaque;
541 size_t size = nb_sectors * BDRV_SECTOR_SIZE;
542 off_t offset = sector_num * BDRV_SECTOR_SIZE;
544 acb.size = size;
545 acb.ret = 0;
546 acb.coroutine = qemu_coroutine_self();
547 acb.aio_context = bdrv_get_aio_context(bs);
549 if (write) {
550 ret = glfs_pwritev_async(s->fd, qiov->iov, qiov->niov, offset, 0,
551 gluster_finish_aiocb, &acb);
552 } else {
553 ret = glfs_preadv_async(s->fd, qiov->iov, qiov->niov, offset, 0,
554 gluster_finish_aiocb, &acb);
557 if (ret < 0) {
558 return -errno;
561 qemu_coroutine_yield();
562 return acb.ret;
565 static int qemu_gluster_truncate(BlockDriverState *bs, int64_t offset)
567 int ret;
568 BDRVGlusterState *s = bs->opaque;
570 ret = glfs_ftruncate(s->fd, offset);
571 if (ret < 0) {
572 return -errno;
575 return 0;
578 static coroutine_fn int qemu_gluster_co_readv(BlockDriverState *bs,
579 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
581 return qemu_gluster_co_rw(bs, sector_num, nb_sectors, qiov, 0);
584 static coroutine_fn int qemu_gluster_co_writev(BlockDriverState *bs,
585 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
587 return qemu_gluster_co_rw(bs, sector_num, nb_sectors, qiov, 1);
590 static coroutine_fn int qemu_gluster_co_flush_to_disk(BlockDriverState *bs)
592 int ret;
593 GlusterAIOCB acb;
594 BDRVGlusterState *s = bs->opaque;
596 acb.size = 0;
597 acb.ret = 0;
598 acb.coroutine = qemu_coroutine_self();
599 acb.aio_context = bdrv_get_aio_context(bs);
601 ret = glfs_fsync_async(s->fd, gluster_finish_aiocb, &acb);
602 if (ret < 0) {
603 return -errno;
606 qemu_coroutine_yield();
607 return acb.ret;
610 #ifdef CONFIG_GLUSTERFS_DISCARD
611 static coroutine_fn int qemu_gluster_co_discard(BlockDriverState *bs,
612 int64_t sector_num, int nb_sectors)
614 int ret;
615 GlusterAIOCB acb;
616 BDRVGlusterState *s = bs->opaque;
617 size_t size = nb_sectors * BDRV_SECTOR_SIZE;
618 off_t offset = sector_num * BDRV_SECTOR_SIZE;
620 acb.size = 0;
621 acb.ret = 0;
622 acb.coroutine = qemu_coroutine_self();
623 acb.aio_context = bdrv_get_aio_context(bs);
625 ret = glfs_discard_async(s->fd, offset, size, gluster_finish_aiocb, &acb);
626 if (ret < 0) {
627 return -errno;
630 qemu_coroutine_yield();
631 return acb.ret;
633 #endif
635 static int64_t qemu_gluster_getlength(BlockDriverState *bs)
637 BDRVGlusterState *s = bs->opaque;
638 int64_t ret;
640 ret = glfs_lseek(s->fd, 0, SEEK_END);
641 if (ret < 0) {
642 return -errno;
643 } else {
644 return ret;
648 static int64_t qemu_gluster_allocated_file_size(BlockDriverState *bs)
650 BDRVGlusterState *s = bs->opaque;
651 struct stat st;
652 int ret;
654 ret = glfs_fstat(s->fd, &st);
655 if (ret < 0) {
656 return -errno;
657 } else {
658 return st.st_blocks * 512;
662 static void qemu_gluster_close(BlockDriverState *bs)
664 BDRVGlusterState *s = bs->opaque;
666 if (s->fd) {
667 glfs_close(s->fd);
668 s->fd = NULL;
670 glfs_fini(s->glfs);
673 static int qemu_gluster_has_zero_init(BlockDriverState *bs)
675 /* GlusterFS volume could be backed by a block device */
676 return 0;
679 static QemuOptsList qemu_gluster_create_opts = {
680 .name = "qemu-gluster-create-opts",
681 .head = QTAILQ_HEAD_INITIALIZER(qemu_gluster_create_opts.head),
682 .desc = {
684 .name = BLOCK_OPT_SIZE,
685 .type = QEMU_OPT_SIZE,
686 .help = "Virtual disk size"
689 .name = BLOCK_OPT_PREALLOC,
690 .type = QEMU_OPT_STRING,
691 .help = "Preallocation mode (allowed values: off, full)"
693 { /* end of list */ }
697 static BlockDriver bdrv_gluster = {
698 .format_name = "gluster",
699 .protocol_name = "gluster",
700 .instance_size = sizeof(BDRVGlusterState),
701 .bdrv_needs_filename = true,
702 .bdrv_file_open = qemu_gluster_open,
703 .bdrv_reopen_prepare = qemu_gluster_reopen_prepare,
704 .bdrv_reopen_commit = qemu_gluster_reopen_commit,
705 .bdrv_reopen_abort = qemu_gluster_reopen_abort,
706 .bdrv_close = qemu_gluster_close,
707 .bdrv_create = qemu_gluster_create,
708 .bdrv_getlength = qemu_gluster_getlength,
709 .bdrv_get_allocated_file_size = qemu_gluster_allocated_file_size,
710 .bdrv_truncate = qemu_gluster_truncate,
711 .bdrv_co_readv = qemu_gluster_co_readv,
712 .bdrv_co_writev = qemu_gluster_co_writev,
713 .bdrv_co_flush_to_disk = qemu_gluster_co_flush_to_disk,
714 .bdrv_has_zero_init = qemu_gluster_has_zero_init,
715 #ifdef CONFIG_GLUSTERFS_DISCARD
716 .bdrv_co_discard = qemu_gluster_co_discard,
717 #endif
718 #ifdef CONFIG_GLUSTERFS_ZEROFILL
719 .bdrv_co_write_zeroes = qemu_gluster_co_write_zeroes,
720 #endif
721 .create_opts = &qemu_gluster_create_opts,
724 static BlockDriver bdrv_gluster_tcp = {
725 .format_name = "gluster",
726 .protocol_name = "gluster+tcp",
727 .instance_size = sizeof(BDRVGlusterState),
728 .bdrv_needs_filename = true,
729 .bdrv_file_open = qemu_gluster_open,
730 .bdrv_reopen_prepare = qemu_gluster_reopen_prepare,
731 .bdrv_reopen_commit = qemu_gluster_reopen_commit,
732 .bdrv_reopen_abort = qemu_gluster_reopen_abort,
733 .bdrv_close = qemu_gluster_close,
734 .bdrv_create = qemu_gluster_create,
735 .bdrv_getlength = qemu_gluster_getlength,
736 .bdrv_get_allocated_file_size = qemu_gluster_allocated_file_size,
737 .bdrv_truncate = qemu_gluster_truncate,
738 .bdrv_co_readv = qemu_gluster_co_readv,
739 .bdrv_co_writev = qemu_gluster_co_writev,
740 .bdrv_co_flush_to_disk = qemu_gluster_co_flush_to_disk,
741 .bdrv_has_zero_init = qemu_gluster_has_zero_init,
742 #ifdef CONFIG_GLUSTERFS_DISCARD
743 .bdrv_co_discard = qemu_gluster_co_discard,
744 #endif
745 #ifdef CONFIG_GLUSTERFS_ZEROFILL
746 .bdrv_co_write_zeroes = qemu_gluster_co_write_zeroes,
747 #endif
748 .create_opts = &qemu_gluster_create_opts,
751 static BlockDriver bdrv_gluster_unix = {
752 .format_name = "gluster",
753 .protocol_name = "gluster+unix",
754 .instance_size = sizeof(BDRVGlusterState),
755 .bdrv_needs_filename = true,
756 .bdrv_file_open = qemu_gluster_open,
757 .bdrv_reopen_prepare = qemu_gluster_reopen_prepare,
758 .bdrv_reopen_commit = qemu_gluster_reopen_commit,
759 .bdrv_reopen_abort = qemu_gluster_reopen_abort,
760 .bdrv_close = qemu_gluster_close,
761 .bdrv_create = qemu_gluster_create,
762 .bdrv_getlength = qemu_gluster_getlength,
763 .bdrv_get_allocated_file_size = qemu_gluster_allocated_file_size,
764 .bdrv_truncate = qemu_gluster_truncate,
765 .bdrv_co_readv = qemu_gluster_co_readv,
766 .bdrv_co_writev = qemu_gluster_co_writev,
767 .bdrv_co_flush_to_disk = qemu_gluster_co_flush_to_disk,
768 .bdrv_has_zero_init = qemu_gluster_has_zero_init,
769 #ifdef CONFIG_GLUSTERFS_DISCARD
770 .bdrv_co_discard = qemu_gluster_co_discard,
771 #endif
772 #ifdef CONFIG_GLUSTERFS_ZEROFILL
773 .bdrv_co_write_zeroes = qemu_gluster_co_write_zeroes,
774 #endif
775 .create_opts = &qemu_gluster_create_opts,
778 static BlockDriver bdrv_gluster_rdma = {
779 .format_name = "gluster",
780 .protocol_name = "gluster+rdma",
781 .instance_size = sizeof(BDRVGlusterState),
782 .bdrv_needs_filename = true,
783 .bdrv_file_open = qemu_gluster_open,
784 .bdrv_reopen_prepare = qemu_gluster_reopen_prepare,
785 .bdrv_reopen_commit = qemu_gluster_reopen_commit,
786 .bdrv_reopen_abort = qemu_gluster_reopen_abort,
787 .bdrv_close = qemu_gluster_close,
788 .bdrv_create = qemu_gluster_create,
789 .bdrv_getlength = qemu_gluster_getlength,
790 .bdrv_get_allocated_file_size = qemu_gluster_allocated_file_size,
791 .bdrv_truncate = qemu_gluster_truncate,
792 .bdrv_co_readv = qemu_gluster_co_readv,
793 .bdrv_co_writev = qemu_gluster_co_writev,
794 .bdrv_co_flush_to_disk = qemu_gluster_co_flush_to_disk,
795 .bdrv_has_zero_init = qemu_gluster_has_zero_init,
796 #ifdef CONFIG_GLUSTERFS_DISCARD
797 .bdrv_co_discard = qemu_gluster_co_discard,
798 #endif
799 #ifdef CONFIG_GLUSTERFS_ZEROFILL
800 .bdrv_co_write_zeroes = qemu_gluster_co_write_zeroes,
801 #endif
802 .create_opts = &qemu_gluster_create_opts,
805 static void bdrv_gluster_init(void)
807 bdrv_register(&bdrv_gluster_rdma);
808 bdrv_register(&bdrv_gluster_unix);
809 bdrv_register(&bdrv_gluster_tcp);
810 bdrv_register(&bdrv_gluster);
813 block_init(bdrv_gluster_init);