diff options
Diffstat (limited to 'drivers/block/xen-blkfront.c')
| -rw-r--r-- | drivers/block/xen-blkfront.c | 154 |
1 files changed, 91 insertions, 63 deletions
diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c index c3dae2e0f290..a894f88762d8 100644 --- a/drivers/block/xen-blkfront.c +++ b/drivers/block/xen-blkfront.c | |||
| @@ -44,7 +44,7 @@ | |||
| 44 | #include <linux/mutex.h> | 44 | #include <linux/mutex.h> |
| 45 | #include <linux/scatterlist.h> | 45 | #include <linux/scatterlist.h> |
| 46 | #include <linux/bitmap.h> | 46 | #include <linux/bitmap.h> |
| 47 | #include <linux/llist.h> | 47 | #include <linux/list.h> |
| 48 | 48 | ||
| 49 | #include <xen/xen.h> | 49 | #include <xen/xen.h> |
| 50 | #include <xen/xenbus.h> | 50 | #include <xen/xenbus.h> |
| @@ -68,13 +68,12 @@ enum blkif_state { | |||
| 68 | struct grant { | 68 | struct grant { |
| 69 | grant_ref_t gref; | 69 | grant_ref_t gref; |
| 70 | unsigned long pfn; | 70 | unsigned long pfn; |
| 71 | struct llist_node node; | 71 | struct list_head node; |
| 72 | }; | 72 | }; |
| 73 | 73 | ||
| 74 | struct blk_shadow { | 74 | struct blk_shadow { |
| 75 | struct blkif_request req; | 75 | struct blkif_request req; |
| 76 | struct request *request; | 76 | struct request *request; |
| 77 | unsigned long frame[BLKIF_MAX_SEGMENTS_PER_REQUEST]; | ||
| 78 | struct grant *grants_used[BLKIF_MAX_SEGMENTS_PER_REQUEST]; | 77 | struct grant *grants_used[BLKIF_MAX_SEGMENTS_PER_REQUEST]; |
| 79 | }; | 78 | }; |
| 80 | 79 | ||
| @@ -105,7 +104,7 @@ struct blkfront_info | |||
| 105 | struct work_struct work; | 104 | struct work_struct work; |
| 106 | struct gnttab_free_callback callback; | 105 | struct gnttab_free_callback callback; |
| 107 | struct blk_shadow shadow[BLK_RING_SIZE]; | 106 | struct blk_shadow shadow[BLK_RING_SIZE]; |
| 108 | struct llist_head persistent_gnts; | 107 | struct list_head persistent_gnts; |
| 109 | unsigned int persistent_gnts_c; | 108 | unsigned int persistent_gnts_c; |
| 110 | unsigned long shadow_free; | 109 | unsigned long shadow_free; |
| 111 | unsigned int feature_flush; | 110 | unsigned int feature_flush; |
| @@ -165,6 +164,69 @@ static int add_id_to_freelist(struct blkfront_info *info, | |||
| 165 | return 0; | 164 | return 0; |
| 166 | } | 165 | } |
| 167 | 166 | ||
| 167 | static int fill_grant_buffer(struct blkfront_info *info, int num) | ||
| 168 | { | ||
| 169 | struct page *granted_page; | ||
| 170 | struct grant *gnt_list_entry, *n; | ||
| 171 | int i = 0; | ||
| 172 | |||
| 173 | while(i < num) { | ||
| 174 | gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO); | ||
| 175 | if (!gnt_list_entry) | ||
| 176 | goto out_of_memory; | ||
| 177 | |||
| 178 | granted_page = alloc_page(GFP_NOIO); | ||
| 179 | if (!granted_page) { | ||
| 180 | kfree(gnt_list_entry); | ||
| 181 | goto out_of_memory; | ||
| 182 | } | ||
| 183 | |||
| 184 | gnt_list_entry->pfn = page_to_pfn(granted_page); | ||
| 185 | gnt_list_entry->gref = GRANT_INVALID_REF; | ||
| 186 | list_add(&gnt_list_entry->node, &info->persistent_gnts); | ||
| 187 | i++; | ||
| 188 | } | ||
| 189 | |||
| 190 | return 0; | ||
| 191 | |||
| 192 | out_of_memory: | ||
| 193 | list_for_each_entry_safe(gnt_list_entry, n, | ||
| 194 | &info->persistent_gnts, node) { | ||
| 195 | list_del(&gnt_list_entry->node); | ||
| 196 | __free_page(pfn_to_page(gnt_list_entry->pfn)); | ||
| 197 | kfree(gnt_list_entry); | ||
| 198 | i--; | ||
| 199 | } | ||
| 200 | BUG_ON(i != 0); | ||
| 201 | return -ENOMEM; | ||
| 202 | } | ||
| 203 | |||
| 204 | static struct grant *get_grant(grant_ref_t *gref_head, | ||
| 205 | struct blkfront_info *info) | ||
| 206 | { | ||
| 207 | struct grant *gnt_list_entry; | ||
| 208 | unsigned long buffer_mfn; | ||
| 209 | |||
| 210 | BUG_ON(list_empty(&info->persistent_gnts)); | ||
| 211 | gnt_list_entry = list_first_entry(&info->persistent_gnts, struct grant, | ||
| 212 | node); | ||
| 213 | list_del(&gnt_list_entry->node); | ||
| 214 | |||
| 215 | if (gnt_list_entry->gref != GRANT_INVALID_REF) { | ||
| 216 | info->persistent_gnts_c--; | ||
| 217 | return gnt_list_entry; | ||
| 218 | } | ||
| 219 | |||
| 220 | /* Assign a gref to this page */ | ||
| 221 | gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head); | ||
| 222 | BUG_ON(gnt_list_entry->gref == -ENOSPC); | ||
| 223 | buffer_mfn = pfn_to_mfn(gnt_list_entry->pfn); | ||
| 224 | gnttab_grant_foreign_access_ref(gnt_list_entry->gref, | ||
| 225 | info->xbdev->otherend_id, | ||
| 226 | buffer_mfn, 0); | ||
| 227 | return gnt_list_entry; | ||
| 228 | } | ||
| 229 | |||
| 168 | static const char *op_name(int op) | 230 | static const char *op_name(int op) |
| 169 | { | 231 | { |
| 170 | static const char *const names[] = { | 232 | static const char *const names[] = { |
| @@ -293,7 +355,6 @@ static int blkif_ioctl(struct block_device *bdev, fmode_t mode, | |||
| 293 | static int blkif_queue_request(struct request *req) | 355 | static int blkif_queue_request(struct request *req) |
| 294 | { | 356 | { |
| 295 | struct blkfront_info *info = req->rq_disk->private_data; | 357 | struct blkfront_info *info = req->rq_disk->private_data; |
| 296 | unsigned long buffer_mfn; | ||
| 297 | struct blkif_request *ring_req; | 358 | struct blkif_request *ring_req; |
| 298 | unsigned long id; | 359 | unsigned long id; |
| 299 | unsigned int fsect, lsect; | 360 | unsigned int fsect, lsect; |
| @@ -306,7 +367,6 @@ static int blkif_queue_request(struct request *req) | |||
| 306 | */ | 367 | */ |
| 307 | bool new_persistent_gnts; | 368 | bool new_persistent_gnts; |
| 308 | grant_ref_t gref_head; | 369 | grant_ref_t gref_head; |
| 309 | struct page *granted_page; | ||
| 310 | struct grant *gnt_list_entry = NULL; | 370 | struct grant *gnt_list_entry = NULL; |
| 311 | struct scatterlist *sg; | 371 | struct scatterlist *sg; |
| 312 | 372 | ||
| @@ -370,41 +430,8 @@ static int blkif_queue_request(struct request *req) | |||
| 370 | fsect = sg->offset >> 9; | 430 | fsect = sg->offset >> 9; |
| 371 | lsect = fsect + (sg->length >> 9) - 1; | 431 | lsect = fsect + (sg->length >> 9) - 1; |
| 372 | 432 | ||
| 373 | if (info->persistent_gnts_c) { | 433 | gnt_list_entry = get_grant(&gref_head, info); |
| 374 | BUG_ON(llist_empty(&info->persistent_gnts)); | 434 | ref = gnt_list_entry->gref; |
| 375 | gnt_list_entry = llist_entry( | ||
| 376 | llist_del_first(&info->persistent_gnts), | ||
| 377 | struct grant, node); | ||
| 378 | |||
| 379 | ref = gnt_list_entry->gref; | ||
| 380 | buffer_mfn = pfn_to_mfn(gnt_list_entry->pfn); | ||
| 381 | info->persistent_gnts_c--; | ||
| 382 | } else { | ||
| 383 | ref = gnttab_claim_grant_reference(&gref_head); | ||
| 384 | BUG_ON(ref == -ENOSPC); | ||
| 385 | |||
| 386 | gnt_list_entry = | ||
| 387 | kmalloc(sizeof(struct grant), | ||
| 388 | GFP_ATOMIC); | ||
| 389 | if (!gnt_list_entry) | ||
| 390 | return -ENOMEM; | ||
| 391 | |||
| 392 | granted_page = alloc_page(GFP_ATOMIC); | ||
| 393 | if (!granted_page) { | ||
| 394 | kfree(gnt_list_entry); | ||
| 395 | return -ENOMEM; | ||
| 396 | } | ||
| 397 | |||
| 398 | gnt_list_entry->pfn = | ||
| 399 | page_to_pfn(granted_page); | ||
| 400 | gnt_list_entry->gref = ref; | ||
| 401 | |||
| 402 | buffer_mfn = pfn_to_mfn(page_to_pfn( | ||
| 403 | granted_page)); | ||
| 404 | gnttab_grant_foreign_access_ref(ref, | ||
| 405 | info->xbdev->otherend_id, | ||
| 406 | buffer_mfn, 0); | ||
| 407 | } | ||
| 408 | 435 | ||
| 409 | info->shadow[id].grants_used[i] = gnt_list_entry; | 436 | info->shadow[id].grants_used[i] = gnt_list_entry; |
| 410 | 437 | ||
| @@ -435,7 +462,6 @@ static int blkif_queue_request(struct request *req) | |||
| 435 | kunmap_atomic(shared_data); | 462 | kunmap_atomic(shared_data); |
| 436 | } | 463 | } |
| 437 | 464 | ||
| 438 | info->shadow[id].frame[i] = mfn_to_pfn(buffer_mfn); | ||
| 439 | ring_req->u.rw.seg[i] = | 465 | ring_req->u.rw.seg[i] = |
| 440 | (struct blkif_request_segment) { | 466 | (struct blkif_request_segment) { |
| 441 | .gref = ref, | 467 | .gref = ref, |
| @@ -790,9 +816,8 @@ static void blkif_restart_queue(struct work_struct *work) | |||
| 790 | 816 | ||
| 791 | static void blkif_free(struct blkfront_info *info, int suspend) | 817 | static void blkif_free(struct blkfront_info *info, int suspend) |
| 792 | { | 818 | { |
| 793 | struct llist_node *all_gnts; | 819 | struct grant *persistent_gnt; |
| 794 | struct grant *persistent_gnt, *tmp; | 820 | struct grant *n; |
| 795 | struct llist_node *n; | ||
| 796 | 821 | ||
| 797 | /* Prevent new requests being issued until we fix things up. */ | 822 | /* Prevent new requests being issued until we fix things up. */ |
| 798 | spin_lock_irq(&info->io_lock); | 823 | spin_lock_irq(&info->io_lock); |
| @@ -803,22 +828,20 @@ static void blkif_free(struct blkfront_info *info, int suspend) | |||
| 803 | blk_stop_queue(info->rq); | 828 | blk_stop_queue(info->rq); |
| 804 | 829 | ||
| 805 | /* Remove all persistent grants */ | 830 | /* Remove all persistent grants */ |
| 806 | if (info->persistent_gnts_c) { | 831 | if (!list_empty(&info->persistent_gnts)) { |
| 807 | all_gnts = llist_del_all(&info->persistent_gnts); | 832 | list_for_each_entry_safe(persistent_gnt, n, |
| 808 | persistent_gnt = llist_entry(all_gnts, typeof(*(persistent_gnt)), node); | 833 | &info->persistent_gnts, node) { |
| 809 | while (persistent_gnt) { | 834 | list_del(&persistent_gnt->node); |
| 810 | gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL); | 835 | if (persistent_gnt->gref != GRANT_INVALID_REF) { |
| 836 | gnttab_end_foreign_access(persistent_gnt->gref, | ||
| 837 | 0, 0UL); | ||
| 838 | info->persistent_gnts_c--; | ||
| 839 | } | ||
| 811 | __free_page(pfn_to_page(persistent_gnt->pfn)); | 840 | __free_page(pfn_to_page(persistent_gnt->pfn)); |
| 812 | tmp = persistent_gnt; | 841 | kfree(persistent_gnt); |
| 813 | n = persistent_gnt->node.next; | ||
| 814 | if (n) | ||
| 815 | persistent_gnt = llist_entry(n, typeof(*(persistent_gnt)), node); | ||
| 816 | else | ||
| 817 | persistent_gnt = NULL; | ||
| 818 | kfree(tmp); | ||
| 819 | } | 842 | } |
| 820 | info->persistent_gnts_c = 0; | ||
| 821 | } | 843 | } |
| 844 | BUG_ON(info->persistent_gnts_c != 0); | ||
| 822 | 845 | ||
| 823 | /* No more gnttab callback work. */ | 846 | /* No more gnttab callback work. */ |
| 824 | gnttab_cancel_free_callback(&info->callback); | 847 | gnttab_cancel_free_callback(&info->callback); |
| @@ -875,7 +898,7 @@ static void blkif_completion(struct blk_shadow *s, struct blkfront_info *info, | |||
| 875 | } | 898 | } |
| 876 | /* Add the persistent grant into the list of free grants */ | 899 | /* Add the persistent grant into the list of free grants */ |
| 877 | for (i = 0; i < s->req.u.rw.nr_segments; i++) { | 900 | for (i = 0; i < s->req.u.rw.nr_segments; i++) { |
| 878 | llist_add(&s->grants_used[i]->node, &info->persistent_gnts); | 901 | list_add(&s->grants_used[i]->node, &info->persistent_gnts); |
| 879 | info->persistent_gnts_c++; | 902 | info->persistent_gnts_c++; |
| 880 | } | 903 | } |
| 881 | } | 904 | } |
| @@ -1013,6 +1036,12 @@ static int setup_blkring(struct xenbus_device *dev, | |||
| 1013 | 1036 | ||
| 1014 | sg_init_table(info->sg, BLKIF_MAX_SEGMENTS_PER_REQUEST); | 1037 | sg_init_table(info->sg, BLKIF_MAX_SEGMENTS_PER_REQUEST); |
| 1015 | 1038 | ||
| 1039 | /* Allocate memory for grants */ | ||
| 1040 | err = fill_grant_buffer(info, BLK_RING_SIZE * | ||
| 1041 | BLKIF_MAX_SEGMENTS_PER_REQUEST); | ||
| 1042 | if (err) | ||
| 1043 | goto fail; | ||
| 1044 | |||
| 1016 | err = xenbus_grant_ring(dev, virt_to_mfn(info->ring.sring)); | 1045 | err = xenbus_grant_ring(dev, virt_to_mfn(info->ring.sring)); |
| 1017 | if (err < 0) { | 1046 | if (err < 0) { |
| 1018 | free_page((unsigned long)sring); | 1047 | free_page((unsigned long)sring); |
| @@ -1171,7 +1200,7 @@ static int blkfront_probe(struct xenbus_device *dev, | |||
| 1171 | spin_lock_init(&info->io_lock); | 1200 | spin_lock_init(&info->io_lock); |
| 1172 | info->xbdev = dev; | 1201 | info->xbdev = dev; |
| 1173 | info->vdevice = vdevice; | 1202 | info->vdevice = vdevice; |
| 1174 | init_llist_head(&info->persistent_gnts); | 1203 | INIT_LIST_HEAD(&info->persistent_gnts); |
| 1175 | info->persistent_gnts_c = 0; | 1204 | info->persistent_gnts_c = 0; |
| 1176 | info->connected = BLKIF_STATE_DISCONNECTED; | 1205 | info->connected = BLKIF_STATE_DISCONNECTED; |
| 1177 | INIT_WORK(&info->work, blkif_restart_queue); | 1206 | INIT_WORK(&info->work, blkif_restart_queue); |
| @@ -1203,11 +1232,10 @@ static int blkif_recover(struct blkfront_info *info) | |||
| 1203 | int j; | 1232 | int j; |
| 1204 | 1233 | ||
| 1205 | /* Stage 1: Make a safe copy of the shadow state. */ | 1234 | /* Stage 1: Make a safe copy of the shadow state. */ |
| 1206 | copy = kmalloc(sizeof(info->shadow), | 1235 | copy = kmemdup(info->shadow, sizeof(info->shadow), |
| 1207 | GFP_NOIO | __GFP_REPEAT | __GFP_HIGH); | 1236 | GFP_NOIO | __GFP_REPEAT | __GFP_HIGH); |
| 1208 | if (!copy) | 1237 | if (!copy) |
| 1209 | return -ENOMEM; | 1238 | return -ENOMEM; |
| 1210 | memcpy(copy, info->shadow, sizeof(info->shadow)); | ||
| 1211 | 1239 | ||
| 1212 | /* Stage 2: Set up free list. */ | 1240 | /* Stage 2: Set up free list. */ |
| 1213 | memset(&info->shadow, 0, sizeof(info->shadow)); | 1241 | memset(&info->shadow, 0, sizeof(info->shadow)); |
| @@ -1236,7 +1264,7 @@ static int blkif_recover(struct blkfront_info *info) | |||
| 1236 | gnttab_grant_foreign_access_ref( | 1264 | gnttab_grant_foreign_access_ref( |
| 1237 | req->u.rw.seg[j].gref, | 1265 | req->u.rw.seg[j].gref, |
| 1238 | info->xbdev->otherend_id, | 1266 | info->xbdev->otherend_id, |
| 1239 | pfn_to_mfn(info->shadow[req->u.rw.id].frame[j]), | 1267 | pfn_to_mfn(copy[i].grants_used[j]->pfn), |
| 1240 | 0); | 1268 | 0); |
| 1241 | } | 1269 | } |
| 1242 | info->shadow[req->u.rw.id].req = *req; | 1270 | info->shadow[req->u.rw.id].req = *req; |
