blob: d7dd5cbdac5f0b388c41d262eb42cad50364b98a [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>
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020042#include <linux/bitmap.h>
Jeremy Fitzhardingeafd91d02009-09-15 14:12:37 -070043
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080044#include <xen/events.h>
45#include <xen/page.h>
Stefano Stabellinie79affc2012-08-08 17:21:14 +000046#include <xen/xen.h>
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080047#include <asm/xen/hypervisor.h>
48#include <asm/xen/hypercall.h>
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040049#include "common.h"
50
51/*
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;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040067module_param(log_stats, int, 0644);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040068
69/*
70 * Each outstanding request that we've passed to the lower device layers has a
71 * 'pending_req' allocated to it. Each buffer_head that completes decrements
72 * the pendcnt towards zero. When it hits zero, the specified domain has a
73 * response queued for it, with the saved 'id' passed back.
74 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040075struct pending_req {
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -040076 struct xen_blkif *blkif;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -040077 u64 id;
78 int nr_pages;
79 atomic_t pendcnt;
80 unsigned short operation;
81 int status;
82 struct list_head free_list;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020083 DECLARE_BITMAP(unmap_seg, BLKIF_MAX_SEGMENTS_PER_REQUEST);
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040084};
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040085
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040086#define BLKBACK_INVALID_HANDLE (~0)
87
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050088struct xen_blkbk {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040089 struct pending_req *pending_reqs;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040090 /* List of all 'pending_req' available */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050091 struct list_head pending_free;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040092 /* And its spinlock. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050093 spinlock_t pending_free_lock;
94 wait_queue_head_t pending_free_wq;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040095 /* The list of all pages that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050096 struct page **pending_pages;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040097 /* And the grant handles that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050098 grant_handle_t *pending_grant_handles;
99};
100
101static struct xen_blkbk *blkbk;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400102
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400103/*
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200104 * Maximum number of grant pages that can be mapped in blkback.
105 * BLKIF_MAX_SEGMENTS_PER_REQUEST * RING_SIZE is the maximum number of
106 * pages that blkback will persistently map.
107 * Currently, this is:
108 * RING_SIZE = 32 (for all known ring types)
109 * BLKIF_MAX_SEGMENTS_PER_REQUEST = 11
110 * sizeof(struct persistent_gnt) = 48
111 * So the maximum memory used to store the grants is:
112 * 32 * 11 * 48 = 16896 bytes
113 */
114static inline unsigned int max_mapped_grant_pages(enum blkif_protocol protocol)
115{
116 switch (protocol) {
117 case BLKIF_PROTOCOL_NATIVE:
118 return __CONST_RING_SIZE(blkif, PAGE_SIZE) *
119 BLKIF_MAX_SEGMENTS_PER_REQUEST;
120 case BLKIF_PROTOCOL_X86_32:
121 return __CONST_RING_SIZE(blkif_x86_32, PAGE_SIZE) *
122 BLKIF_MAX_SEGMENTS_PER_REQUEST;
123 case BLKIF_PROTOCOL_X86_64:
124 return __CONST_RING_SIZE(blkif_x86_64, PAGE_SIZE) *
125 BLKIF_MAX_SEGMENTS_PER_REQUEST;
126 default:
127 BUG();
128 }
129 return 0;
130}
131
132
133/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400134 * Little helpful macro to figure out the index and virtual address of the
135 * pending_pages[..]. For each 'pending_req' we have have up to
136 * BLKIF_MAX_SEGMENTS_PER_REQUEST (11) pages. The seg would be from 0 through
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400137 * 10 and would index in the pending_pages[..].
138 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400139static inline int vaddr_pagenr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400140{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400141 return (req - blkbk->pending_reqs) *
142 BLKIF_MAX_SEGMENTS_PER_REQUEST + seg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400143}
144
Jan Beulichefe08a32010-02-05 14:19:33 -0500145#define pending_page(req, seg) pending_pages[vaddr_pagenr(req, seg)]
146
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400147static inline unsigned long vaddr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400148{
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500149 unsigned long pfn = page_to_pfn(blkbk->pending_page(req, seg));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400150 return (unsigned long)pfn_to_kaddr(pfn);
151}
152
153#define pending_handle(_req, _seg) \
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500154 (blkbk->pending_grant_handles[vaddr_pagenr(_req, _seg)])
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400155
156
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400157static int do_block_io_op(struct xen_blkif *blkif);
158static int dispatch_rw_block_io(struct xen_blkif *blkif,
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400159 struct blkif_request *req,
160 struct pending_req *pending_req);
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400161static void make_response(struct xen_blkif *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400162 unsigned short op, int st);
163
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200164#define foreach_grant(pos, rbtree, node) \
165 for ((pos) = container_of(rb_first((rbtree)), typeof(*(pos)), node); \
166 &(pos)->node != NULL; \
167 (pos) = container_of(rb_next(&(pos)->node), typeof(*(pos)), node))
168
169
170static void add_persistent_gnt(struct rb_root *root,
171 struct persistent_gnt *persistent_gnt)
172{
173 struct rb_node **new = &(root->rb_node), *parent = NULL;
174 struct persistent_gnt *this;
175
176 /* Figure out where to put new node */
177 while (*new) {
178 this = container_of(*new, struct persistent_gnt, node);
179
180 parent = *new;
181 if (persistent_gnt->gnt < this->gnt)
182 new = &((*new)->rb_left);
183 else if (persistent_gnt->gnt > this->gnt)
184 new = &((*new)->rb_right);
185 else {
186 pr_alert(DRV_PFX " trying to add a gref that's already in the tree\n");
187 BUG();
188 }
189 }
190
191 /* Add new node and rebalance tree. */
192 rb_link_node(&(persistent_gnt->node), parent, new);
193 rb_insert_color(&(persistent_gnt->node), root);
194}
195
196static struct persistent_gnt *get_persistent_gnt(struct rb_root *root,
197 grant_ref_t gref)
198{
199 struct persistent_gnt *data;
200 struct rb_node *node = root->rb_node;
201
202 while (node) {
203 data = container_of(node, struct persistent_gnt, node);
204
205 if (gref < data->gnt)
206 node = node->rb_left;
207 else if (gref > data->gnt)
208 node = node->rb_right;
209 else
210 return data;
211 }
212 return NULL;
213}
214
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400215/*
216 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400217 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400218static struct pending_req *alloc_req(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400219{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400220 struct pending_req *req = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400221 unsigned long flags;
222
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500223 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
224 if (!list_empty(&blkbk->pending_free)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400225 req = list_entry(blkbk->pending_free.next, struct pending_req,
226 free_list);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400227 list_del(&req->free_list);
228 }
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500229 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400230 return req;
231}
232
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400233/*
234 * Return the 'pending_req' structure back to the freepool. We also
235 * wake up the thread if it was waiting for a free page.
236 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400237static void free_req(struct pending_req *req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400238{
239 unsigned long flags;
240 int was_empty;
241
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500242 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
243 was_empty = list_empty(&blkbk->pending_free);
244 list_add(&req->free_list, &blkbk->pending_free);
245 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400246 if (was_empty)
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500247 wake_up(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400248}
249
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400250/*
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400251 * Routines for managing virtual block devices (vbds).
252 */
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400253static int xen_vbd_translate(struct phys_req *req, struct xen_blkif *blkif,
254 int operation)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400255{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400256 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400257 int rc = -EACCES;
258
259 if ((operation != READ) && vbd->readonly)
260 goto out;
261
Jan Beulich8ab52152011-05-17 11:07:05 +0100262 if (likely(req->nr_sects)) {
263 blkif_sector_t end = req->sector_number + req->nr_sects;
264
265 if (unlikely(end < req->sector_number))
266 goto out;
267 if (unlikely(end > vbd_sz(vbd)))
268 goto out;
269 }
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400270
271 req->dev = vbd->pdevice;
272 req->bdev = vbd->bdev;
273 rc = 0;
274
275 out:
276 return rc;
277}
278
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400279static void xen_vbd_resize(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400280{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400281 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400282 struct xenbus_transaction xbt;
283 int err;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400284 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400285 unsigned long long new_size = vbd_sz(vbd);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400286
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400287 pr_info(DRV_PFX "VBD Resize: Domid: %d, Device: (%d, %d)\n",
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400288 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400289 pr_info(DRV_PFX "VBD Resize: new size %llu\n", new_size);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400290 vbd->size = new_size;
291again:
292 err = xenbus_transaction_start(&xbt);
293 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400294 pr_warn(DRV_PFX "Error starting transaction");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400295 return;
296 }
297 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400298 (unsigned long long)vbd_sz(vbd));
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400299 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400300 pr_warn(DRV_PFX "Error writing new size");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400301 goto abort;
302 }
303 /*
304 * Write the current state; we will use this to synchronize
305 * the front-end. If the current state is "connected" the
306 * front-end will get the new size information online.
307 */
308 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
309 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400310 pr_warn(DRV_PFX "Error writing the state");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400311 goto abort;
312 }
313
314 err = xenbus_transaction_end(xbt, 0);
315 if (err == -EAGAIN)
316 goto again;
317 if (err)
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400318 pr_warn(DRV_PFX "Error ending transaction");
Laszlo Ersek496b3182011-05-13 09:45:40 -0400319 return;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400320abort:
321 xenbus_transaction_end(xbt, 1);
322}
323
324/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400325 * Notification from the guest OS.
326 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400327static void blkif_notify_work(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400328{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400329 blkif->waiting_reqs = 1;
330 wake_up(&blkif->wq);
331}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400332
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400333irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400334{
335 blkif_notify_work(dev_id);
336 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400337}
338
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400339/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400340 * SCHEDULER FUNCTIONS
341 */
342
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400343static void print_stats(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400344{
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800345 pr_info("xen-blkback (%s): oo %3d | rd %4d | wr %4d | f %4d"
346 " | ds %4d\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400347 current->comm, blkif->st_oo_req,
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800348 blkif->st_rd_req, blkif->st_wr_req,
349 blkif->st_f_req, blkif->st_ds_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400350 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
351 blkif->st_rd_req = 0;
352 blkif->st_wr_req = 0;
353 blkif->st_oo_req = 0;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800354 blkif->st_ds_req = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400355}
356
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400357int xen_blkif_schedule(void *arg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400358{
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400359 struct xen_blkif *blkif = arg;
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400360 struct xen_vbd *vbd = &blkif->vbd;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200361 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
362 struct page *pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
363 struct persistent_gnt *persistent_gnt;
364 int ret = 0;
365 int segs_to_unmap = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400366
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400367 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400368
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400369 while (!kthread_should_stop()) {
370 if (try_to_freeze())
371 continue;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400372 if (unlikely(vbd->size != vbd_sz(vbd)))
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400373 xen_vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400374
375 wait_event_interruptible(
376 blkif->wq,
377 blkif->waiting_reqs || kthread_should_stop());
378 wait_event_interruptible(
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500379 blkbk->pending_free_wq,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400380 !list_empty(&blkbk->pending_free) ||
381 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400382
383 blkif->waiting_reqs = 0;
384 smp_mb(); /* clear flag *before* checking for work */
385
386 if (do_block_io_op(blkif))
387 blkif->waiting_reqs = 1;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400388
389 if (log_stats && time_after(jiffies, blkif->st_print))
390 print_stats(blkif);
391 }
392
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200393 /* Free all persistent grant pages */
394 if (!RB_EMPTY_ROOT(&blkif->persistent_gnts)) {
395 foreach_grant(persistent_gnt, &blkif->persistent_gnts, node) {
396 BUG_ON(persistent_gnt->handle ==
397 BLKBACK_INVALID_HANDLE);
398 gnttab_set_unmap_op(&unmap[segs_to_unmap],
399 (unsigned long) pfn_to_kaddr(page_to_pfn(
400 persistent_gnt->page)),
401 GNTMAP_host_map,
402 persistent_gnt->handle);
403
404 pages[segs_to_unmap] = persistent_gnt->page;
405 rb_erase(&persistent_gnt->node,
406 &blkif->persistent_gnts);
407 kfree(persistent_gnt);
408 blkif->persistent_gnt_c--;
409
410 if (++segs_to_unmap == BLKIF_MAX_SEGMENTS_PER_REQUEST ||
411 !rb_next(&persistent_gnt->node)) {
412 ret = gnttab_unmap_refs(unmap, NULL, pages,
413 segs_to_unmap);
414 BUG_ON(ret);
415 segs_to_unmap = 0;
416 }
417 }
418 }
419
420 BUG_ON(blkif->persistent_gnt_c != 0);
421 BUG_ON(!RB_EMPTY_ROOT(&blkif->persistent_gnts));
422
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400423 if (log_stats)
424 print_stats(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400425
426 blkif->xenblkd = NULL;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400427 xen_blkif_put(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400428
429 return 0;
430}
431
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400432struct seg_buf {
433 unsigned long buf;
434 unsigned int nsec;
435};
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400436/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400437 * Unmap the grant references, and also remove the M2P over-rides
438 * used in the 'pending_req'.
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400439 */
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400440static void xen_blkbk_unmap(struct pending_req *req)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400441{
442 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Daniel De Graaf4f14faa2011-11-28 11:49:03 -0500443 struct page *pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400444 unsigned int i, invcount = 0;
445 grant_handle_t handle;
446 int ret;
447
448 for (i = 0; i < req->nr_pages; i++) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200449 if (!test_bit(i, req->unmap_seg))
450 continue;
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400451 handle = pending_handle(req, i);
452 if (handle == BLKBACK_INVALID_HANDLE)
453 continue;
454 gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
455 GNTMAP_host_map, handle);
456 pending_handle(req, i) = BLKBACK_INVALID_HANDLE;
Daniel De Graaf4f14faa2011-11-28 11:49:03 -0500457 pages[invcount] = virt_to_page(vaddr(req, i));
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400458 invcount++;
459 }
460
Stefano Stabellini2fc136e2012-09-12 12:44:30 +0100461 ret = gnttab_unmap_refs(unmap, NULL, pages, invcount);
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400462 BUG_ON(ret);
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400463}
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400464
465static int xen_blkbk_map(struct blkif_request *req,
466 struct pending_req *pending_req,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200467 struct seg_buf seg[],
468 struct page *pages[])
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400469{
470 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200471 struct persistent_gnt *persistent_gnts[BLKIF_MAX_SEGMENTS_PER_REQUEST];
472 struct page *pages_to_gnt[BLKIF_MAX_SEGMENTS_PER_REQUEST];
473 struct persistent_gnt *persistent_gnt = NULL;
474 struct xen_blkif *blkif = pending_req->blkif;
475 phys_addr_t addr = 0;
476 int i, j;
477 bool new_map;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400478 int nseg = req->u.rw.nr_segments;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200479 int segs_to_map = 0;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400480 int ret = 0;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200481 int use_persistent_gnts;
482
483 use_persistent_gnts = (blkif->vbd.feature_gnt_persistent);
484
485 BUG_ON(blkif->persistent_gnt_c >
486 max_mapped_grant_pages(pending_req->blkif->blk_protocol));
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400487
488 /*
489 * Fill out preq.nr_sects with proper amount of sectors, and setup
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400490 * assign map[..] with the PFN of the page in our domain with the
491 * corresponding grant reference for each page.
492 */
493 for (i = 0; i < nseg; i++) {
494 uint32_t flags;
495
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200496 if (use_persistent_gnts)
497 persistent_gnt = get_persistent_gnt(
498 &blkif->persistent_gnts,
499 req->u.rw.seg[i].gref);
500
501 if (persistent_gnt) {
502 /*
503 * We are using persistent grants and
504 * the grant is already mapped
505 */
506 new_map = false;
507 } else if (use_persistent_gnts &&
508 blkif->persistent_gnt_c <
509 max_mapped_grant_pages(blkif->blk_protocol)) {
510 /*
511 * We are using persistent grants, the grant is
512 * not mapped but we have room for it
513 */
514 new_map = true;
515 persistent_gnt = kzalloc(
516 sizeof(struct persistent_gnt),
517 GFP_KERNEL);
518 if (!persistent_gnt)
519 return -ENOMEM;
520 persistent_gnt->page = alloc_page(GFP_KERNEL);
521 if (!persistent_gnt->page) {
522 kfree(persistent_gnt);
523 return -ENOMEM;
524 }
525 persistent_gnt->gnt = req->u.rw.seg[i].gref;
526
527 pages_to_gnt[segs_to_map] =
528 persistent_gnt->page;
529 addr = (unsigned long) pfn_to_kaddr(
530 page_to_pfn(persistent_gnt->page));
531
532 add_persistent_gnt(&blkif->persistent_gnts,
533 persistent_gnt);
534 blkif->persistent_gnt_c++;
535 pr_debug(DRV_PFX " grant %u added to the tree of persistent grants, using %u/%u\n",
536 persistent_gnt->gnt, blkif->persistent_gnt_c,
537 max_mapped_grant_pages(blkif->blk_protocol));
538 } else {
539 /*
540 * We are either using persistent grants and
541 * hit the maximum limit of grants mapped,
542 * or we are not using persistent grants.
543 */
544 if (use_persistent_gnts &&
545 !blkif->vbd.overflow_max_grants) {
546 blkif->vbd.overflow_max_grants = 1;
547 pr_alert(DRV_PFX " domain %u, device %#x is using maximum number of persistent grants\n",
548 blkif->domid, blkif->vbd.handle);
549 }
550 new_map = true;
551 pages[i] = blkbk->pending_page(pending_req, i);
552 addr = vaddr(pending_req, i);
553 pages_to_gnt[segs_to_map] =
554 blkbk->pending_page(pending_req, i);
555 }
556
557 if (persistent_gnt) {
558 pages[i] = persistent_gnt->page;
559 persistent_gnts[i] = persistent_gnt;
560 } else {
561 persistent_gnts[i] = NULL;
562 }
563
564 if (new_map) {
565 flags = GNTMAP_host_map;
566 if (!persistent_gnt &&
567 (pending_req->operation != BLKIF_OP_READ))
568 flags |= GNTMAP_readonly;
569 gnttab_set_map_op(&map[segs_to_map++], addr,
570 flags, req->u.rw.seg[i].gref,
571 blkif->domid);
572 }
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400573 }
574
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200575 if (segs_to_map) {
576 ret = gnttab_map_refs(map, NULL, pages_to_gnt, segs_to_map);
577 BUG_ON(ret);
578 }
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400579
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400580 /*
581 * Now swizzle the MFN in our domain with the MFN from the other domain
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400582 * so that when we access vaddr(pending_req,i) it has the contents of
583 * the page from the other domain.
584 */
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200585 bitmap_zero(pending_req->unmap_seg, BLKIF_MAX_SEGMENTS_PER_REQUEST);
586 for (i = 0, j = 0; i < nseg; i++) {
587 if (!persistent_gnts[i] || !persistent_gnts[i]->handle) {
588 /* This is a newly mapped grant */
589 BUG_ON(j >= segs_to_map);
590 if (unlikely(map[j].status != 0)) {
591 pr_debug(DRV_PFX "invalid buffer -- could not remap it\n");
592 map[j].handle = BLKBACK_INVALID_HANDLE;
593 ret |= 1;
594 if (persistent_gnts[i]) {
595 rb_erase(&persistent_gnts[i]->node,
596 &blkif->persistent_gnts);
597 blkif->persistent_gnt_c--;
598 kfree(persistent_gnts[i]);
599 persistent_gnts[i] = NULL;
600 }
601 }
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400602 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200603 if (persistent_gnts[i]) {
604 if (!persistent_gnts[i]->handle) {
605 /*
606 * If this is a new persistent grant
607 * save the handler
608 */
609 persistent_gnts[i]->handle = map[j].handle;
610 persistent_gnts[i]->dev_bus_addr =
611 map[j++].dev_bus_addr;
612 }
613 pending_handle(pending_req, i) =
614 persistent_gnts[i]->handle;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400615
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200616 if (ret)
617 continue;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400618
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200619 seg[i].buf = persistent_gnts[i]->dev_bus_addr |
620 (req->u.rw.seg[i].first_sect << 9);
621 } else {
622 pending_handle(pending_req, i) = map[j].handle;
623 bitmap_set(pending_req->unmap_seg, i, 1);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400624
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200625 if (ret) {
626 j++;
627 continue;
628 }
629
630 seg[i].buf = map[j++].dev_bus_addr |
631 (req->u.rw.seg[i].first_sect << 9);
632 }
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400633 }
634 return ret;
635}
636
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400637static int dispatch_discard_io(struct xen_blkif *blkif,
638 struct blkif_request *req)
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800639{
640 int err = 0;
641 int status = BLKIF_RSP_OKAY;
642 struct block_device *bdev = blkif->vbd.bdev;
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400643 unsigned long secure;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800644
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400645 blkif->st_ds_req++;
646
647 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400648 secure = (blkif->vbd.discard_secure &&
649 (req->u.discard.flag & BLKIF_DISCARD_SECURE)) ?
650 BLKDEV_DISCARD_SECURE : 0;
651
652 err = blkdev_issue_discard(bdev, req->u.discard.sector_number,
653 req->u.discard.nr_sectors,
654 GFP_KERNEL, secure);
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800655
656 if (err == -EOPNOTSUPP) {
657 pr_debug(DRV_PFX "discard op failed, not supported\n");
658 status = BLKIF_RSP_EOPNOTSUPP;
659 } else if (err)
660 status = BLKIF_RSP_ERROR;
661
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400662 make_response(blkif, req->u.discard.id, req->operation, status);
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400663 xen_blkif_put(blkif);
664 return err;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800665}
666
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400667static void xen_blk_drain_io(struct xen_blkif *blkif)
668{
669 atomic_set(&blkif->drain, 1);
670 do {
Konrad Rzeszutek Wilk6927d922011-10-17 14:27:48 -0400671 /* The initial value is one, and one refcnt taken at the
672 * start of the xen_blkif_schedule thread. */
673 if (atomic_read(&blkif->refcnt) <= 2)
674 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400675 wait_for_completion_interruptible_timeout(
676 &blkif->drain_complete, HZ);
677
678 if (!atomic_read(&blkif->drain))
679 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400680 } while (!kthread_should_stop());
681 atomic_set(&blkif->drain, 0);
682}
683
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400684/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400685 * Completion callback on the bio's. Called as bh->b_end_io()
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400686 */
687
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400688static void __end_block_io_op(struct pending_req *pending_req, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400689{
690 /* An error fails the entire request. */
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400691 if ((pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE) &&
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400692 (error == -EOPNOTSUPP)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400693 pr_debug(DRV_PFX "flush diskcache op failed, not supported\n");
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400694 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->blkif->be, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400695 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400696 } else if ((pending_req->operation == BLKIF_OP_WRITE_BARRIER) &&
697 (error == -EOPNOTSUPP)) {
698 pr_debug(DRV_PFX "write barrier op failed, not supported\n");
699 xen_blkbk_barrier(XBT_NIL, pending_req->blkif->be, 0);
700 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400701 } else if (error) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400702 pr_debug(DRV_PFX "Buffer not up-to-date at end of operation,"
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400703 " error=%d\n", error);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400704 pending_req->status = BLKIF_RSP_ERROR;
705 }
706
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400707 /*
708 * If all of the bio's have completed it is time to unmap
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400709 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400710 * the proper response on the ring.
711 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400712 if (atomic_dec_and_test(&pending_req->pendcnt)) {
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400713 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400714 make_response(pending_req->blkif, pending_req->id,
715 pending_req->operation, pending_req->status);
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400716 xen_blkif_put(pending_req->blkif);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400717 if (atomic_read(&pending_req->blkif->refcnt) <= 2) {
718 if (atomic_read(&pending_req->blkif->drain))
719 complete(&pending_req->blkif->drain_complete);
720 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400721 free_req(pending_req);
722 }
723}
724
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400725/*
726 * bio callback.
727 */
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800728static void end_block_io_op(struct bio *bio, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400729{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400730 __end_block_io_op(bio->bi_private, error);
731 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400732}
733
734
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400735
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400736/*
737 * Function to copy the from the ring buffer the 'struct blkif_request'
738 * (which has the sectors we want, number of them, grant references, etc),
739 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400740 */
Daniel Stoddenb4726a92011-05-28 13:21:10 -0700741static int
742__do_block_io_op(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400743{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800744 union blkif_back_rings *blk_rings = &blkif->blk_rings;
745 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400746 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400747 RING_IDX rc, rp;
748 int more_to_do = 0;
749
750 rc = blk_rings->common.req_cons;
751 rp = blk_rings->common.sring->req_prod;
752 rmb(); /* Ensure we see queued requests up to 'rp'. */
753
754 while (rc != rp) {
755
756 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
757 break;
758
Keir Fraser8270b452009-03-06 08:29:15 +0000759 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400760 more_to_do = 1;
761 break;
762 }
763
Keir Fraser8270b452009-03-06 08:29:15 +0000764 pending_req = alloc_req();
765 if (NULL == pending_req) {
766 blkif->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400767 more_to_do = 1;
768 break;
769 }
770
771 switch (blkif->blk_protocol) {
772 case BLKIF_PROTOCOL_NATIVE:
773 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
774 break;
775 case BLKIF_PROTOCOL_X86_32:
776 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
777 break;
778 case BLKIF_PROTOCOL_X86_64:
779 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
780 break;
781 default:
782 BUG();
783 }
784 blk_rings->common.req_cons = ++rc; /* before make_response() */
785
786 /* Apply all sanity checks to /private copy/ of request. */
787 barrier();
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400788 if (unlikely(req.operation == BLKIF_OP_DISCARD)) {
789 free_req(pending_req);
790 if (dispatch_discard_io(blkif, &req))
791 break;
792 } else if (dispatch_rw_block_io(blkif, &req, pending_req))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400793 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400794
795 /* Yield point for this unbounded loop. */
796 cond_resched();
797 }
798
799 return more_to_do;
800}
801
Daniel Stoddenb4726a92011-05-28 13:21:10 -0700802static int
803do_block_io_op(struct xen_blkif *blkif)
804{
805 union blkif_back_rings *blk_rings = &blkif->blk_rings;
806 int more_to_do;
807
808 do {
809 more_to_do = __do_block_io_op(blkif);
810 if (more_to_do)
811 break;
812
813 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
814 } while (more_to_do);
815
816 return more_to_do;
817}
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400818/*
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400819 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
820 * and call the 'submit_bio' to pass it to the underlying storage.
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400821 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400822static int dispatch_rw_block_io(struct xen_blkif *blkif,
823 struct blkif_request *req,
824 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400825{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400826 struct phys_req preq;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400827 struct seg_buf seg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400828 unsigned int nseg;
829 struct bio *bio = NULL;
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400830 struct bio *biolist[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400831 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400832 int operation;
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400833 struct blk_plug plug;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400834 bool drain = false;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200835 struct page *pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400836
837 switch (req->operation) {
838 case BLKIF_OP_READ:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400839 blkif->st_rd_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400840 operation = READ;
841 break;
842 case BLKIF_OP_WRITE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400843 blkif->st_wr_req++;
Konrad Rzeszutek Wilk013c3ca2011-04-26 16:24:18 -0400844 operation = WRITE_ODIRECT;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400845 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400846 case BLKIF_OP_WRITE_BARRIER:
847 drain = true;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400848 case BLKIF_OP_FLUSH_DISKCACHE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400849 blkif->st_f_req++;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400850 operation = WRITE_FLUSH;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400851 break;
852 default:
853 operation = 0; /* make gcc happy */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400854 goto fail_response;
855 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400856 }
857
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400858 /* Check that the number of segments is sane. */
859 nseg = req->u.rw.nr_segments;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400860
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400861 if (unlikely(nseg == 0 && operation != WRITE_FLUSH) ||
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400862 unlikely(nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400863 pr_debug(DRV_PFX "Bad number of segments in request (%d)\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400864 nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400865 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400866 goto fail_response;
867 }
868
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400869 preq.dev = req->u.rw.handle;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500870 preq.sector_number = req->u.rw.sector_number;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400871 preq.nr_sects = 0;
872
873 pending_req->blkif = blkif;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400874 pending_req->id = req->u.rw.id;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400875 pending_req->operation = req->operation;
876 pending_req->status = BLKIF_RSP_OKAY;
877 pending_req->nr_pages = nseg;
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400878
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400879 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500880 seg[i].nsec = req->u.rw.seg[i].last_sect -
881 req->u.rw.seg[i].first_sect + 1;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500882 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
883 (req->u.rw.seg[i].last_sect < req->u.rw.seg[i].first_sect))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400884 goto fail_response;
885 preq.nr_sects += seg[i].nsec;
Konrad Rzeszutek Wilk976222e2011-04-15 11:38:29 -0400886
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400887 }
888
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400889 if (xen_vbd_translate(&preq, blkif, operation) != 0) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400890 pr_debug(DRV_PFX "access denied: %s of [%llu,%llu] on dev=%04x\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400891 operation == READ ? "read" : "write",
892 preq.sector_number,
893 preq.sector_number + preq.nr_sects, preq.dev);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400894 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400895 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400896
897 /*
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400898 * This check _MUST_ be done after xen_vbd_translate as the preq.bdev
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400899 * is set there.
900 */
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400901 for (i = 0; i < nseg; i++) {
902 if (((int)preq.sector_number|(int)seg[i].nsec) &
903 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400904 pr_debug(DRV_PFX "Misaligned I/O request from domain %d",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400905 blkif->domid);
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400906 goto fail_response;
907 }
908 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400909
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400910 /* Wait on all outstanding I/O's and once that has been completed
911 * issue the WRITE_FLUSH.
912 */
913 if (drain)
914 xen_blk_drain_io(pending_req->blkif);
915
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400916 /*
917 * If we have failed at this point, we need to undo the M2P override,
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400918 * set gnttab_set_unmap_op on all of the grant references and perform
919 * the hypercall to unmap the grants - that is all done in
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400920 * xen_blkbk_unmap.
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400921 */
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200922 if (xen_blkbk_map(req, pending_req, seg, pages))
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400923 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400924
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800925 /*
926 * This corresponding xen_blkif_put is done in __end_block_io_op, or
927 * below (in "!bio") if we are handling a BLKIF_OP_DISCARD.
928 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400929 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400930
931 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400932 while ((bio == NULL) ||
933 (bio_add_page(bio,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200934 pages[i],
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400935 seg[i].nsec << 9,
936 seg[i].buf & ~PAGE_MASK) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400937
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400938 bio = bio_alloc(GFP_KERNEL, nseg-i);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400939 if (unlikely(bio == NULL))
940 goto fail_put_bio;
941
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400942 biolist[nbio++] = bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400943 bio->bi_bdev = preq.bdev;
944 bio->bi_private = pending_req;
945 bio->bi_end_io = end_block_io_op;
946 bio->bi_sector = preq.sector_number;
947 }
948
949 preq.sector_number += seg[i].nsec;
950 }
951
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800952 /* This will be hit if the operation was a flush or discard. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400953 if (!bio) {
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400954 BUG_ON(operation != WRITE_FLUSH);
Konrad Rzeszutek Wilkb0f80122011-05-12 16:23:06 -0400955
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400956 bio = bio_alloc(GFP_KERNEL, 0);
957 if (unlikely(bio == NULL))
958 goto fail_put_bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400959
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400960 biolist[nbio++] = bio;
961 bio->bi_bdev = preq.bdev;
962 bio->bi_private = pending_req;
963 bio->bi_end_io = end_block_io_op;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400964 }
965
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400966 /*
967 * We set it one so that the last submit_bio does not have to call
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400968 * atomic_inc.
969 */
970 atomic_set(&pending_req->pendcnt, nbio);
971
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400972 /* Get a reference count for the disk queue and start sending I/O */
973 blk_start_plug(&plug);
974
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400975 for (i = 0; i < nbio; i++)
976 submit_bio(operation, biolist[i]);
977
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400978 /* Let the I/Os go.. */
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -0400979 blk_finish_plug(&plug);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400980
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400981 if (operation == READ)
982 blkif->st_rd_sect += preq.nr_sects;
Konrad Rzeszutek Wilk5c62cb42011-10-10 12:33:21 -0400983 else if (operation & WRITE)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400984 blkif->st_wr_sect += preq.nr_sects;
985
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400986 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400987
988 fail_flush:
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400989 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400990 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -0400991 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400992 make_response(blkif, req->u.rw.id, req->operation, BLKIF_RSP_ERROR);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400993 free_req(pending_req);
994 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400995 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400996
997 fail_put_bio:
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400998 for (i = 0; i < nbio; i++)
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400999 bio_put(biolist[i]);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001000 __end_block_io_op(pending_req, -EINVAL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001001 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001002 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001003}
1004
1005
1006
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001007/*
1008 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001009 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -04001010static void make_response(struct xen_blkif *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001011 unsigned short op, int st)
1012{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -08001013 struct blkif_response resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001014 unsigned long flags;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -08001015 union blkif_back_rings *blk_rings = &blkif->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001016 int notify;
1017
1018 resp.id = id;
1019 resp.operation = op;
1020 resp.status = st;
1021
1022 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
1023 /* Place on the response ring for the relevant domain. */
1024 switch (blkif->blk_protocol) {
1025 case BLKIF_PROTOCOL_NATIVE:
1026 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
1027 &resp, sizeof(resp));
1028 break;
1029 case BLKIF_PROTOCOL_X86_32:
1030 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
1031 &resp, sizeof(resp));
1032 break;
1033 case BLKIF_PROTOCOL_X86_64:
1034 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
1035 &resp, sizeof(resp));
1036 break;
1037 default:
1038 BUG();
1039 }
1040 blk_rings->common.rsp_prod_pvt++;
1041 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001042 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001043 if (notify)
1044 notify_remote_via_irq(blkif->irq);
1045}
1046
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001047static int __init xen_blkif_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001048{
1049 int i, mmap_pages;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001050 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001051
Daniel De Graafb2167ba2011-11-28 11:49:05 -05001052 if (!xen_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001053 return -ENODEV;
1054
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001055 blkbk = kzalloc(sizeof(struct xen_blkbk), GFP_KERNEL);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -05001056 if (!blkbk) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -04001057 pr_alert(DRV_PFX "%s: out of memory!\n", __func__);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -05001058 return -ENOMEM;
1059 }
1060
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001061 mmap_pages = xen_blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001062
Jan Beulich8e6dc6f2011-09-16 08:38:09 +01001063 blkbk->pending_reqs = kzalloc(sizeof(blkbk->pending_reqs[0]) *
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001064 xen_blkif_reqs, GFP_KERNEL);
Jan Beulich8e6dc6f2011-09-16 08:38:09 +01001065 blkbk->pending_grant_handles = kmalloc(sizeof(blkbk->pending_grant_handles[0]) *
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -04001066 mmap_pages, GFP_KERNEL);
1067 blkbk->pending_pages = kzalloc(sizeof(blkbk->pending_pages[0]) *
1068 mmap_pages, GFP_KERNEL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001069
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001070 if (!blkbk->pending_reqs || !blkbk->pending_grant_handles ||
1071 !blkbk->pending_pages) {
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001072 rc = -ENOMEM;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001073 goto out_of_memory;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001074 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001075
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -05001076 for (i = 0; i < mmap_pages; i++) {
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -05001077 blkbk->pending_grant_handles[i] = BLKBACK_INVALID_HANDLE;
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -04001078 blkbk->pending_pages[i] = alloc_page(GFP_KERNEL);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -05001079 if (blkbk->pending_pages[i] == NULL) {
1080 rc = -ENOMEM;
1081 goto out_of_memory;
1082 }
1083 }
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001084 rc = xen_blkif_interface_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001085 if (rc)
1086 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001087
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -05001088 INIT_LIST_HEAD(&blkbk->pending_free);
1089 spin_lock_init(&blkbk->pending_free_lock);
1090 init_waitqueue_head(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001091
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001092 for (i = 0; i < xen_blkif_reqs; i++)
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001093 list_add_tail(&blkbk->pending_reqs[i].free_list,
1094 &blkbk->pending_free);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001095
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001096 rc = xen_blkif_xenbus_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001097 if (rc)
1098 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001099
1100 return 0;
1101
1102 out_of_memory:
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -04001103 pr_alert(DRV_PFX "%s: out of memory\n", __func__);
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001104 failed_init:
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -05001105 kfree(blkbk->pending_reqs);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -04001106 kfree(blkbk->pending_grant_handles);
Dan Carpenter9b83c772011-05-27 09:27:16 +03001107 if (blkbk->pending_pages) {
1108 for (i = 0; i < mmap_pages; i++) {
1109 if (blkbk->pending_pages[i])
1110 __free_page(blkbk->pending_pages[i]);
1111 }
1112 kfree(blkbk->pending_pages);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -05001113 }
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -04001114 kfree(blkbk);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -05001115 blkbk = NULL;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001116 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001117}
1118
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001119module_init(xen_blkif_init);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001120
1121MODULE_LICENSE("Dual BSD/GPL");
Bastian Blanka7e93572011-06-29 14:40:50 +02001122MODULE_ALIAS("xen-backend:vbd");