xen/blkback: fix xenbus_transaction_start() hang caused by double xenbus_transaction_...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / block / xen-blkback / blkback.c
blobdba55e3a4a864655849e082141d8cd4c577520a0
1 /******************************************************************************
3 * Back-end of the driver for virtual block devices. This portion of the
4 * driver exports a 'unified' block-device interface that can be accessed
5 * by any operating system that implements a compatible front end. A
6 * reference front-end implementation can be found in:
7 * drivers/block/xen-blkfront.c
9 * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
10 * Copyright (c) 2005, Christopher Clark
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License version 2
14 * as published by the Free Software Foundation; or, when distributed
15 * separately from the Linux kernel or incorporated into other
16 * software packages, subject to the following license:
18 * Permission is hereby granted, free of charge, to any person obtaining a copy
19 * of this source file (the "Software"), to deal in the Software without
20 * restriction, including without limitation the rights to use, copy, modify,
21 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
22 * and to permit persons to whom the Software is furnished to do so, subject to
23 * the following conditions:
25 * The above copyright notice and this permission notice shall be included in
26 * all copies or substantial portions of the Software.
28 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
33 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
34 * IN THE SOFTWARE.
37 #include <linux/spinlock.h>
38 #include <linux/kthread.h>
39 #include <linux/list.h>
40 #include <linux/delay.h>
41 #include <linux/freezer.h>
43 #include <xen/events.h>
44 #include <xen/page.h>
45 #include <asm/xen/hypervisor.h>
46 #include <asm/xen/hypercall.h>
47 #include "common.h"
50 * These are rather arbitrary. They are fairly large because adjacent requests
51 * pulled from a communication ring are quite likely to end up being part of
52 * the same scatter/gather request at the disc.
54 * ** TRY INCREASING 'xen_blkif_reqs' IF WRITE SPEEDS SEEM TOO LOW **
56 * This will increase the chances of being able to write whole tracks.
57 * 64 should be enough to keep us competitive with Linux.
59 static int xen_blkif_reqs = 64;
60 module_param_named(reqs, xen_blkif_reqs, int, 0);
61 MODULE_PARM_DESC(reqs, "Number of blkback requests to allocate");
63 /* Run-time switchable: /sys/module/blkback/parameters/ */
64 static unsigned int log_stats;
65 module_param(log_stats, int, 0644);
68 * Each outstanding request that we've passed to the lower device layers has a
69 * 'pending_req' allocated to it. Each buffer_head that completes decrements
70 * the pendcnt towards zero. When it hits zero, the specified domain has a
71 * response queued for it, with the saved 'id' passed back.
73 struct pending_req {
74 struct xen_blkif *blkif;
75 u64 id;
76 int nr_pages;
77 atomic_t pendcnt;
78 unsigned short operation;
79 int status;
80 struct list_head free_list;
83 #define BLKBACK_INVALID_HANDLE (~0)
85 struct xen_blkbk {
86 struct pending_req *pending_reqs;
87 /* List of all 'pending_req' available */
88 struct list_head pending_free;
89 /* And its spinlock. */
90 spinlock_t pending_free_lock;
91 wait_queue_head_t pending_free_wq;
92 /* The list of all pages that are available. */
93 struct page **pending_pages;
94 /* And the grant handles that are available. */
95 grant_handle_t *pending_grant_handles;
98 static struct xen_blkbk *blkbk;
101 * Little helpful macro to figure out the index and virtual address of the
102 * pending_pages[..]. For each 'pending_req' we have have up to
103 * BLKIF_MAX_SEGMENTS_PER_REQUEST (11) pages. The seg would be from 0 through
104 * 10 and would index in the pending_pages[..].
106 static inline int vaddr_pagenr(struct pending_req *req, int seg)
108 return (req - blkbk->pending_reqs) *
109 BLKIF_MAX_SEGMENTS_PER_REQUEST + seg;
112 #define pending_page(req, seg) pending_pages[vaddr_pagenr(req, seg)]
114 static inline unsigned long vaddr(struct pending_req *req, int seg)
116 unsigned long pfn = page_to_pfn(blkbk->pending_page(req, seg));
117 return (unsigned long)pfn_to_kaddr(pfn);
120 #define pending_handle(_req, _seg) \
121 (blkbk->pending_grant_handles[vaddr_pagenr(_req, _seg)])
124 static int do_block_io_op(struct xen_blkif *blkif);
125 static int dispatch_rw_block_io(struct xen_blkif *blkif,
126 struct blkif_request *req,
127 struct pending_req *pending_req);
128 static void make_response(struct xen_blkif *blkif, u64 id,
129 unsigned short op, int st);
132 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
134 static struct pending_req *alloc_req(void)
136 struct pending_req *req = NULL;
137 unsigned long flags;
139 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
140 if (!list_empty(&blkbk->pending_free)) {
141 req = list_entry(blkbk->pending_free.next, struct pending_req,
142 free_list);
143 list_del(&req->free_list);
145 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
146 return req;
150 * Return the 'pending_req' structure back to the freepool. We also
151 * wake up the thread if it was waiting for a free page.
153 static void free_req(struct pending_req *req)
155 unsigned long flags;
156 int was_empty;
158 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
159 was_empty = list_empty(&blkbk->pending_free);
160 list_add(&req->free_list, &blkbk->pending_free);
161 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
162 if (was_empty)
163 wake_up(&blkbk->pending_free_wq);
167 * Routines for managing virtual block devices (vbds).
169 static int xen_vbd_translate(struct phys_req *req, struct xen_blkif *blkif,
170 int operation)
172 struct xen_vbd *vbd = &blkif->vbd;
173 int rc = -EACCES;
175 if ((operation != READ) && vbd->readonly)
176 goto out;
178 if (unlikely((req->sector_number + req->nr_sects) > vbd_sz(vbd)))
179 goto out;
181 req->dev = vbd->pdevice;
182 req->bdev = vbd->bdev;
183 rc = 0;
185 out:
186 return rc;
189 static void xen_vbd_resize(struct xen_blkif *blkif)
191 struct xen_vbd *vbd = &blkif->vbd;
192 struct xenbus_transaction xbt;
193 int err;
194 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
195 unsigned long long new_size = vbd_sz(vbd);
197 pr_info(DRV_PFX "VBD Resize: Domid: %d, Device: (%d, %d)\n",
198 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
199 pr_info(DRV_PFX "VBD Resize: new size %llu\n", new_size);
200 vbd->size = new_size;
201 again:
202 err = xenbus_transaction_start(&xbt);
203 if (err) {
204 pr_warn(DRV_PFX "Error starting transaction");
205 return;
207 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
208 (unsigned long long)vbd_sz(vbd));
209 if (err) {
210 pr_warn(DRV_PFX "Error writing new size");
211 goto abort;
214 * Write the current state; we will use this to synchronize
215 * the front-end. If the current state is "connected" the
216 * front-end will get the new size information online.
218 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
219 if (err) {
220 pr_warn(DRV_PFX "Error writing the state");
221 goto abort;
224 err = xenbus_transaction_end(xbt, 0);
225 if (err == -EAGAIN)
226 goto again;
227 if (err)
228 pr_warn(DRV_PFX "Error ending transaction");
229 return;
230 abort:
231 xenbus_transaction_end(xbt, 1);
235 * Notification from the guest OS.
237 static void blkif_notify_work(struct xen_blkif *blkif)
239 blkif->waiting_reqs = 1;
240 wake_up(&blkif->wq);
243 irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
245 blkif_notify_work(dev_id);
246 return IRQ_HANDLED;
250 * SCHEDULER FUNCTIONS
253 static void print_stats(struct xen_blkif *blkif)
255 pr_info("xen-blkback (%s): oo %3d | rd %4d | wr %4d | f %4d\n",
256 current->comm, blkif->st_oo_req,
257 blkif->st_rd_req, blkif->st_wr_req, blkif->st_f_req);
258 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
259 blkif->st_rd_req = 0;
260 blkif->st_wr_req = 0;
261 blkif->st_oo_req = 0;
264 int xen_blkif_schedule(void *arg)
266 struct xen_blkif *blkif = arg;
267 struct xen_vbd *vbd = &blkif->vbd;
269 xen_blkif_get(blkif);
271 while (!kthread_should_stop()) {
272 if (try_to_freeze())
273 continue;
274 if (unlikely(vbd->size != vbd_sz(vbd)))
275 xen_vbd_resize(blkif);
277 wait_event_interruptible(
278 blkif->wq,
279 blkif->waiting_reqs || kthread_should_stop());
280 wait_event_interruptible(
281 blkbk->pending_free_wq,
282 !list_empty(&blkbk->pending_free) ||
283 kthread_should_stop());
285 blkif->waiting_reqs = 0;
286 smp_mb(); /* clear flag *before* checking for work */
288 if (do_block_io_op(blkif))
289 blkif->waiting_reqs = 1;
291 if (log_stats && time_after(jiffies, blkif->st_print))
292 print_stats(blkif);
295 if (log_stats)
296 print_stats(blkif);
298 blkif->xenblkd = NULL;
299 xen_blkif_put(blkif);
301 return 0;
304 struct seg_buf {
305 unsigned long buf;
306 unsigned int nsec;
309 * Unmap the grant references, and also remove the M2P over-rides
310 * used in the 'pending_req'.
312 static void xen_blkbk_unmap(struct pending_req *req)
314 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
315 unsigned int i, invcount = 0;
316 grant_handle_t handle;
317 int ret;
319 for (i = 0; i < req->nr_pages; i++) {
320 handle = pending_handle(req, i);
321 if (handle == BLKBACK_INVALID_HANDLE)
322 continue;
323 gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
324 GNTMAP_host_map, handle);
325 pending_handle(req, i) = BLKBACK_INVALID_HANDLE;
326 invcount++;
329 ret = HYPERVISOR_grant_table_op(
330 GNTTABOP_unmap_grant_ref, unmap, invcount);
331 BUG_ON(ret);
333 * Note, we use invcount, so nr->pages, so we can't index
334 * using vaddr(req, i).
336 for (i = 0; i < invcount; i++) {
337 ret = m2p_remove_override(
338 virt_to_page(unmap[i].host_addr), false);
339 if (ret) {
340 pr_alert(DRV_PFX "Failed to remove M2P override for %lx\n",
341 (unsigned long)unmap[i].host_addr);
342 continue;
347 static int xen_blkbk_map(struct blkif_request *req,
348 struct pending_req *pending_req,
349 struct seg_buf seg[])
351 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
352 int i;
353 int nseg = req->nr_segments;
354 int ret = 0;
357 * Fill out preq.nr_sects with proper amount of sectors, and setup
358 * assign map[..] with the PFN of the page in our domain with the
359 * corresponding grant reference for each page.
361 for (i = 0; i < nseg; i++) {
362 uint32_t flags;
364 flags = GNTMAP_host_map;
365 if (pending_req->operation != BLKIF_OP_READ)
366 flags |= GNTMAP_readonly;
367 gnttab_set_map_op(&map[i], vaddr(pending_req, i), flags,
368 req->u.rw.seg[i].gref,
369 pending_req->blkif->domid);
372 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map, nseg);
373 BUG_ON(ret);
376 * Now swizzle the MFN in our domain with the MFN from the other domain
377 * so that when we access vaddr(pending_req,i) it has the contents of
378 * the page from the other domain.
380 for (i = 0; i < nseg; i++) {
381 if (unlikely(map[i].status != 0)) {
382 pr_debug(DRV_PFX "invalid buffer -- could not remap it\n");
383 map[i].handle = BLKBACK_INVALID_HANDLE;
384 ret |= 1;
387 pending_handle(pending_req, i) = map[i].handle;
389 if (ret)
390 continue;
392 ret = m2p_add_override(PFN_DOWN(map[i].dev_bus_addr),
393 blkbk->pending_page(pending_req, i), false);
394 if (ret) {
395 pr_alert(DRV_PFX "Failed to install M2P override for %lx (ret: %d)\n",
396 (unsigned long)map[i].dev_bus_addr, ret);
397 /* We could switch over to GNTTABOP_copy */
398 continue;
401 seg[i].buf = map[i].dev_bus_addr |
402 (req->u.rw.seg[i].first_sect << 9);
404 return ret;
408 * Completion callback on the bio's. Called as bh->b_end_io()
411 static void __end_block_io_op(struct pending_req *pending_req, int error)
413 /* An error fails the entire request. */
414 if ((pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE) &&
415 (error == -EOPNOTSUPP)) {
416 pr_debug(DRV_PFX "flush diskcache op failed, not supported\n");
417 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->blkif->be, 0);
418 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
419 } else if (error) {
420 pr_debug(DRV_PFX "Buffer not up-to-date at end of operation,"
421 " error=%d\n", error);
422 pending_req->status = BLKIF_RSP_ERROR;
426 * If all of the bio's have completed it is time to unmap
427 * the grant references associated with 'request' and provide
428 * the proper response on the ring.
430 if (atomic_dec_and_test(&pending_req->pendcnt)) {
431 xen_blkbk_unmap(pending_req);
432 make_response(pending_req->blkif, pending_req->id,
433 pending_req->operation, pending_req->status);
434 xen_blkif_put(pending_req->blkif);
435 free_req(pending_req);
440 * bio callback.
442 static void end_block_io_op(struct bio *bio, int error)
444 __end_block_io_op(bio->bi_private, error);
445 bio_put(bio);
451 * Function to copy the from the ring buffer the 'struct blkif_request'
452 * (which has the sectors we want, number of them, grant references, etc),
453 * and transmute it to the block API to hand it over to the proper block disk.
455 static int do_block_io_op(struct xen_blkif *blkif)
457 union blkif_back_rings *blk_rings = &blkif->blk_rings;
458 struct blkif_request req;
459 struct pending_req *pending_req;
460 RING_IDX rc, rp;
461 int more_to_do = 0;
463 rc = blk_rings->common.req_cons;
464 rp = blk_rings->common.sring->req_prod;
465 rmb(); /* Ensure we see queued requests up to 'rp'. */
467 while (rc != rp) {
469 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
470 break;
472 if (kthread_should_stop()) {
473 more_to_do = 1;
474 break;
477 pending_req = alloc_req();
478 if (NULL == pending_req) {
479 blkif->st_oo_req++;
480 more_to_do = 1;
481 break;
484 switch (blkif->blk_protocol) {
485 case BLKIF_PROTOCOL_NATIVE:
486 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
487 break;
488 case BLKIF_PROTOCOL_X86_32:
489 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
490 break;
491 case BLKIF_PROTOCOL_X86_64:
492 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
493 break;
494 default:
495 BUG();
497 blk_rings->common.req_cons = ++rc; /* before make_response() */
499 /* Apply all sanity checks to /private copy/ of request. */
500 barrier();
502 if (dispatch_rw_block_io(blkif, &req, pending_req))
503 break;
505 /* Yield point for this unbounded loop. */
506 cond_resched();
509 return more_to_do;
513 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
514 * and call the 'submit_bio' to pass it to the underlying storage.
516 static int dispatch_rw_block_io(struct xen_blkif *blkif,
517 struct blkif_request *req,
518 struct pending_req *pending_req)
520 struct phys_req preq;
521 struct seg_buf seg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
522 unsigned int nseg;
523 struct bio *bio = NULL;
524 struct bio *biolist[BLKIF_MAX_SEGMENTS_PER_REQUEST];
525 int i, nbio = 0;
526 int operation;
527 struct blk_plug plug;
529 switch (req->operation) {
530 case BLKIF_OP_READ:
531 blkif->st_rd_req++;
532 operation = READ;
533 break;
534 case BLKIF_OP_WRITE:
535 blkif->st_wr_req++;
536 operation = WRITE_ODIRECT;
537 break;
538 case BLKIF_OP_FLUSH_DISKCACHE:
539 blkif->st_f_req++;
540 operation = WRITE_FLUSH;
542 * The frontend likes to set this to -1, which xen_vbd_translate
543 * is alergic too.
545 req->u.rw.sector_number = 0;
546 break;
547 case BLKIF_OP_WRITE_BARRIER:
548 default:
549 operation = 0; /* make gcc happy */
550 goto fail_response;
551 break;
554 /* Check that the number of segments is sane. */
555 nseg = req->nr_segments;
556 if (unlikely(nseg == 0 && operation != WRITE_FLUSH) ||
557 unlikely(nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
558 pr_debug(DRV_PFX "Bad number of segments in request (%d)\n",
559 nseg);
560 /* Haven't submitted any bio's yet. */
561 goto fail_response;
564 preq.dev = req->handle;
565 preq.sector_number = req->u.rw.sector_number;
566 preq.nr_sects = 0;
568 pending_req->blkif = blkif;
569 pending_req->id = req->id;
570 pending_req->operation = req->operation;
571 pending_req->status = BLKIF_RSP_OKAY;
572 pending_req->nr_pages = nseg;
574 for (i = 0; i < nseg; i++) {
575 seg[i].nsec = req->u.rw.seg[i].last_sect -
576 req->u.rw.seg[i].first_sect + 1;
577 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
578 (req->u.rw.seg[i].last_sect < req->u.rw.seg[i].first_sect))
579 goto fail_response;
580 preq.nr_sects += seg[i].nsec;
584 if (xen_vbd_translate(&preq, blkif, operation) != 0) {
585 pr_debug(DRV_PFX "access denied: %s of [%llu,%llu] on dev=%04x\n",
586 operation == READ ? "read" : "write",
587 preq.sector_number,
588 preq.sector_number + preq.nr_sects, preq.dev);
589 goto fail_response;
593 * This check _MUST_ be done after xen_vbd_translate as the preq.bdev
594 * is set there.
596 for (i = 0; i < nseg; i++) {
597 if (((int)preq.sector_number|(int)seg[i].nsec) &
598 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
599 pr_debug(DRV_PFX "Misaligned I/O request from domain %d",
600 blkif->domid);
601 goto fail_response;
606 * If we have failed at this point, we need to undo the M2P override,
607 * set gnttab_set_unmap_op on all of the grant references and perform
608 * the hypercall to unmap the grants - that is all done in
609 * xen_blkbk_unmap.
611 if (xen_blkbk_map(req, pending_req, seg))
612 goto fail_flush;
614 /* This corresponding xen_blkif_put is done in __end_block_io_op */
615 xen_blkif_get(blkif);
617 for (i = 0; i < nseg; i++) {
618 while ((bio == NULL) ||
619 (bio_add_page(bio,
620 blkbk->pending_page(pending_req, i),
621 seg[i].nsec << 9,
622 seg[i].buf & ~PAGE_MASK) == 0)) {
624 bio = bio_alloc(GFP_KERNEL, nseg-i);
625 if (unlikely(bio == NULL))
626 goto fail_put_bio;
628 biolist[nbio++] = bio;
629 bio->bi_bdev = preq.bdev;
630 bio->bi_private = pending_req;
631 bio->bi_end_io = end_block_io_op;
632 bio->bi_sector = preq.sector_number;
635 preq.sector_number += seg[i].nsec;
638 /* This will be hit if the operation was a flush. */
639 if (!bio) {
640 BUG_ON(operation != WRITE_FLUSH);
642 bio = bio_alloc(GFP_KERNEL, 0);
643 if (unlikely(bio == NULL))
644 goto fail_put_bio;
646 biolist[nbio++] = bio;
647 bio->bi_bdev = preq.bdev;
648 bio->bi_private = pending_req;
649 bio->bi_end_io = end_block_io_op;
653 * We set it one so that the last submit_bio does not have to call
654 * atomic_inc.
656 atomic_set(&pending_req->pendcnt, nbio);
658 /* Get a reference count for the disk queue and start sending I/O */
659 blk_start_plug(&plug);
661 for (i = 0; i < nbio; i++)
662 submit_bio(operation, biolist[i]);
664 /* Let the I/Os go.. */
665 blk_finish_plug(&plug);
667 if (operation == READ)
668 blkif->st_rd_sect += preq.nr_sects;
669 else if (operation == WRITE || operation == WRITE_FLUSH)
670 blkif->st_wr_sect += preq.nr_sects;
672 return 0;
674 fail_flush:
675 xen_blkbk_unmap(pending_req);
676 fail_response:
677 /* Haven't submitted any bio's yet. */
678 make_response(blkif, req->id, req->operation, BLKIF_RSP_ERROR);
679 free_req(pending_req);
680 msleep(1); /* back off a bit */
681 return -EIO;
683 fail_put_bio:
684 for (i = 0; i < nbio; i++)
685 bio_put(biolist[i]);
686 __end_block_io_op(pending_req, -EINVAL);
687 msleep(1); /* back off a bit */
688 return -EIO;
694 * Put a response on the ring on how the operation fared.
696 static void make_response(struct xen_blkif *blkif, u64 id,
697 unsigned short op, int st)
699 struct blkif_response resp;
700 unsigned long flags;
701 union blkif_back_rings *blk_rings = &blkif->blk_rings;
702 int more_to_do = 0;
703 int notify;
705 resp.id = id;
706 resp.operation = op;
707 resp.status = st;
709 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
710 /* Place on the response ring for the relevant domain. */
711 switch (blkif->blk_protocol) {
712 case BLKIF_PROTOCOL_NATIVE:
713 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
714 &resp, sizeof(resp));
715 break;
716 case BLKIF_PROTOCOL_X86_32:
717 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
718 &resp, sizeof(resp));
719 break;
720 case BLKIF_PROTOCOL_X86_64:
721 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
722 &resp, sizeof(resp));
723 break;
724 default:
725 BUG();
727 blk_rings->common.rsp_prod_pvt++;
728 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
729 if (blk_rings->common.rsp_prod_pvt == blk_rings->common.req_cons) {
731 * Tail check for pending requests. Allows frontend to avoid
732 * notifications if requests are already in flight (lower
733 * overheads and promotes batching).
735 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
737 } else if (RING_HAS_UNCONSUMED_REQUESTS(&blk_rings->common)) {
738 more_to_do = 1;
741 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
743 if (more_to_do)
744 blkif_notify_work(blkif);
745 if (notify)
746 notify_remote_via_irq(blkif->irq);
749 static int __init xen_blkif_init(void)
751 int i, mmap_pages;
752 int rc = 0;
754 if (!xen_pv_domain())
755 return -ENODEV;
757 blkbk = kzalloc(sizeof(struct xen_blkbk), GFP_KERNEL);
758 if (!blkbk) {
759 pr_alert(DRV_PFX "%s: out of memory!\n", __func__);
760 return -ENOMEM;
763 mmap_pages = xen_blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST;
765 blkbk->pending_reqs = kmalloc(sizeof(blkbk->pending_reqs[0]) *
766 xen_blkif_reqs, GFP_KERNEL);
767 blkbk->pending_grant_handles = kzalloc(sizeof(blkbk->pending_grant_handles[0]) *
768 mmap_pages, GFP_KERNEL);
769 blkbk->pending_pages = kzalloc(sizeof(blkbk->pending_pages[0]) *
770 mmap_pages, GFP_KERNEL);
772 if (!blkbk->pending_reqs || !blkbk->pending_grant_handles ||
773 !blkbk->pending_pages) {
774 rc = -ENOMEM;
775 goto out_of_memory;
778 for (i = 0; i < mmap_pages; i++) {
779 blkbk->pending_grant_handles[i] = BLKBACK_INVALID_HANDLE;
780 blkbk->pending_pages[i] = alloc_page(GFP_KERNEL);
781 if (blkbk->pending_pages[i] == NULL) {
782 rc = -ENOMEM;
783 goto out_of_memory;
786 rc = xen_blkif_interface_init();
787 if (rc)
788 goto failed_init;
790 memset(blkbk->pending_reqs, 0, sizeof(blkbk->pending_reqs));
792 INIT_LIST_HEAD(&blkbk->pending_free);
793 spin_lock_init(&blkbk->pending_free_lock);
794 init_waitqueue_head(&blkbk->pending_free_wq);
796 for (i = 0; i < xen_blkif_reqs; i++)
797 list_add_tail(&blkbk->pending_reqs[i].free_list,
798 &blkbk->pending_free);
800 rc = xen_blkif_xenbus_init();
801 if (rc)
802 goto failed_init;
804 return 0;
806 out_of_memory:
807 pr_alert(DRV_PFX "%s: out of memory\n", __func__);
808 failed_init:
809 kfree(blkbk->pending_reqs);
810 kfree(blkbk->pending_grant_handles);
811 for (i = 0; i < mmap_pages; i++) {
812 if (blkbk->pending_pages[i])
813 __free_page(blkbk->pending_pages[i]);
815 kfree(blkbk->pending_pages);
816 kfree(blkbk);
817 blkbk = NULL;
818 return rc;
821 module_init(xen_blkif_init);
823 MODULE_LICENSE("Dual BSD/GPL");