2 * xen paravirt block device backend
4 * (c) Gerd Hoffmann <kraxel@redhat.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, see <http://www.gnu.org/licenses/>.
29 #include <sys/ioctl.h>
30 #include <sys/types.h>
37 #include <xen/io/xenbus.h>
40 #include "block_int.h"
41 #include "qemu-char.h"
42 #include "xen_blkif.h"
43 #include "xen_backend.h"
46 /* ------------------------------------------------------------- */
48 static int syncwrite
= 0;
49 static int batch_maps
= 0;
51 static int max_requests
= 32;
52 static int use_aio
= 1;
54 /* ------------------------------------------------------------- */
56 #define BLOCK_SIZE 512
57 #define IOCB_COUNT (BLKIF_MAX_SEGMENTS_PER_REQUEST + 2)
70 uint32_t domids
[BLKIF_MAX_SEGMENTS_PER_REQUEST
];
71 uint32_t refs
[BLKIF_MAX_SEGMENTS_PER_REQUEST
];
73 void *page
[BLKIF_MAX_SEGMENTS_PER_REQUEST
];
80 struct XenBlkDev
*blkdev
;
81 QLIST_ENTRY(ioreq
) list
;
85 struct XenDevice xendev
; /* must be first */
91 const char *fileproto
;
98 blkif_back_rings_t rings
;
103 QLIST_HEAD(inflight_head
, ioreq
) inflight
;
104 QLIST_HEAD(finished_head
, ioreq
) finished
;
105 QLIST_HEAD(freelist_head
, ioreq
) freelist
;
107 int requests_inflight
;
108 int requests_finished
;
110 /* qemu block driver */
112 BlockDriverState
*bs
;
116 /* ------------------------------------------------------------- */
118 static struct ioreq
*ioreq_start(struct XenBlkDev
*blkdev
)
120 struct ioreq
*ioreq
= NULL
;
122 if (QLIST_EMPTY(&blkdev
->freelist
)) {
123 if (blkdev
->requests_total
>= max_requests
) {
126 /* allocate new struct */
127 ioreq
= qemu_mallocz(sizeof(*ioreq
));
128 ioreq
->blkdev
= blkdev
;
129 blkdev
->requests_total
++;
130 qemu_iovec_init(&ioreq
->v
, BLKIF_MAX_SEGMENTS_PER_REQUEST
);
132 /* get one from freelist */
133 ioreq
= QLIST_FIRST(&blkdev
->freelist
);
134 QLIST_REMOVE(ioreq
, list
);
135 qemu_iovec_reset(&ioreq
->v
);
137 QLIST_INSERT_HEAD(&blkdev
->inflight
, ioreq
, list
);
138 blkdev
->requests_inflight
++;
144 static void ioreq_finish(struct ioreq
*ioreq
)
146 struct XenBlkDev
*blkdev
= ioreq
->blkdev
;
148 QLIST_REMOVE(ioreq
, list
);
149 QLIST_INSERT_HEAD(&blkdev
->finished
, ioreq
, list
);
150 blkdev
->requests_inflight
--;
151 blkdev
->requests_finished
++;
154 static void ioreq_release(struct ioreq
*ioreq
)
156 struct XenBlkDev
*blkdev
= ioreq
->blkdev
;
158 QLIST_REMOVE(ioreq
, list
);
159 memset(ioreq
, 0, sizeof(*ioreq
));
160 ioreq
->blkdev
= blkdev
;
161 QLIST_INSERT_HEAD(&blkdev
->freelist
, ioreq
, list
);
162 blkdev
->requests_finished
--;
166 * translate request into iovec + start offset
167 * do sanity checks along the way
169 static int ioreq_parse(struct ioreq
*ioreq
)
171 struct XenBlkDev
*blkdev
= ioreq
->blkdev
;
176 xen_be_printf(&blkdev
->xendev
, 3,
177 "op %d, nr %d, handle %d, id %" PRId64
", sector %" PRId64
"\n",
178 ioreq
->req
.operation
, ioreq
->req
.nr_segments
,
179 ioreq
->req
.handle
, ioreq
->req
.id
, ioreq
->req
.sector_number
);
180 switch (ioreq
->req
.operation
) {
182 ioreq
->prot
= PROT_WRITE
; /* to memory */
184 case BLKIF_OP_WRITE_BARRIER
:
185 if (!ioreq
->req
.nr_segments
) {
190 ioreq
->presync
= ioreq
->postsync
= 1;
194 ioreq
->prot
= PROT_READ
; /* from memory */
200 xen_be_printf(&blkdev
->xendev
, 0, "error: unknown operation (%d)\n",
201 ioreq
->req
.operation
);
205 if (ioreq
->req
.operation
!= BLKIF_OP_READ
&& blkdev
->mode
[0] != 'w') {
206 xen_be_printf(&blkdev
->xendev
, 0, "error: write req for ro device\n");
210 ioreq
->start
= ioreq
->req
.sector_number
* blkdev
->file_blk
;
211 for (i
= 0; i
< ioreq
->req
.nr_segments
; i
++) {
212 if (i
== BLKIF_MAX_SEGMENTS_PER_REQUEST
) {
213 xen_be_printf(&blkdev
->xendev
, 0, "error: nr_segments too big\n");
216 if (ioreq
->req
.seg
[i
].first_sect
> ioreq
->req
.seg
[i
].last_sect
) {
217 xen_be_printf(&blkdev
->xendev
, 0, "error: first > last sector\n");
220 if (ioreq
->req
.seg
[i
].last_sect
* BLOCK_SIZE
>= XC_PAGE_SIZE
) {
221 xen_be_printf(&blkdev
->xendev
, 0, "error: page crossing\n");
225 ioreq
->domids
[i
] = blkdev
->xendev
.dom
;
226 ioreq
->refs
[i
] = ioreq
->req
.seg
[i
].gref
;
228 mem
= ioreq
->req
.seg
[i
].first_sect
* blkdev
->file_blk
;
229 len
= (ioreq
->req
.seg
[i
].last_sect
- ioreq
->req
.seg
[i
].first_sect
+ 1) * blkdev
->file_blk
;
230 qemu_iovec_add(&ioreq
->v
, (void*)mem
, len
);
232 if (ioreq
->start
+ ioreq
->v
.size
> blkdev
->file_size
) {
233 xen_be_printf(&blkdev
->xendev
, 0, "error: access beyond end of file\n");
239 ioreq
->status
= BLKIF_RSP_ERROR
;
243 static void ioreq_unmap(struct ioreq
*ioreq
)
245 XenGnttab gnt
= ioreq
->blkdev
->xendev
.gnttabdev
;
248 if (ioreq
->v
.niov
== 0) {
255 if (xc_gnttab_munmap(gnt
, ioreq
->pages
, ioreq
->v
.niov
) != 0) {
256 xen_be_printf(&ioreq
->blkdev
->xendev
, 0, "xc_gnttab_munmap failed: %s\n",
259 ioreq
->blkdev
->cnt_map
-= ioreq
->v
.niov
;
262 for (i
= 0; i
< ioreq
->v
.niov
; i
++) {
263 if (!ioreq
->page
[i
]) {
266 if (xc_gnttab_munmap(gnt
, ioreq
->page
[i
], 1) != 0) {
267 xen_be_printf(&ioreq
->blkdev
->xendev
, 0, "xc_gnttab_munmap failed: %s\n",
270 ioreq
->blkdev
->cnt_map
--;
271 ioreq
->page
[i
] = NULL
;
276 static int ioreq_map(struct ioreq
*ioreq
)
278 XenGnttab gnt
= ioreq
->blkdev
->xendev
.gnttabdev
;
281 if (ioreq
->v
.niov
== 0) {
285 ioreq
->pages
= xc_gnttab_map_grant_refs
286 (gnt
, ioreq
->v
.niov
, ioreq
->domids
, ioreq
->refs
, ioreq
->prot
);
287 if (ioreq
->pages
== NULL
) {
288 xen_be_printf(&ioreq
->blkdev
->xendev
, 0,
289 "can't map %d grant refs (%s, %d maps)\n",
290 ioreq
->v
.niov
, strerror(errno
), ioreq
->blkdev
->cnt_map
);
293 for (i
= 0; i
< ioreq
->v
.niov
; i
++) {
294 ioreq
->v
.iov
[i
].iov_base
= ioreq
->pages
+ i
* XC_PAGE_SIZE
+
295 (uintptr_t)ioreq
->v
.iov
[i
].iov_base
;
297 ioreq
->blkdev
->cnt_map
+= ioreq
->v
.niov
;
299 for (i
= 0; i
< ioreq
->v
.niov
; i
++) {
300 ioreq
->page
[i
] = xc_gnttab_map_grant_ref
301 (gnt
, ioreq
->domids
[i
], ioreq
->refs
[i
], ioreq
->prot
);
302 if (ioreq
->page
[i
] == NULL
) {
303 xen_be_printf(&ioreq
->blkdev
->xendev
, 0,
304 "can't map grant ref %d (%s, %d maps)\n",
305 ioreq
->refs
[i
], strerror(errno
), ioreq
->blkdev
->cnt_map
);
309 ioreq
->v
.iov
[i
].iov_base
= ioreq
->page
[i
] + (uintptr_t)ioreq
->v
.iov
[i
].iov_base
;
310 ioreq
->blkdev
->cnt_map
++;
316 static int ioreq_runio_qemu_sync(struct ioreq
*ioreq
)
318 struct XenBlkDev
*blkdev
= ioreq
->blkdev
;
322 if (ioreq
->req
.nr_segments
&& ioreq_map(ioreq
) == -1) {
325 if (ioreq
->presync
) {
326 bdrv_flush(blkdev
->bs
);
329 switch (ioreq
->req
.operation
) {
332 for (i
= 0; i
< ioreq
->v
.niov
; i
++) {
333 rc
= bdrv_read(blkdev
->bs
, pos
/ BLOCK_SIZE
,
334 ioreq
->v
.iov
[i
].iov_base
,
335 ioreq
->v
.iov
[i
].iov_len
/ BLOCK_SIZE
);
337 xen_be_printf(&blkdev
->xendev
, 0, "rd I/O error (%p, len %zd)\n",
338 ioreq
->v
.iov
[i
].iov_base
,
339 ioreq
->v
.iov
[i
].iov_len
);
342 pos
+= ioreq
->v
.iov
[i
].iov_len
;
346 case BLKIF_OP_WRITE_BARRIER
:
347 if (!ioreq
->req
.nr_segments
) {
351 for (i
= 0; i
< ioreq
->v
.niov
; i
++) {
352 rc
= bdrv_write(blkdev
->bs
, pos
/ BLOCK_SIZE
,
353 ioreq
->v
.iov
[i
].iov_base
,
354 ioreq
->v
.iov
[i
].iov_len
/ BLOCK_SIZE
);
356 xen_be_printf(&blkdev
->xendev
, 0, "wr I/O error (%p, len %zd)\n",
357 ioreq
->v
.iov
[i
].iov_base
,
358 ioreq
->v
.iov
[i
].iov_len
);
361 pos
+= ioreq
->v
.iov
[i
].iov_len
;
365 /* unknown operation (shouldn't happen -- parse catches this) */
369 if (ioreq
->postsync
) {
370 bdrv_flush(blkdev
->bs
);
372 ioreq
->status
= BLKIF_RSP_OKAY
;
382 ioreq
->status
= BLKIF_RSP_ERROR
;
386 static void qemu_aio_complete(void *opaque
, int ret
)
388 struct ioreq
*ioreq
= opaque
;
391 xen_be_printf(&ioreq
->blkdev
->xendev
, 0, "%s I/O error\n",
392 ioreq
->req
.operation
== BLKIF_OP_READ
? "read" : "write");
396 ioreq
->aio_inflight
--;
397 if (ioreq
->aio_inflight
> 0) {
401 ioreq
->status
= ioreq
->aio_errors
? BLKIF_RSP_ERROR
: BLKIF_RSP_OKAY
;
404 qemu_bh_schedule(ioreq
->blkdev
->bh
);
407 static int ioreq_runio_qemu_aio(struct ioreq
*ioreq
)
409 struct XenBlkDev
*blkdev
= ioreq
->blkdev
;
411 if (ioreq
->req
.nr_segments
&& ioreq_map(ioreq
) == -1) {
415 ioreq
->aio_inflight
++;
416 if (ioreq
->presync
) {
417 bdrv_flush(blkdev
->bs
); /* FIXME: aio_flush() ??? */
420 switch (ioreq
->req
.operation
) {
422 ioreq
->aio_inflight
++;
423 bdrv_aio_readv(blkdev
->bs
, ioreq
->start
/ BLOCK_SIZE
,
424 &ioreq
->v
, ioreq
->v
.size
/ BLOCK_SIZE
,
425 qemu_aio_complete
, ioreq
);
428 case BLKIF_OP_WRITE_BARRIER
:
429 if (!ioreq
->req
.nr_segments
) {
432 ioreq
->aio_inflight
++;
433 bdrv_aio_writev(blkdev
->bs
, ioreq
->start
/ BLOCK_SIZE
,
434 &ioreq
->v
, ioreq
->v
.size
/ BLOCK_SIZE
,
435 qemu_aio_complete
, ioreq
);
438 /* unknown operation (shouldn't happen -- parse catches this) */
442 if (ioreq
->postsync
) {
443 bdrv_flush(blkdev
->bs
); /* FIXME: aio_flush() ??? */
445 qemu_aio_complete(ioreq
, 0);
453 ioreq
->status
= BLKIF_RSP_ERROR
;
457 static int blk_send_response_one(struct ioreq
*ioreq
)
459 struct XenBlkDev
*blkdev
= ioreq
->blkdev
;
461 int have_requests
= 0;
462 blkif_response_t resp
;
465 resp
.id
= ioreq
->req
.id
;
466 resp
.operation
= ioreq
->req
.operation
;
467 resp
.status
= ioreq
->status
;
469 /* Place on the response ring for the relevant domain. */
470 switch (blkdev
->protocol
) {
471 case BLKIF_PROTOCOL_NATIVE
:
472 dst
= RING_GET_RESPONSE(&blkdev
->rings
.native
, blkdev
->rings
.native
.rsp_prod_pvt
);
474 case BLKIF_PROTOCOL_X86_32
:
475 dst
= RING_GET_RESPONSE(&blkdev
->rings
.x86_32_part
,
476 blkdev
->rings
.x86_32_part
.rsp_prod_pvt
);
478 case BLKIF_PROTOCOL_X86_64
:
479 dst
= RING_GET_RESPONSE(&blkdev
->rings
.x86_64_part
,
480 blkdev
->rings
.x86_64_part
.rsp_prod_pvt
);
485 memcpy(dst
, &resp
, sizeof(resp
));
486 blkdev
->rings
.common
.rsp_prod_pvt
++;
488 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blkdev
->rings
.common
, send_notify
);
489 if (blkdev
->rings
.common
.rsp_prod_pvt
== blkdev
->rings
.common
.req_cons
) {
491 * Tail check for pending requests. Allows frontend to avoid
492 * notifications if requests are already in flight (lower
493 * overheads and promotes batching).
495 RING_FINAL_CHECK_FOR_REQUESTS(&blkdev
->rings
.common
, have_requests
);
496 } else if (RING_HAS_UNCONSUMED_REQUESTS(&blkdev
->rings
.common
)) {
506 /* walk finished list, send outstanding responses, free requests */
507 static void blk_send_response_all(struct XenBlkDev
*blkdev
)
512 while (!QLIST_EMPTY(&blkdev
->finished
)) {
513 ioreq
= QLIST_FIRST(&blkdev
->finished
);
514 send_notify
+= blk_send_response_one(ioreq
);
515 ioreq_release(ioreq
);
518 xen_be_send_notify(&blkdev
->xendev
);
522 static int blk_get_request(struct XenBlkDev
*blkdev
, struct ioreq
*ioreq
, RING_IDX rc
)
524 switch (blkdev
->protocol
) {
525 case BLKIF_PROTOCOL_NATIVE
:
526 memcpy(&ioreq
->req
, RING_GET_REQUEST(&blkdev
->rings
.native
, rc
),
529 case BLKIF_PROTOCOL_X86_32
:
530 blkif_get_x86_32_req(&ioreq
->req
,
531 RING_GET_REQUEST(&blkdev
->rings
.x86_32_part
, rc
));
533 case BLKIF_PROTOCOL_X86_64
:
534 blkif_get_x86_64_req(&ioreq
->req
,
535 RING_GET_REQUEST(&blkdev
->rings
.x86_64_part
, rc
));
541 static void blk_handle_requests(struct XenBlkDev
*blkdev
)
546 blkdev
->more_work
= 0;
548 rc
= blkdev
->rings
.common
.req_cons
;
549 rp
= blkdev
->rings
.common
.sring
->req_prod
;
550 xen_rmb(); /* Ensure we see queued requests up to 'rp'. */
553 blk_send_response_all(blkdev
);
556 /* pull request from ring */
557 if (RING_REQUEST_CONS_OVERFLOW(&blkdev
->rings
.common
, rc
)) {
560 ioreq
= ioreq_start(blkdev
);
565 blk_get_request(blkdev
, ioreq
, rc
);
566 blkdev
->rings
.common
.req_cons
= ++rc
;
569 if (ioreq_parse(ioreq
) != 0) {
570 if (blk_send_response_one(ioreq
)) {
571 xen_be_send_notify(&blkdev
->xendev
);
573 ioreq_release(ioreq
);
578 /* run i/o in aio mode */
579 ioreq_runio_qemu_aio(ioreq
);
581 /* run i/o in sync mode */
582 ioreq_runio_qemu_sync(ioreq
);
586 blk_send_response_all(blkdev
);
589 if (blkdev
->more_work
&& blkdev
->requests_inflight
< max_requests
) {
590 qemu_bh_schedule(blkdev
->bh
);
594 /* ------------------------------------------------------------- */
596 static void blk_bh(void *opaque
)
598 struct XenBlkDev
*blkdev
= opaque
;
599 blk_handle_requests(blkdev
);
602 static void blk_alloc(struct XenDevice
*xendev
)
604 struct XenBlkDev
*blkdev
= container_of(xendev
, struct XenBlkDev
, xendev
);
606 QLIST_INIT(&blkdev
->inflight
);
607 QLIST_INIT(&blkdev
->finished
);
608 QLIST_INIT(&blkdev
->freelist
);
609 blkdev
->bh
= qemu_bh_new(blk_bh
, blkdev
);
610 if (xen_mode
!= XEN_EMULATE
) {
615 static int blk_init(struct XenDevice
*xendev
)
617 struct XenBlkDev
*blkdev
= container_of(xendev
, struct XenBlkDev
, xendev
);
618 int index
, qflags
, have_barriers
, info
= 0;
621 /* read xenstore entries */
622 if (blkdev
->params
== NULL
) {
623 blkdev
->params
= xenstore_read_be_str(&blkdev
->xendev
, "params");
624 h
= strchr(blkdev
->params
, ':');
626 blkdev
->fileproto
= blkdev
->params
;
627 blkdev
->filename
= h
+1;
630 blkdev
->fileproto
= "<unset>";
631 blkdev
->filename
= blkdev
->params
;
634 if (blkdev
->mode
== NULL
) {
635 blkdev
->mode
= xenstore_read_be_str(&blkdev
->xendev
, "mode");
637 if (blkdev
->type
== NULL
) {
638 blkdev
->type
= xenstore_read_be_str(&blkdev
->xendev
, "type");
640 if (blkdev
->dev
== NULL
) {
641 blkdev
->dev
= xenstore_read_be_str(&blkdev
->xendev
, "dev");
643 if (blkdev
->devtype
== NULL
) {
644 blkdev
->devtype
= xenstore_read_be_str(&blkdev
->xendev
, "device-type");
647 /* do we have all we need? */
648 if (blkdev
->params
== NULL
||
649 blkdev
->mode
== NULL
||
650 blkdev
->type
== NULL
||
651 blkdev
->dev
== NULL
) {
656 if (strcmp(blkdev
->mode
, "w") == 0) {
657 qflags
= BDRV_O_RDWR
;
660 info
|= VDISK_READONLY
;
664 if (blkdev
->devtype
&& !strcmp(blkdev
->devtype
, "cdrom")) {
668 /* init qemu block driver */
669 index
= (blkdev
->xendev
.dev
- 202 * 256) / 16;
670 blkdev
->dinfo
= drive_get(IF_XEN
, 0, index
);
671 if (!blkdev
->dinfo
) {
672 /* setup via xenbus -> create new block driver instance */
673 xen_be_printf(&blkdev
->xendev
, 2, "create new bdrv (xenbus setup)\n");
674 blkdev
->bs
= bdrv_new(blkdev
->dev
);
675 if (bdrv_open(blkdev
->bs
, blkdev
->filename
, qflags
,
676 bdrv_find_whitelisted_format(blkdev
->fileproto
)) != 0) {
677 bdrv_delete(blkdev
->bs
);
681 /* setup via qemu cmdline -> already setup for us */
682 xen_be_printf(&blkdev
->xendev
, 2, "get configured bdrv (cmdline setup)\n");
683 blkdev
->bs
= blkdev
->dinfo
->bdrv
;
685 blkdev
->file_blk
= BLOCK_SIZE
;
686 blkdev
->file_size
= bdrv_getlength(blkdev
->bs
);
687 if (blkdev
->file_size
< 0) {
688 xen_be_printf(&blkdev
->xendev
, 1, "bdrv_getlength: %d (%s) | drv %s\n",
689 (int)blkdev
->file_size
, strerror(-blkdev
->file_size
),
690 blkdev
->bs
->drv
? blkdev
->bs
->drv
->format_name
: "-");
691 blkdev
->file_size
= 0;
693 have_barriers
= blkdev
->bs
->drv
&& blkdev
->bs
->drv
->bdrv_flush
? 1 : 0;
695 xen_be_printf(xendev
, 1, "type \"%s\", fileproto \"%s\", filename \"%s\","
696 " size %" PRId64
" (%" PRId64
" MB)\n",
697 blkdev
->type
, blkdev
->fileproto
, blkdev
->filename
,
698 blkdev
->file_size
, blkdev
->file_size
>> 20);
701 xenstore_write_be_int(&blkdev
->xendev
, "feature-barrier", have_barriers
);
702 xenstore_write_be_int(&blkdev
->xendev
, "info", info
);
703 xenstore_write_be_int(&blkdev
->xendev
, "sector-size", blkdev
->file_blk
);
704 xenstore_write_be_int(&blkdev
->xendev
, "sectors",
705 blkdev
->file_size
/ blkdev
->file_blk
);
709 static int blk_connect(struct XenDevice
*xendev
)
711 struct XenBlkDev
*blkdev
= container_of(xendev
, struct XenBlkDev
, xendev
);
713 if (xenstore_read_fe_int(&blkdev
->xendev
, "ring-ref", &blkdev
->ring_ref
) == -1) {
716 if (xenstore_read_fe_int(&blkdev
->xendev
, "event-channel",
717 &blkdev
->xendev
.remote_port
) == -1) {
721 blkdev
->protocol
= BLKIF_PROTOCOL_NATIVE
;
722 if (blkdev
->xendev
.protocol
) {
723 if (strcmp(blkdev
->xendev
.protocol
, XEN_IO_PROTO_ABI_X86_32
) == 0) {
724 blkdev
->protocol
= BLKIF_PROTOCOL_X86_32
;
726 if (strcmp(blkdev
->xendev
.protocol
, XEN_IO_PROTO_ABI_X86_64
) == 0) {
727 blkdev
->protocol
= BLKIF_PROTOCOL_X86_64
;
731 blkdev
->sring
= xc_gnttab_map_grant_ref(blkdev
->xendev
.gnttabdev
,
734 PROT_READ
| PROT_WRITE
);
735 if (!blkdev
->sring
) {
740 switch (blkdev
->protocol
) {
741 case BLKIF_PROTOCOL_NATIVE
:
743 blkif_sring_t
*sring_native
= blkdev
->sring
;
744 BACK_RING_INIT(&blkdev
->rings
.native
, sring_native
, XC_PAGE_SIZE
);
747 case BLKIF_PROTOCOL_X86_32
:
749 blkif_x86_32_sring_t
*sring_x86_32
= blkdev
->sring
;
751 BACK_RING_INIT(&blkdev
->rings
.x86_32_part
, sring_x86_32
, XC_PAGE_SIZE
);
754 case BLKIF_PROTOCOL_X86_64
:
756 blkif_x86_64_sring_t
*sring_x86_64
= blkdev
->sring
;
758 BACK_RING_INIT(&blkdev
->rings
.x86_64_part
, sring_x86_64
, XC_PAGE_SIZE
);
763 xen_be_bind_evtchn(&blkdev
->xendev
);
765 xen_be_printf(&blkdev
->xendev
, 1, "ok: proto %s, ring-ref %d, "
766 "remote port %d, local port %d\n",
767 blkdev
->xendev
.protocol
, blkdev
->ring_ref
,
768 blkdev
->xendev
.remote_port
, blkdev
->xendev
.local_port
);
772 static void blk_disconnect(struct XenDevice
*xendev
)
774 struct XenBlkDev
*blkdev
= container_of(xendev
, struct XenBlkDev
, xendev
);
777 if (!blkdev
->dinfo
) {
778 /* close/delete only if we created it ourself */
779 bdrv_close(blkdev
->bs
);
780 bdrv_delete(blkdev
->bs
);
784 xen_be_unbind_evtchn(&blkdev
->xendev
);
787 xc_gnttab_munmap(blkdev
->xendev
.gnttabdev
, blkdev
->sring
, 1);
789 blkdev
->sring
= NULL
;
793 static int blk_free(struct XenDevice
*xendev
)
795 struct XenBlkDev
*blkdev
= container_of(xendev
, struct XenBlkDev
, xendev
);
798 while (!QLIST_EMPTY(&blkdev
->freelist
)) {
799 ioreq
= QLIST_FIRST(&blkdev
->freelist
);
800 QLIST_REMOVE(ioreq
, list
);
801 qemu_iovec_destroy(&ioreq
->v
);
805 qemu_free(blkdev
->params
);
806 qemu_free(blkdev
->mode
);
807 qemu_free(blkdev
->type
);
808 qemu_free(blkdev
->dev
);
809 qemu_free(blkdev
->devtype
);
810 qemu_bh_delete(blkdev
->bh
);
814 static void blk_event(struct XenDevice
*xendev
)
816 struct XenBlkDev
*blkdev
= container_of(xendev
, struct XenBlkDev
, xendev
);
818 qemu_bh_schedule(blkdev
->bh
);
821 struct XenDevOps xen_blkdev_ops
= {
822 .size
= sizeof(struct XenBlkDev
),
823 .flags
= DEVOPS_FLAG_NEED_GNTDEV
,
826 .connect
= blk_connect
,
827 .disconnect
= blk_disconnect
,