4 * XenLinux virtual block device driver.
6 * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
7 * Modifications by Mark A. Williamson are (c) Intel Research Cambridge
8 * Copyright (c) 2004, Christian Limpach
9 * Copyright (c) 2004, Andrew Warfield
10 * Copyright (c) 2005, Christopher Clark
11 * Copyright (c) 2005, XenSource Ltd
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License version 2
15 * as published by the Free Software Foundation; or, when distributed
16 * separately from the Linux kernel or incorporated into other
17 * software packages, subject to the following license:
19 * Permission is hereby granted, free of charge, to any person obtaining a copy
20 * of this source file (the "Software"), to deal in the Software without
21 * restriction, including without limitation the rights to use, copy, modify,
22 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
23 * and to permit persons to whom the Software is furnished to do so, subject to
24 * the following conditions:
26 * The above copyright notice and this permission notice shall be included in
27 * all copies or substantial portions of the Software.
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
34 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
38 #include <linux/interrupt.h>
39 #include <linux/blkdev.h>
40 #include <linux/module.h>
42 #include <xen/xenbus.h>
43 #include <xen/grant_table.h>
44 #include <xen/events.h>
47 #include <xen/interface/grant_table.h>
48 #include <xen/interface/io/blkif.h>
50 #include <asm/xen/hypervisor.h>
53 BLKIF_STATE_DISCONNECTED,
54 BLKIF_STATE_CONNECTED,
55 BLKIF_STATE_SUSPENDED,
59 struct blkif_request req;
60 unsigned long request;
61 unsigned long frame[BLKIF_MAX_SEGMENTS_PER_REQUEST];
64 static struct block_device_operations xlvbd_block_fops;
66 #define BLK_RING_SIZE __RING_SIZE((struct blkif_sring *)0, PAGE_SIZE)
69 * We have one of these per vbd, whether ide, scsi or 'other'. They
70 * hang in private_data off the gendisk structure. We may end up
71 * putting all kinds of interesting stuff here :-)
75 struct xenbus_device *xbdev;
80 enum blkif_state connected;
82 struct blkif_front_ring ring;
83 unsigned int evtchn, irq;
84 struct request_queue *rq;
85 struct work_struct work;
86 struct gnttab_free_callback callback;
87 struct blk_shadow shadow[BLK_RING_SIZE];
88 unsigned long shadow_free;
92 * The number of people holding this device open. We won't allow a
93 * hot-unplug unless this is 0.
98 static DEFINE_SPINLOCK(blkif_io_lock);
100 #define MAXIMUM_OUTSTANDING_BLOCK_REQS \
101 (BLKIF_MAX_SEGMENTS_PER_REQUEST * BLK_RING_SIZE)
102 #define GRANT_INVALID_REF 0
104 #define PARTS_PER_DISK 16
106 #define BLKIF_MAJOR(dev) ((dev)>>8)
107 #define BLKIF_MINOR(dev) ((dev) & 0xff)
109 #define DEV_NAME "xvd" /* name in /dev */
111 /* Information about our VBDs. */
113 static LIST_HEAD(vbds_list);
115 static int get_id_from_freelist(struct blkfront_info *info)
117 unsigned long free = info->shadow_free;
118 BUG_ON(free > BLK_RING_SIZE);
119 info->shadow_free = info->shadow[free].req.id;
120 info->shadow[free].req.id = 0x0fffffee; /* debug */
124 static void add_id_to_freelist(struct blkfront_info *info,
127 info->shadow[id].req.id = info->shadow_free;
128 info->shadow[id].request = 0;
129 info->shadow_free = id;
132 static void blkif_restart_queue_callback(void *arg)
134 struct blkfront_info *info = (struct blkfront_info *)arg;
135 schedule_work(&info->work);
139 * blkif_queue_request
143 * id: for guest use only.
144 * operation: BLKIF_OP_{READ,WRITE,PROBE}
145 * buffer: buffer to read/write into. this should be a
146 * virtual address in the guest os.
148 static int blkif_queue_request(struct request *req)
150 struct blkfront_info *info = req->rq_disk->private_data;
151 unsigned long buffer_mfn;
152 struct blkif_request *ring_req;
153 struct req_iterator iter;
154 struct bio_vec *bvec;
156 unsigned int fsect, lsect;
158 grant_ref_t gref_head;
160 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
163 if (gnttab_alloc_grant_references(
164 BLKIF_MAX_SEGMENTS_PER_REQUEST, &gref_head) < 0) {
165 gnttab_request_free_callback(
167 blkif_restart_queue_callback,
169 BLKIF_MAX_SEGMENTS_PER_REQUEST);
173 /* Fill out a communications ring structure. */
174 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
175 id = get_id_from_freelist(info);
176 info->shadow[id].request = (unsigned long)req;
179 ring_req->sector_number = (blkif_sector_t)req->sector;
180 ring_req->handle = info->handle;
182 ring_req->operation = rq_data_dir(req) ?
183 BLKIF_OP_WRITE : BLKIF_OP_READ;
184 if (blk_barrier_rq(req))
185 ring_req->operation = BLKIF_OP_WRITE_BARRIER;
187 ring_req->nr_segments = 0;
188 rq_for_each_segment(bvec, req, iter) {
189 BUG_ON(ring_req->nr_segments == BLKIF_MAX_SEGMENTS_PER_REQUEST);
190 buffer_mfn = pfn_to_mfn(page_to_pfn(bvec->bv_page));
191 fsect = bvec->bv_offset >> 9;
192 lsect = fsect + (bvec->bv_len >> 9) - 1;
193 /* install a grant reference. */
194 ref = gnttab_claim_grant_reference(&gref_head);
195 BUG_ON(ref == -ENOSPC);
197 gnttab_grant_foreign_access_ref(
199 info->xbdev->otherend_id,
203 info->shadow[id].frame[ring_req->nr_segments] =
204 mfn_to_pfn(buffer_mfn);
206 ring_req->seg[ring_req->nr_segments] =
207 (struct blkif_request_segment) {
210 .last_sect = lsect };
212 ring_req->nr_segments++;
215 info->ring.req_prod_pvt++;
217 /* Keep a private copy so we can reissue requests when recovering. */
218 info->shadow[id].req = *ring_req;
220 gnttab_free_grant_references(gref_head);
226 static inline void flush_requests(struct blkfront_info *info)
230 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&info->ring, notify);
233 notify_remote_via_irq(info->irq);
238 * read a block; request is in a request queue
240 static void do_blkif_request(struct request_queue *rq)
242 struct blkfront_info *info = NULL;
246 pr_debug("Entered do_blkif_request\n");
250 while ((req = elv_next_request(rq)) != NULL) {
251 info = req->rq_disk->private_data;
252 if (!blk_fs_request(req)) {
257 if (RING_FULL(&info->ring))
260 pr_debug("do_blk_req %p: cmd %p, sec %lx, "
261 "(%u/%li) buffer:%p [%s]\n",
262 req, req->cmd, (unsigned long)req->sector,
263 req->current_nr_sectors,
264 req->nr_sectors, req->buffer,
265 rq_data_dir(req) ? "write" : "read");
268 blkdev_dequeue_request(req);
269 if (blkif_queue_request(req)) {
270 blk_requeue_request(rq, req);
272 /* Avoid pointless unplugs. */
281 flush_requests(info);
284 static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size)
286 struct request_queue *rq;
288 rq = blk_init_queue(do_blkif_request, &blkif_io_lock);
292 elevator_init(rq, "noop");
294 /* Hard sector size and max sectors impersonate the equiv. hardware. */
295 blk_queue_hardsect_size(rq, sector_size);
296 blk_queue_max_sectors(rq, 512);
298 /* Each segment in a request is up to an aligned page in size. */
299 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
300 blk_queue_max_segment_size(rq, PAGE_SIZE);
302 /* Ensure a merged request will fit in a single I/O ring slot. */
303 blk_queue_max_phys_segments(rq, BLKIF_MAX_SEGMENTS_PER_REQUEST);
304 blk_queue_max_hw_segments(rq, BLKIF_MAX_SEGMENTS_PER_REQUEST);
306 /* Make sure buffer addresses are sector-aligned. */
307 blk_queue_dma_alignment(rq, 511);
315 static int xlvbd_barrier(struct blkfront_info *info)
319 err = blk_queue_ordered(info->rq,
320 info->feature_barrier ? QUEUE_ORDERED_DRAIN : QUEUE_ORDERED_NONE,
326 printk(KERN_INFO "blkfront: %s: barriers %s\n",
328 info->feature_barrier ? "enabled" : "disabled");
333 static int xlvbd_alloc_gendisk(int minor, blkif_sector_t capacity,
334 int vdevice, u16 vdisk_info, u16 sector_size,
335 struct blkfront_info *info)
341 BUG_ON(info->gd != NULL);
342 BUG_ON(info->rq != NULL);
344 if ((minor % PARTS_PER_DISK) == 0)
345 nr_minors = PARTS_PER_DISK;
347 gd = alloc_disk(nr_minors);
352 sprintf(gd->disk_name, "%s%c", DEV_NAME,
353 'a' + minor / PARTS_PER_DISK);
355 sprintf(gd->disk_name, "%s%c%d", DEV_NAME,
356 'a' + minor / PARTS_PER_DISK,
357 minor % PARTS_PER_DISK);
359 gd->major = XENVBD_MAJOR;
360 gd->first_minor = minor;
361 gd->fops = &xlvbd_block_fops;
362 gd->private_data = info;
363 gd->driverfs_dev = &(info->xbdev->dev);
364 set_capacity(gd, capacity);
366 if (xlvbd_init_blk_queue(gd, sector_size)) {
371 info->rq = gd->queue;
374 if (info->feature_barrier)
377 if (vdisk_info & VDISK_READONLY)
380 if (vdisk_info & VDISK_REMOVABLE)
381 gd->flags |= GENHD_FL_REMOVABLE;
383 if (vdisk_info & VDISK_CDROM)
384 gd->flags |= GENHD_FL_CD;
392 static void kick_pending_request_queues(struct blkfront_info *info)
394 if (!RING_FULL(&info->ring)) {
395 /* Re-enable calldowns. */
396 blk_start_queue(info->rq);
397 /* Kick things off immediately. */
398 do_blkif_request(info->rq);
402 static void blkif_restart_queue(struct work_struct *work)
404 struct blkfront_info *info = container_of(work, struct blkfront_info, work);
406 spin_lock_irq(&blkif_io_lock);
407 if (info->connected == BLKIF_STATE_CONNECTED)
408 kick_pending_request_queues(info);
409 spin_unlock_irq(&blkif_io_lock);
412 static void blkif_free(struct blkfront_info *info, int suspend)
414 /* Prevent new requests being issued until we fix things up. */
415 spin_lock_irq(&blkif_io_lock);
416 info->connected = suspend ?
417 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
418 /* No more blkif_request(). */
420 blk_stop_queue(info->rq);
421 /* No more gnttab callback work. */
422 gnttab_cancel_free_callback(&info->callback);
423 spin_unlock_irq(&blkif_io_lock);
425 /* Flush gnttab callback work. Must be done with no locks held. */
426 flush_scheduled_work();
428 /* Free resources associated with old device channel. */
429 if (info->ring_ref != GRANT_INVALID_REF) {
430 gnttab_end_foreign_access(info->ring_ref, 0,
431 (unsigned long)info->ring.sring);
432 info->ring_ref = GRANT_INVALID_REF;
433 info->ring.sring = NULL;
436 unbind_from_irqhandler(info->irq, info);
437 info->evtchn = info->irq = 0;
441 static void blkif_completion(struct blk_shadow *s)
444 for (i = 0; i < s->req.nr_segments; i++)
445 gnttab_end_foreign_access(s->req.seg[i].gref, 0, 0UL);
448 static irqreturn_t blkif_interrupt(int irq, void *dev_id)
451 struct blkif_response *bret;
454 struct blkfront_info *info = (struct blkfront_info *)dev_id;
457 spin_lock_irqsave(&blkif_io_lock, flags);
459 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
460 spin_unlock_irqrestore(&blkif_io_lock, flags);
465 rp = info->ring.sring->rsp_prod;
466 rmb(); /* Ensure we see queued responses up to 'rp'. */
468 for (i = info->ring.rsp_cons; i != rp; i++) {
472 bret = RING_GET_RESPONSE(&info->ring, i);
474 req = (struct request *)info->shadow[id].request;
476 blkif_completion(&info->shadow[id]);
478 add_id_to_freelist(info, id);
480 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
481 switch (bret->operation) {
482 case BLKIF_OP_WRITE_BARRIER:
483 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
484 printk(KERN_WARNING "blkfront: %s: write barrier op failed\n",
485 info->gd->disk_name);
487 info->feature_barrier = 0;
493 if (unlikely(bret->status != BLKIF_RSP_OKAY))
494 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
495 "request: %x\n", bret->status);
497 ret = __blk_end_request(req, error, blk_rq_bytes(req));
505 info->ring.rsp_cons = i;
507 if (i != info->ring.req_prod_pvt) {
509 RING_FINAL_CHECK_FOR_RESPONSES(&info->ring, more_to_do);
513 info->ring.sring->rsp_event = i + 1;
515 kick_pending_request_queues(info);
517 spin_unlock_irqrestore(&blkif_io_lock, flags);
523 static int setup_blkring(struct xenbus_device *dev,
524 struct blkfront_info *info)
526 struct blkif_sring *sring;
529 info->ring_ref = GRANT_INVALID_REF;
531 sring = (struct blkif_sring *)__get_free_page(GFP_KERNEL);
533 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
536 SHARED_RING_INIT(sring);
537 FRONT_RING_INIT(&info->ring, sring, PAGE_SIZE);
539 err = xenbus_grant_ring(dev, virt_to_mfn(info->ring.sring));
541 free_page((unsigned long)sring);
542 info->ring.sring = NULL;
545 info->ring_ref = err;
547 err = xenbus_alloc_evtchn(dev, &info->evtchn);
551 err = bind_evtchn_to_irqhandler(info->evtchn,
553 IRQF_SAMPLE_RANDOM, "blkif", info);
555 xenbus_dev_fatal(dev, err,
556 "bind_evtchn_to_irqhandler failed");
568 /* Common code used when first setting up, and when resuming. */
569 static int talk_to_backend(struct xenbus_device *dev,
570 struct blkfront_info *info)
572 const char *message = NULL;
573 struct xenbus_transaction xbt;
576 /* Create shared ring, alloc event channel. */
577 err = setup_blkring(dev, info);
582 err = xenbus_transaction_start(&xbt);
584 xenbus_dev_fatal(dev, err, "starting transaction");
585 goto destroy_blkring;
588 err = xenbus_printf(xbt, dev->nodename,
589 "ring-ref", "%u", info->ring_ref);
591 message = "writing ring-ref";
592 goto abort_transaction;
594 err = xenbus_printf(xbt, dev->nodename,
595 "event-channel", "%u", info->evtchn);
597 message = "writing event-channel";
598 goto abort_transaction;
601 err = xenbus_transaction_end(xbt, 0);
605 xenbus_dev_fatal(dev, err, "completing transaction");
606 goto destroy_blkring;
609 xenbus_switch_state(dev, XenbusStateInitialised);
614 xenbus_transaction_end(xbt, 1);
616 xenbus_dev_fatal(dev, err, "%s", message);
625 * Entry point to this code when a new device is created. Allocate the basic
626 * structures and the ring buffer for communication with the backend, and
627 * inform the backend of the appropriate details for those. Switch to
630 static int blkfront_probe(struct xenbus_device *dev,
631 const struct xenbus_device_id *id)
634 struct blkfront_info *info;
636 /* FIXME: Use dynamic device id if this is not set. */
637 err = xenbus_scanf(XBT_NIL, dev->nodename,
638 "virtual-device", "%i", &vdevice);
640 xenbus_dev_fatal(dev, err, "reading virtual-device");
644 info = kzalloc(sizeof(*info), GFP_KERNEL);
646 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
651 info->vdevice = vdevice;
652 info->connected = BLKIF_STATE_DISCONNECTED;
653 INIT_WORK(&info->work, blkif_restart_queue);
655 for (i = 0; i < BLK_RING_SIZE; i++)
656 info->shadow[i].req.id = i+1;
657 info->shadow[BLK_RING_SIZE-1].req.id = 0x0fffffff;
659 /* Front end dir is a number, which is used as the id. */
660 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
661 dev->dev.driver_data = info;
663 err = talk_to_backend(dev, info);
666 dev->dev.driver_data = NULL;
674 static int blkif_recover(struct blkfront_info *info)
677 struct blkif_request *req;
678 struct blk_shadow *copy;
681 /* Stage 1: Make a safe copy of the shadow state. */
682 copy = kmalloc(sizeof(info->shadow), GFP_KERNEL);
685 memcpy(copy, info->shadow, sizeof(info->shadow));
687 /* Stage 2: Set up free list. */
688 memset(&info->shadow, 0, sizeof(info->shadow));
689 for (i = 0; i < BLK_RING_SIZE; i++)
690 info->shadow[i].req.id = i+1;
691 info->shadow_free = info->ring.req_prod_pvt;
692 info->shadow[BLK_RING_SIZE-1].req.id = 0x0fffffff;
694 /* Stage 3: Find pending requests and requeue them. */
695 for (i = 0; i < BLK_RING_SIZE; i++) {
697 if (copy[i].request == 0)
700 /* Grab a request slot and copy shadow state into it. */
701 req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
704 /* We get a new request id, and must reset the shadow state. */
705 req->id = get_id_from_freelist(info);
706 memcpy(&info->shadow[req->id], ©[i], sizeof(copy[i]));
708 /* Rewrite any grant references invalidated by susp/resume. */
709 for (j = 0; j < req->nr_segments; j++)
710 gnttab_grant_foreign_access_ref(
712 info->xbdev->otherend_id,
713 pfn_to_mfn(info->shadow[req->id].frame[j]),
716 info->shadow[req->id].request));
717 info->shadow[req->id].req = *req;
719 info->ring.req_prod_pvt++;
724 xenbus_switch_state(info->xbdev, XenbusStateConnected);
726 spin_lock_irq(&blkif_io_lock);
728 /* Now safe for us to use the shared ring */
729 info->connected = BLKIF_STATE_CONNECTED;
731 /* Send off requeued requests */
732 flush_requests(info);
734 /* Kick any other new requests queued since we resumed */
735 kick_pending_request_queues(info);
737 spin_unlock_irq(&blkif_io_lock);
743 * We are reconnecting to the backend, due to a suspend/resume, or a backend
744 * driver restart. We tear down our blkif structure and recreate it, but
745 * leave the device-layer structures intact so that this is transparent to the
746 * rest of the kernel.
748 static int blkfront_resume(struct xenbus_device *dev)
750 struct blkfront_info *info = dev->dev.driver_data;
753 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
755 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
757 err = talk_to_backend(dev, info);
758 if (info->connected == BLKIF_STATE_SUSPENDED && !err)
759 err = blkif_recover(info);
766 * Invoked when the backend is finally 'ready' (and has told produced
767 * the details about the physical device - #sectors, size, etc).
769 static void blkfront_connect(struct blkfront_info *info)
771 unsigned long long sectors;
772 unsigned long sector_size;
776 if ((info->connected == BLKIF_STATE_CONNECTED) ||
777 (info->connected == BLKIF_STATE_SUSPENDED) )
780 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
781 __func__, info->xbdev->otherend);
783 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
784 "sectors", "%llu", §ors,
785 "info", "%u", &binfo,
786 "sector-size", "%lu", §or_size,
789 xenbus_dev_fatal(info->xbdev, err,
790 "reading backend fields at %s",
791 info->xbdev->otherend);
795 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
796 "feature-barrier", "%lu", &info->feature_barrier,
799 info->feature_barrier = 0;
801 err = xlvbd_alloc_gendisk(BLKIF_MINOR(info->vdevice),
802 sectors, info->vdevice,
803 binfo, sector_size, info);
805 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
806 info->xbdev->otherend);
810 xenbus_switch_state(info->xbdev, XenbusStateConnected);
812 /* Kick pending requests. */
813 spin_lock_irq(&blkif_io_lock);
814 info->connected = BLKIF_STATE_CONNECTED;
815 kick_pending_request_queues(info);
816 spin_unlock_irq(&blkif_io_lock);
822 * Handle the change of state of the backend to Closing. We must delete our
823 * device-layer structures now, to ensure that writes are flushed through to
824 * the backend. Once is this done, we can switch to Closed in
827 static void blkfront_closing(struct xenbus_device *dev)
829 struct blkfront_info *info = dev->dev.driver_data;
832 dev_dbg(&dev->dev, "blkfront_closing: %s removed\n", dev->nodename);
834 if (info->rq == NULL)
837 spin_lock_irqsave(&blkif_io_lock, flags);
839 del_gendisk(info->gd);
841 /* No more blkif_request(). */
842 blk_stop_queue(info->rq);
844 /* No more gnttab callback work. */
845 gnttab_cancel_free_callback(&info->callback);
846 spin_unlock_irqrestore(&blkif_io_lock, flags);
848 /* Flush gnttab callback work. Must be done with no locks held. */
849 flush_scheduled_work();
851 blk_cleanup_queue(info->rq);
855 xenbus_frontend_closed(dev);
859 * Callback received when the backend's state changes.
861 static void backend_changed(struct xenbus_device *dev,
862 enum xenbus_state backend_state)
864 struct blkfront_info *info = dev->dev.driver_data;
865 struct block_device *bd;
867 dev_dbg(&dev->dev, "blkfront:backend_changed.\n");
869 switch (backend_state) {
870 case XenbusStateInitialising:
871 case XenbusStateInitWait:
872 case XenbusStateInitialised:
873 case XenbusStateUnknown:
874 case XenbusStateClosed:
877 case XenbusStateConnected:
878 blkfront_connect(info);
881 case XenbusStateClosing:
882 bd = bdget(info->dev);
884 xenbus_dev_fatal(dev, -ENODEV, "bdget failed");
886 mutex_lock(&bd->bd_mutex);
888 xenbus_dev_error(dev, -EBUSY,
889 "Device in use; refusing to close");
891 blkfront_closing(dev);
892 mutex_unlock(&bd->bd_mutex);
898 static int blkfront_remove(struct xenbus_device *dev)
900 struct blkfront_info *info = dev->dev.driver_data;
902 dev_dbg(&dev->dev, "blkfront_remove: %s removed\n", dev->nodename);
911 static int blkif_open(struct inode *inode, struct file *filep)
913 struct blkfront_info *info = inode->i_bdev->bd_disk->private_data;
918 static int blkif_release(struct inode *inode, struct file *filep)
920 struct blkfront_info *info = inode->i_bdev->bd_disk->private_data;
922 if (info->users == 0) {
923 /* Check whether we have been instructed to close. We will
924 have ignored this request initially, as the device was
926 struct xenbus_device *dev = info->xbdev;
927 enum xenbus_state state = xenbus_read_driver_state(dev->otherend);
929 if (state == XenbusStateClosing)
930 blkfront_closing(dev);
935 static struct block_device_operations xlvbd_block_fops =
937 .owner = THIS_MODULE,
939 .release = blkif_release,
943 static struct xenbus_device_id blkfront_ids[] = {
948 static struct xenbus_driver blkfront = {
950 .owner = THIS_MODULE,
952 .probe = blkfront_probe,
953 .remove = blkfront_remove,
954 .resume = blkfront_resume,
955 .otherend_changed = backend_changed,
958 static int __init xlblk_init(void)
960 if (!is_running_on_xen())
963 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
964 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
965 XENVBD_MAJOR, DEV_NAME);
969 return xenbus_register_frontend(&blkfront);
971 module_init(xlblk_init);
974 static void xlblk_exit(void)
976 return xenbus_unregister_driver(&blkfront);
978 module_exit(xlblk_exit);
980 MODULE_DESCRIPTION("Xen virtual block device frontend");
981 MODULE_LICENSE("GPL");
982 MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);