blob: 8583b130499af63e1b09c79aa0a698c4fcfd1399 [file] [log] [blame]
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001/******************************************************************************
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04002 *
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:
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04007 * drivers/block/xen-blkfront.c
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04008 *
9 * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
10 * Copyright (c) 2005, Christopher Clark
11 *
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:
17 *
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:
24 *
25 * The above copyright notice and this permission notice shall be included in
26 * all copies or substantial portions of the Software.
27 *
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.
35 */
36
37#include <linux/spinlock.h>
38#include <linux/kthread.h>
39#include <linux/list.h>
40#include <linux/delay.h>
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080041#include <linux/freezer.h>
Jeremy Fitzhardingeafd91d02009-09-15 14:12:37 -070042
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080043#include <xen/events.h>
44#include <xen/page.h>
45#include <asm/xen/hypervisor.h>
46#include <asm/xen/hypercall.h>
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040047#include "common.h"
48
Tom Goetz314146e2011-03-17 12:14:29 -040049#define WRITE_BARRIER (REQ_WRITE | REQ_FLUSH | REQ_FUA)
50
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040051/*
52 * These are rather arbitrary. They are fairly large because adjacent requests
53 * pulled from a communication ring are quite likely to end up being part of
54 * the same scatter/gather request at the disc.
55 *
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040056 * ** TRY INCREASING 'xen_blkif_reqs' IF WRITE SPEEDS SEEM TOO LOW **
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040057 *
58 * This will increase the chances of being able to write whole tracks.
59 * 64 should be enough to keep us competitive with Linux.
60 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040061static int xen_blkif_reqs = 64;
62module_param_named(reqs, xen_blkif_reqs, int, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040063MODULE_PARM_DESC(reqs, "Number of blkback requests to allocate");
64
65/* Run-time switchable: /sys/module/blkback/parameters/ */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040066static unsigned int log_stats;
67static unsigned int debug_lvl;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040068module_param(log_stats, int, 0644);
69module_param(debug_lvl, int, 0644);
70
71/*
72 * Each outstanding request that we've passed to the lower device layers has a
73 * 'pending_req' allocated to it. Each buffer_head that completes decrements
74 * the pendcnt towards zero. When it hits zero, the specified domain has a
75 * response queued for it, with the saved 'id' passed back.
76 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040077struct pending_req {
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -040078 struct blkif_st *blkif;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040079 u64 id;
80 int nr_pages;
81 atomic_t pendcnt;
82 unsigned short operation;
83 int status;
84 struct list_head free_list;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040085};
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040086
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040087#define BLKBACK_INVALID_HANDLE (~0)
88
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050089struct xen_blkbk {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040090 struct pending_req *pending_reqs;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040091 /* List of all 'pending_req' available */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050092 struct list_head pending_free;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040093 /* And its spinlock. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050094 spinlock_t pending_free_lock;
95 wait_queue_head_t pending_free_wq;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040096 /* The list of all pages that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050097 struct page **pending_pages;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040098 /* And the grant handles that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050099 grant_handle_t *pending_grant_handles;
100};
101
102static struct xen_blkbk *blkbk;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400103
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400104/*
105 * Little helpful macro to figure out the index and virtual address of the
106 * pending_pages[..]. For each 'pending_req' we have have up to
107 * BLKIF_MAX_SEGMENTS_PER_REQUEST (11) pages. The seg would be from 0 through
108 * 10 and would index in the pending_pages[..]. */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400109static inline int vaddr_pagenr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400110{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400111 return (req - blkbk->pending_reqs) *
112 BLKIF_MAX_SEGMENTS_PER_REQUEST + seg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400113}
114
Jan Beulichefe08a32010-02-05 14:19:33 -0500115#define pending_page(req, seg) pending_pages[vaddr_pagenr(req, seg)]
116
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400117static inline unsigned long vaddr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400118{
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500119 unsigned long pfn = page_to_pfn(blkbk->pending_page(req, seg));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400120 return (unsigned long)pfn_to_kaddr(pfn);
121}
122
123#define pending_handle(_req, _seg) \
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500124 (blkbk->pending_grant_handles[vaddr_pagenr(_req, _seg)])
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400125
126
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400127static int do_block_io_op(struct blkif_st *blkif);
128static void dispatch_rw_block_io(struct blkif_st *blkif,
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800129 struct blkif_request *req,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400130 struct pending_req *pending_req);
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400131static void make_response(struct blkif_st *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400132 unsigned short op, int st);
133
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400134/*
135 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400136 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400137static struct pending_req *alloc_req(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400138{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400139 struct pending_req *req = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400140 unsigned long flags;
141
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500142 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
143 if (!list_empty(&blkbk->pending_free)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400144 req = list_entry(blkbk->pending_free.next, struct pending_req,
145 free_list);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400146 list_del(&req->free_list);
147 }
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500148 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400149 return req;
150}
151
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400152/*
153 * Return the 'pending_req' structure back to the freepool. We also
154 * wake up the thread if it was waiting for a free page.
155 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400156static void free_req(struct pending_req *req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400157{
158 unsigned long flags;
159 int was_empty;
160
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500161 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
162 was_empty = list_empty(&blkbk->pending_free);
163 list_add(&req->free_list, &blkbk->pending_free);
164 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400165 if (was_empty)
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500166 wake_up(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400167}
168
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400169/*
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400170 * Routines for managing virtual block devices (vbds).
171 */
172
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400173
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400174static int vbd_translate(struct phys_req *req, struct blkif_st *blkif,
175 int operation)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400176{
177 struct vbd *vbd = &blkif->vbd;
178 int rc = -EACCES;
179
180 if ((operation != READ) && vbd->readonly)
181 goto out;
182
183 if (unlikely((req->sector_number + req->nr_sects) > vbd_sz(vbd)))
184 goto out;
185
186 req->dev = vbd->pdevice;
187 req->bdev = vbd->bdev;
188 rc = 0;
189
190 out:
191 return rc;
192}
193
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400194static void vbd_resize(struct blkif_st *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400195{
196 struct vbd *vbd = &blkif->vbd;
197 struct xenbus_transaction xbt;
198 int err;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400199 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400200 unsigned long long new_size = vbd_sz(vbd);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400201
202 printk(KERN_INFO "VBD Resize: Domid: %d, Device: (%d, %d)\n",
203 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
204 printk(KERN_INFO "VBD Resize: new size %llu\n", new_size);
205 vbd->size = new_size;
206again:
207 err = xenbus_transaction_start(&xbt);
208 if (err) {
209 printk(KERN_WARNING "Error starting transaction");
210 return;
211 }
212 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400213 (unsigned long long)vbd_sz(vbd));
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400214 if (err) {
215 printk(KERN_WARNING "Error writing new size");
216 goto abort;
217 }
218 /*
219 * Write the current state; we will use this to synchronize
220 * the front-end. If the current state is "connected" the
221 * front-end will get the new size information online.
222 */
223 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
224 if (err) {
225 printk(KERN_WARNING "Error writing the state");
226 goto abort;
227 }
228
229 err = xenbus_transaction_end(xbt, 0);
230 if (err == -EAGAIN)
231 goto again;
232 if (err)
233 printk(KERN_WARNING "Error ending transaction");
234abort:
235 xenbus_transaction_end(xbt, 1);
236}
237
238/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400239 * Notification from the guest OS.
240 */
241static void blkif_notify_work(struct blkif_st *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400242{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400243 blkif->waiting_reqs = 1;
244 wake_up(&blkif->wq);
245}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400246
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400247irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400248{
249 blkif_notify_work(dev_id);
250 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400251}
252
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400253/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400254 * SCHEDULER FUNCTIONS
255 */
256
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400257static void print_stats(struct blkif_st *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400258{
259 printk(KERN_DEBUG "%s: oo %3d | rd %4d | wr %4d | br %4d\n",
260 current->comm, blkif->st_oo_req,
261 blkif->st_rd_req, blkif->st_wr_req, blkif->st_br_req);
262 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
263 blkif->st_rd_req = 0;
264 blkif->st_wr_req = 0;
265 blkif->st_oo_req = 0;
266}
267
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400268int xen_blkif_schedule(void *arg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400269{
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400270 struct blkif_st *blkif = arg;
K. Y. Srinivasan2ccbfe22010-03-11 13:39:50 -0800271 struct vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400272
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400273 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400274
275 if (debug_lvl)
276 printk(KERN_DEBUG "%s: started\n", current->comm);
277
278 while (!kthread_should_stop()) {
Konrad Rzeszutek Wilk97961ef2011-04-26 12:57:59 -0400279 struct blk_plug plug;
280
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400281 if (try_to_freeze())
282 continue;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400283 if (unlikely(vbd->size != vbd_sz(vbd)))
K. Y. Srinivasan2ccbfe22010-03-11 13:39:50 -0800284 vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400285
286 wait_event_interruptible(
287 blkif->wq,
288 blkif->waiting_reqs || kthread_should_stop());
289 wait_event_interruptible(
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500290 blkbk->pending_free_wq,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400291 !list_empty(&blkbk->pending_free) ||
292 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400293
294 blkif->waiting_reqs = 0;
295 smp_mb(); /* clear flag *before* checking for work */
296
Konrad Rzeszutek Wilk97961ef2011-04-26 12:57:59 -0400297 blk_start_plug(&plug);
298
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400299 if (do_block_io_op(blkif))
300 blkif->waiting_reqs = 1;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400301
Konrad Rzeszutek Wilk97961ef2011-04-26 12:57:59 -0400302 blk_finish_plug(&plug);
303
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400304 if (log_stats && time_after(jiffies, blkif->st_print))
305 print_stats(blkif);
306 }
307
308 if (log_stats)
309 print_stats(blkif);
310 if (debug_lvl)
311 printk(KERN_DEBUG "%s: exiting\n", current->comm);
312
313 blkif->xenblkd = NULL;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400314 xen_blkif_put(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400315
316 return 0;
317}
318
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400319struct seg_buf {
320 unsigned long buf;
321 unsigned int nsec;
322};
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400323/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400324 * Unmap the grant references, and also remove the M2P over-rides
325 * used in the 'pending_req'.
326*/
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400327static void xen_blkbk_unmap(struct pending_req *req)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400328{
329 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
330 unsigned int i, invcount = 0;
331 grant_handle_t handle;
332 int ret;
333
334 for (i = 0; i < req->nr_pages; i++) {
335 handle = pending_handle(req, i);
336 if (handle == BLKBACK_INVALID_HANDLE)
337 continue;
338 gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
339 GNTMAP_host_map, handle);
340 pending_handle(req, i) = BLKBACK_INVALID_HANDLE;
341 invcount++;
342 }
343
344 ret = HYPERVISOR_grant_table_op(
345 GNTTABOP_unmap_grant_ref, unmap, invcount);
346 BUG_ON(ret);
347 /* Note, we use invcount, so nr->pages, so we can't index
348 * using vaddr(req, i).
349 */
350 for (i = 0; i < invcount; i++) {
351 ret = m2p_remove_override(
352 virt_to_page(unmap[i].host_addr), false);
353 if (ret) {
354 printk(KERN_ALERT "Failed to remove M2P override for " \
355 "%lx\n", (unsigned long)unmap[i].host_addr);
356 continue;
357 }
358 }
359}
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400360static int xen_blkbk_map(struct blkif_request *req, struct pending_req *pending_req,
361 struct seg_buf seg[])
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400362{
363 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
364 int i;
365 int nseg = req->nr_segments;
366 int ret = 0;
367 /* Fill out preq.nr_sects with proper amount of sectors, and setup
368 * assign map[..] with the PFN of the page in our domain with the
369 * corresponding grant reference for each page.
370 */
371 for (i = 0; i < nseg; i++) {
372 uint32_t flags;
373
374 flags = GNTMAP_host_map;
375 if (pending_req->operation != BLKIF_OP_READ)
376 flags |= GNTMAP_readonly;
377 gnttab_set_map_op(&map[i], vaddr(pending_req, i), flags,
378 req->u.rw.seg[i].gref, pending_req->blkif->domid);
379 }
380
381 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map, nseg);
382 BUG_ON(ret);
383
384 /* Now swizzel the MFN in our domain with the MFN from the other domain
385 * so that when we access vaddr(pending_req,i) it has the contents of
386 * the page from the other domain.
387 */
388 for (i = 0; i < nseg; i++) {
389 if (unlikely(map[i].status != 0)) {
390 DPRINTK("invalid buffer -- could not remap it\n");
391 map[i].handle = BLKBACK_INVALID_HANDLE;
392 ret |= 1;
393 }
394
395 pending_handle(pending_req, i) = map[i].handle;
396
397 if (ret)
398 continue;
399
400 ret = m2p_add_override(PFN_DOWN(map[i].dev_bus_addr),
401 blkbk->pending_page(pending_req, i), false);
402 if (ret) {
403 printk(KERN_ALERT "Failed to install M2P override for"\
404 " %lx (ret: %d)\n", (unsigned long)
405 map[i].dev_bus_addr, ret);
406 /* We could switch over to GNTTABOP_copy */
407 continue;
408 }
409
410 seg[i].buf = map[i].dev_bus_addr |
411 (req->u.rw.seg[i].first_sect << 9);
412 }
413 return ret;
414}
415
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400416/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400417 * Completion callback on the bio's. Called as bh->b_end_io()
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400418 */
419
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400420static void __end_block_io_op(struct pending_req *pending_req, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400421{
422 /* An error fails the entire request. */
423 if ((pending_req->operation == BLKIF_OP_WRITE_BARRIER) &&
424 (error == -EOPNOTSUPP)) {
425 DPRINTK("blkback: write barrier op failed, not supported\n");
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400426 xen_blkbk_barrier(XBT_NIL, pending_req->blkif->be, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400427 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
428 } else if (error) {
429 DPRINTK("Buffer not up-to-date at end of operation, "
430 "error=%d\n", error);
431 pending_req->status = BLKIF_RSP_ERROR;
432 }
433
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400434 /* If all of the bio's have completed it is time to unmap
435 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400436 * the proper response on the ring.
437 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400438 if (atomic_dec_and_test(&pending_req->pendcnt)) {
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400439 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400440 make_response(pending_req->blkif, pending_req->id,
441 pending_req->operation, pending_req->status);
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400442 xen_blkif_put(pending_req->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400443 free_req(pending_req);
444 }
445}
446
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400447/*
448 * bio callback.
449 */
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800450static void end_block_io_op(struct bio *bio, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400451{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400452 __end_block_io_op(bio->bi_private, error);
453 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400454}
455
456
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400457
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400458/*
459 * Function to copy the from the ring buffer the 'struct blkif_request'
460 * (which has the sectors we want, number of them, grant references, etc),
461 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400462 */
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400463static int do_block_io_op(struct blkif_st *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400464{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800465 union blkif_back_rings *blk_rings = &blkif->blk_rings;
466 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400467 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400468 RING_IDX rc, rp;
469 int more_to_do = 0;
470
471 rc = blk_rings->common.req_cons;
472 rp = blk_rings->common.sring->req_prod;
473 rmb(); /* Ensure we see queued requests up to 'rp'. */
474
475 while (rc != rp) {
476
477 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
478 break;
479
Keir Fraser8270b452009-03-06 08:29:15 +0000480 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400481 more_to_do = 1;
482 break;
483 }
484
Keir Fraser8270b452009-03-06 08:29:15 +0000485 pending_req = alloc_req();
486 if (NULL == pending_req) {
487 blkif->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400488 more_to_do = 1;
489 break;
490 }
491
492 switch (blkif->blk_protocol) {
493 case BLKIF_PROTOCOL_NATIVE:
494 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
495 break;
496 case BLKIF_PROTOCOL_X86_32:
497 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
498 break;
499 case BLKIF_PROTOCOL_X86_64:
500 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
501 break;
502 default:
503 BUG();
504 }
505 blk_rings->common.req_cons = ++rc; /* before make_response() */
506
507 /* Apply all sanity checks to /private copy/ of request. */
508 barrier();
509
510 switch (req.operation) {
511 case BLKIF_OP_READ:
512 blkif->st_rd_req++;
513 dispatch_rw_block_io(blkif, &req, pending_req);
514 break;
515 case BLKIF_OP_WRITE_BARRIER:
516 blkif->st_br_req++;
517 /* fall through */
518 case BLKIF_OP_WRITE:
519 blkif->st_wr_req++;
520 dispatch_rw_block_io(blkif, &req, pending_req);
521 break;
522 default:
523 /* A good sign something is wrong: sleep for a while to
524 * avoid excessive CPU consumption by a bad guest. */
525 msleep(1);
526 DPRINTK("error: unknown block io operation [%d]\n",
527 req.operation);
528 make_response(blkif, req.id, req.operation,
529 BLKIF_RSP_ERROR);
530 free_req(pending_req);
531 break;
532 }
533
534 /* Yield point for this unbounded loop. */
535 cond_resched();
536 }
537
538 return more_to_do;
539}
540
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400541/*
542 * Transumation of the 'struct blkif_request' to a proper 'struct bio'
543 * and call the 'submit_bio' to pass it to the underlaying storage.
544 */
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400545static void dispatch_rw_block_io(struct blkif_st *blkif,
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800546 struct blkif_request *req,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400547 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400548{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400549 struct phys_req preq;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400550 struct seg_buf seg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400551 unsigned int nseg;
552 struct bio *bio = NULL;
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400553 struct bio *biolist[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400554 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400555 int operation;
556
557 switch (req->operation) {
558 case BLKIF_OP_READ:
559 operation = READ;
560 break;
561 case BLKIF_OP_WRITE:
Konrad Rzeszutek Wilk013c3ca2011-04-26 16:24:18 -0400562 operation = WRITE_ODIRECT;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400563 break;
564 case BLKIF_OP_WRITE_BARRIER:
Tom Goetz314146e2011-03-17 12:14:29 -0400565 operation = WRITE_BARRIER;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400566 break;
567 default:
568 operation = 0; /* make gcc happy */
569 BUG();
570 }
571
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400572 /* Check that the number of segments is sane. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400573 nseg = req->nr_segments;
Tom Goetz314146e2011-03-17 12:14:29 -0400574 if (unlikely(nseg == 0 && operation != WRITE_BARRIER) ||
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400575 unlikely(nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
576 DPRINTK("Bad number of segments in request (%d)\n", nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400577 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400578 goto fail_response;
579 }
580
581 preq.dev = req->handle;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500582 preq.sector_number = req->u.rw.sector_number;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400583 preq.nr_sects = 0;
584
585 pending_req->blkif = blkif;
586 pending_req->id = req->id;
587 pending_req->operation = req->operation;
588 pending_req->status = BLKIF_RSP_OKAY;
589 pending_req->nr_pages = nseg;
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400590
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400591 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500592 seg[i].nsec = req->u.rw.seg[i].last_sect -
593 req->u.rw.seg[i].first_sect + 1;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500594 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
595 (req->u.rw.seg[i].last_sect < req->u.rw.seg[i].first_sect))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400596 goto fail_response;
597 preq.nr_sects += seg[i].nsec;
Konrad Rzeszutek Wilk976222e2011-04-15 11:38:29 -0400598
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400599 }
600
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400601 if (vbd_translate(&preq, blkif, operation) != 0) {
602 DPRINTK("access denied: %s of [%llu,%llu] on dev=%04x\n",
603 operation == READ ? "read" : "write",
604 preq.sector_number,
605 preq.sector_number + preq.nr_sects, preq.dev);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400606 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400607 }
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400608 /* This check _MUST_ be done after vbd_translate as the preq.bdev
609 * is set there. */
610 for (i = 0; i < nseg; i++) {
611 if (((int)preq.sector_number|(int)seg[i].nsec) &
612 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
613 DPRINTK("Misaligned I/O request from domain %d",
614 blkif->domid);
615 goto fail_response;
616 }
617 }
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400618 /* If we have failed at this point, we need to undo the M2P override,
619 * set gnttab_set_unmap_op on all of the grant references and perform
620 * the hypercall to unmap the grants - that is all done in
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400621 * xen_blkbk_unmap.
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400622 */
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400623 if (xen_blkbk_map(req, pending_req, seg))
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400624 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400625
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400626 /* This corresponding blkif_put is done in __end_block_io_op */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400627 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400628
629 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400630 while ((bio == NULL) ||
631 (bio_add_page(bio,
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500632 blkbk->pending_page(pending_req, i),
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400633 seg[i].nsec << 9,
634 seg[i].buf & ~PAGE_MASK) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400635
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400636 bio = biolist[nbio++] = bio_alloc(GFP_KERNEL, nseg-i);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400637 if (unlikely(bio == NULL))
638 goto fail_put_bio;
639
640 bio->bi_bdev = preq.bdev;
641 bio->bi_private = pending_req;
642 bio->bi_end_io = end_block_io_op;
643 bio->bi_sector = preq.sector_number;
644 }
645
646 preq.sector_number += seg[i].nsec;
647 }
648
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400649 /* This will be hit if the operation was a barrier. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400650 if (!bio) {
Tom Goetz314146e2011-03-17 12:14:29 -0400651 BUG_ON(operation != WRITE_BARRIER);
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400652 bio = biolist[nbio++] = bio_alloc(GFP_KERNEL, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400653 if (unlikely(bio == NULL))
654 goto fail_put_bio;
655
656 bio->bi_bdev = preq.bdev;
657 bio->bi_private = pending_req;
658 bio->bi_end_io = end_block_io_op;
659 bio->bi_sector = -1;
660 }
661
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400662
663 /* We set it one so that the last submit_bio does not have to call
664 * atomic_inc.
665 */
666 atomic_set(&pending_req->pendcnt, nbio);
667
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400668 for (i = 0; i < nbio; i++)
669 submit_bio(operation, biolist[i]);
670
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400671 if (operation == READ)
672 blkif->st_rd_sect += preq.nr_sects;
Tom Goetz314146e2011-03-17 12:14:29 -0400673 else if (operation == WRITE || operation == WRITE_BARRIER)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400674 blkif->st_wr_sect += preq.nr_sects;
675
676 return;
677
678 fail_flush:
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400679 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400680 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -0400681 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400682 make_response(blkif, req->id, req->operation, BLKIF_RSP_ERROR);
683 free_req(pending_req);
684 msleep(1); /* back off a bit */
685 return;
686
687 fail_put_bio:
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400688 for (i = 0; i < (nbio-1); i++)
689 bio_put(biolist[i]);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400690 __end_block_io_op(pending_req, -EINVAL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400691 msleep(1); /* back off a bit */
692 return;
693}
694
695
696
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400697/*
698 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400699 */
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400700static void make_response(struct blkif_st *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400701 unsigned short op, int st)
702{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800703 struct blkif_response resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400704 unsigned long flags;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800705 union blkif_back_rings *blk_rings = &blkif->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400706 int more_to_do = 0;
707 int notify;
708
709 resp.id = id;
710 resp.operation = op;
711 resp.status = st;
712
713 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
714 /* Place on the response ring for the relevant domain. */
715 switch (blkif->blk_protocol) {
716 case BLKIF_PROTOCOL_NATIVE:
717 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
718 &resp, sizeof(resp));
719 break;
720 case BLKIF_PROTOCOL_X86_32:
721 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
722 &resp, sizeof(resp));
723 break;
724 case BLKIF_PROTOCOL_X86_64:
725 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
726 &resp, sizeof(resp));
727 break;
728 default:
729 BUG();
730 }
731 blk_rings->common.rsp_prod_pvt++;
732 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
733 if (blk_rings->common.rsp_prod_pvt == blk_rings->common.req_cons) {
734 /*
735 * Tail check for pending requests. Allows frontend to avoid
736 * notifications if requests are already in flight (lower
737 * overheads and promotes batching).
738 */
739 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
740
741 } else if (RING_HAS_UNCONSUMED_REQUESTS(&blk_rings->common)) {
742 more_to_do = 1;
743 }
744
745 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
746
747 if (more_to_do)
748 blkif_notify_work(blkif);
749 if (notify)
750 notify_remote_via_irq(blkif->irq);
751}
752
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400753static int __init xen_blkif_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400754{
755 int i, mmap_pages;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400756 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400757
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800758 if (!xen_pv_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400759 return -ENODEV;
760
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400761 blkbk = kzalloc(sizeof(struct xen_blkbk), GFP_KERNEL);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500762 if (!blkbk) {
763 printk(KERN_ALERT "%s: out of memory!\n", __func__);
764 return -ENOMEM;
765 }
766
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400767 mmap_pages = xen_blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400768
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500769 blkbk->pending_reqs = kmalloc(sizeof(blkbk->pending_reqs[0]) *
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400770 xen_blkif_reqs, GFP_KERNEL);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400771 blkbk->pending_grant_handles = kzalloc(sizeof(blkbk->pending_grant_handles[0]) *
772 mmap_pages, GFP_KERNEL);
773 blkbk->pending_pages = kzalloc(sizeof(blkbk->pending_pages[0]) *
774 mmap_pages, GFP_KERNEL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400775
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400776 if (!blkbk->pending_reqs || !blkbk->pending_grant_handles ||
777 !blkbk->pending_pages) {
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400778 rc = -ENOMEM;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400779 goto out_of_memory;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400780 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400781
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500782 for (i = 0; i < mmap_pages; i++) {
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500783 blkbk->pending_grant_handles[i] = BLKBACK_INVALID_HANDLE;
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400784 blkbk->pending_pages[i] = alloc_page(GFP_KERNEL);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500785 if (blkbk->pending_pages[i] == NULL) {
786 rc = -ENOMEM;
787 goto out_of_memory;
788 }
789 }
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400790 rc = xen_blkif_interface_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400791 if (rc)
792 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400793
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500794 memset(blkbk->pending_reqs, 0, sizeof(blkbk->pending_reqs));
795
796 INIT_LIST_HEAD(&blkbk->pending_free);
797 spin_lock_init(&blkbk->pending_free_lock);
798 init_waitqueue_head(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400799
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400800 for (i = 0; i < xen_blkif_reqs; i++)
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400801 list_add_tail(&blkbk->pending_reqs[i].free_list,
802 &blkbk->pending_free);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400803
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400804 rc = xen_blkif_xenbus_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400805 if (rc)
806 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400807
808 return 0;
809
810 out_of_memory:
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400811 printk(KERN_ERR "%s: out of memory\n", __func__);
812 failed_init:
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500813 kfree(blkbk->pending_reqs);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400814 kfree(blkbk->pending_grant_handles);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500815 for (i = 0; i < mmap_pages; i++) {
816 if (blkbk->pending_pages[i])
817 __free_page(blkbk->pending_pages[i]);
818 }
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400819 kfree(blkbk->pending_pages);
820 kfree(blkbk);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500821 blkbk = NULL;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400822 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400823}
824
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400825module_init(xen_blkif_init);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400826
827MODULE_LICENSE("Dual BSD/GPL");