1 /* Copyright (c) 2007 Coraid, Inc. See COPYING for GPL terms. */
4 * block device routines
7 #include <linux/hdreg.h>
8 #include <linux/blkdev.h>
9 #include <linux/backing-dev.h>
11 #include <linux/ioctl.h>
12 #include <linux/genhd.h>
13 #include <linux/netdevice.h>
16 static struct kmem_cache *buf_pool_cache;
18 static ssize_t aoedisk_show_state(struct device *dev,
19 struct device_attribute *attr, char *page)
21 struct gendisk *disk = dev_to_disk(dev);
22 struct aoedev *d = disk->private_data;
24 return snprintf(page, PAGE_SIZE,
26 (d->flags & DEVFL_UP) ? "up" : "down",
27 (d->flags & DEVFL_KICKME) ? ",kickme" :
28 (d->nopen && !(d->flags & DEVFL_UP)) ? ",closewait" : "");
29 /* I'd rather see nopen exported so we can ditch closewait */
31 static ssize_t aoedisk_show_mac(struct device *dev,
32 struct device_attribute *attr, char *page)
34 struct gendisk *disk = dev_to_disk(dev);
35 struct aoedev *d = disk->private_data;
36 struct aoetgt *t = d->targets[0];
39 return snprintf(page, PAGE_SIZE, "none\n");
40 return snprintf(page, PAGE_SIZE, "%012llx\n", mac_addr(t->addr));
42 static ssize_t aoedisk_show_netif(struct device *dev,
43 struct device_attribute *attr, char *page)
45 struct gendisk *disk = dev_to_disk(dev);
46 struct aoedev *d = disk->private_data;
47 struct net_device *nds[8], **nd, **nnd, **ne;
48 struct aoetgt **t, **te;
49 struct aoeif *ifp, *e;
52 memset(nds, 0, sizeof nds);
54 ne = nd + ARRAY_SIZE(nds);
57 for (; t < te && *t; t++) {
60 for (; ifp < e && ifp->nd; ifp++) {
61 for (nnd = nds; nnd < nd; nnd++)
64 if (nnd == nd && nd != ne)
72 return snprintf(page, PAGE_SIZE, "none\n");
73 for (p = page; nd < ne; nd++)
74 p += snprintf(p, PAGE_SIZE - (p-page), "%s%s",
75 p == page ? "" : ",", (*nd)->name);
76 p += snprintf(p, PAGE_SIZE - (p-page), "\n");
79 /* firmware version */
80 static ssize_t aoedisk_show_fwver(struct device *dev,
81 struct device_attribute *attr, char *page)
83 struct gendisk *disk = dev_to_disk(dev);
84 struct aoedev *d = disk->private_data;
86 return snprintf(page, PAGE_SIZE, "0x%04x\n", (unsigned int) d->fw_ver);
89 static DEVICE_ATTR(state, S_IRUGO, aoedisk_show_state, NULL);
90 static DEVICE_ATTR(mac, S_IRUGO, aoedisk_show_mac, NULL);
91 static DEVICE_ATTR(netif, S_IRUGO, aoedisk_show_netif, NULL);
92 static struct device_attribute dev_attr_firmware_version = {
93 .attr = { .name = "firmware-version", .mode = S_IRUGO },
94 .show = aoedisk_show_fwver,
97 static struct attribute *aoe_attrs[] = {
100 &dev_attr_netif.attr,
101 &dev_attr_firmware_version.attr,
105 static const struct attribute_group attr_group = {
110 aoedisk_add_sysfs(struct aoedev *d)
112 return sysfs_create_group(&disk_to_dev(d->gd)->kobj, &attr_group);
115 aoedisk_rm_sysfs(struct aoedev *d)
117 sysfs_remove_group(&disk_to_dev(d->gd)->kobj, &attr_group);
121 aoeblk_open(struct inode *inode, struct file *filp)
126 d = inode->i_bdev->bd_disk->private_data;
128 spin_lock_irqsave(&d->lock, flags);
129 if (d->flags & DEVFL_UP) {
131 spin_unlock_irqrestore(&d->lock, flags);
134 spin_unlock_irqrestore(&d->lock, flags);
139 aoeblk_release(struct inode *inode, struct file *filp)
144 d = inode->i_bdev->bd_disk->private_data;
146 spin_lock_irqsave(&d->lock, flags);
148 if (--d->nopen == 0) {
149 spin_unlock_irqrestore(&d->lock, flags);
150 aoecmd_cfg(d->aoemajor, d->aoeminor);
153 spin_unlock_irqrestore(&d->lock, flags);
159 aoeblk_make_request(struct request_queue *q, struct bio *bio)
161 struct sk_buff_head queue;
166 blk_queue_bounce(q, &bio);
169 printk(KERN_ERR "aoe: bio is NULL\n");
173 d = bio->bi_bdev->bd_disk->private_data;
175 printk(KERN_ERR "aoe: bd_disk->private_data is NULL\n");
177 bio_endio(bio, -ENXIO);
179 } else if (bio->bi_io_vec == NULL) {
180 printk(KERN_ERR "aoe: bi_io_vec is NULL\n");
182 bio_endio(bio, -ENXIO);
185 buf = mempool_alloc(d->bufpool, GFP_NOIO);
187 printk(KERN_INFO "aoe: buf allocation failure\n");
188 bio_endio(bio, -ENOMEM);
191 memset(buf, 0, sizeof(*buf));
192 INIT_LIST_HEAD(&buf->bufs);
193 buf->stime = jiffies;
195 buf->resid = bio->bi_size;
196 buf->sector = bio->bi_sector;
197 buf->bv = &bio->bi_io_vec[bio->bi_idx];
198 buf->bv_resid = buf->bv->bv_len;
199 WARN_ON(buf->bv_resid == 0);
200 buf->bv_off = buf->bv->bv_offset;
202 spin_lock_irqsave(&d->lock, flags);
204 if ((d->flags & DEVFL_UP) == 0) {
205 printk(KERN_INFO "aoe: device %ld.%d is not up\n",
206 d->aoemajor, d->aoeminor);
207 spin_unlock_irqrestore(&d->lock, flags);
208 mempool_free(buf, d->bufpool);
209 bio_endio(bio, -ENXIO);
213 list_add_tail(&buf->bufs, &d->bufq);
216 __skb_queue_head_init(&queue);
217 skb_queue_splice_init(&d->sendq, &queue);
219 spin_unlock_irqrestore(&d->lock, flags);
226 aoeblk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
228 struct aoedev *d = bdev->bd_disk->private_data;
230 if ((d->flags & DEVFL_UP) == 0) {
231 printk(KERN_ERR "aoe: disk not up\n");
235 geo->cylinders = d->geo.cylinders;
236 geo->heads = d->geo.heads;
237 geo->sectors = d->geo.sectors;
241 static struct block_device_operations aoe_bdops = {
243 .release = aoeblk_release,
244 .getgeo = aoeblk_getgeo,
245 .owner = THIS_MODULE,
248 /* alloc_disk and add_disk can sleep */
250 aoeblk_gdalloc(void *vp)
252 struct aoedev *d = vp;
256 gd = alloc_disk(AOE_PARTITIONS);
259 "aoe: cannot allocate disk structure for %ld.%d\n",
260 d->aoemajor, d->aoeminor);
264 d->bufpool = mempool_create_slab_pool(MIN_BUFS, buf_pool_cache);
265 if (d->bufpool == NULL) {
266 printk(KERN_ERR "aoe: cannot allocate bufpool for %ld.%d\n",
267 d->aoemajor, d->aoeminor);
271 blk_queue_make_request(&d->blkq, aoeblk_make_request);
272 if (bdi_init(&d->blkq.backing_dev_info))
274 spin_lock_irqsave(&d->lock, flags);
275 gd->major = AOE_MAJOR;
276 gd->first_minor = d->sysminor * AOE_PARTITIONS;
277 gd->fops = &aoe_bdops;
278 gd->private_data = d;
279 set_capacity(gd, d->ssize);
280 snprintf(gd->disk_name, sizeof gd->disk_name, "etherd/e%ld.%d",
281 d->aoemajor, d->aoeminor);
283 gd->queue = &d->blkq;
285 d->flags &= ~DEVFL_GDALLOC;
286 d->flags |= DEVFL_UP;
288 spin_unlock_irqrestore(&d->lock, flags);
291 aoedisk_add_sysfs(d);
295 mempool_destroy(d->bufpool);
299 spin_lock_irqsave(&d->lock, flags);
300 d->flags &= ~DEVFL_GDALLOC;
301 spin_unlock_irqrestore(&d->lock, flags);
307 kmem_cache_destroy(buf_pool_cache);
313 buf_pool_cache = kmem_cache_create("aoe_bufs",
316 if (buf_pool_cache == NULL)