blob: cb508b75437774e73bd243374926a9cb9a5cafcd [file] [log] [blame]
Ed Cashinfea05a22012-10-04 17:16:38 -07001/* Copyright (c) 2012 Coraid, Inc. See COPYING for GPL terms. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * aoeblk.c
4 * block device routines
5 */
6
Andrew Morton027b1802010-10-28 06:15:26 -06007#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/hdreg.h>
9#include <linux/blkdev.h>
Andrew Morton43cbe2c2007-12-10 15:49:13 -080010#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/fs.h>
12#include <linux/ioctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Andrew Morton027b1802010-10-28 06:15:26 -060014#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/genhd.h>
16#include <linux/netdevice.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020017#include <linux/mutex.h>
Paul Gortmakerd5decd32011-05-26 16:00:52 -040018#include <linux/export.h>
Ed Cashinaa304fd2012-12-17 16:03:32 -080019#include <linux/moduleparam.h>
Ed Cashin190519c2013-09-11 14:25:39 -070020#include <linux/debugfs.h>
Ed Cashin667be1e2012-12-17 16:03:42 -080021#include <scsi/sg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "aoe.h"
23
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020024static DEFINE_MUTEX(aoeblk_mutex);
Christoph Lametere18b8902006-12-06 20:33:20 -080025static struct kmem_cache *buf_pool_cache;
Ed Cashin190519c2013-09-11 14:25:39 -070026static struct dentry *aoe_debugfs_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Ed Cashinaa304fd2012-12-17 16:03:32 -080028/* GPFS needs a larger value than the default. */
29static int aoe_maxsectors;
30module_param(aoe_maxsectors, int, 0644);
31MODULE_PARM_DESC(aoe_maxsectors,
32 "When nonzero, set the maximum number of sectors per I/O request");
33
Kay Sieversedfaa7c2007-05-21 22:08:01 +020034static ssize_t aoedisk_show_state(struct device *dev,
35 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020037 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 struct aoedev *d = disk->private_data;
39
40 return snprintf(page, PAGE_SIZE,
41 "%s%s\n",
42 (d->flags & DEVFL_UP) ? "up" : "down",
Ed L. Cashin68e0d422008-02-08 04:20:00 -080043 (d->flags & DEVFL_KICKME) ? ",kickme" :
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050044 (d->nopen && !(d->flags & DEVFL_UP)) ? ",closewait" : "");
45 /* I'd rather see nopen exported so we can ditch closewait */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
Kay Sieversedfaa7c2007-05-21 22:08:01 +020047static ssize_t aoedisk_show_mac(struct device *dev,
48 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020050 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct aoedev *d = disk->private_data;
Ed L. Cashin68e0d422008-02-08 04:20:00 -080052 struct aoetgt *t = d->targets[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Ed L. Cashin68e0d422008-02-08 04:20:00 -080054 if (t == NULL)
55 return snprintf(page, PAGE_SIZE, "none\n");
Harvey Harrison411c41e2008-11-25 00:40:37 -080056 return snprintf(page, PAGE_SIZE, "%pm\n", t->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
Kay Sieversedfaa7c2007-05-21 22:08:01 +020058static ssize_t aoedisk_show_netif(struct device *dev,
59 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020061 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 struct aoedev *d = disk->private_data;
Ed L. Cashin68e0d422008-02-08 04:20:00 -080063 struct net_device *nds[8], **nd, **nnd, **ne;
64 struct aoetgt **t, **te;
65 struct aoeif *ifp, *e;
66 char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Ed L. Cashin68e0d422008-02-08 04:20:00 -080068 memset(nds, 0, sizeof nds);
69 nd = nds;
70 ne = nd + ARRAY_SIZE(nds);
71 t = d->targets;
Ed Cashin71114ec2012-12-17 16:04:11 -080072 te = t + d->ntargets;
Ed L. Cashin68e0d422008-02-08 04:20:00 -080073 for (; t < te && *t; t++) {
74 ifp = (*t)->ifs;
75 e = ifp + NAOEIFS;
76 for (; ifp < e && ifp->nd; ifp++) {
77 for (nnd = nds; nnd < nd; nnd++)
78 if (*nnd == ifp->nd)
79 break;
80 if (nnd == nd && nd != ne)
81 *nd++ = ifp->nd;
82 }
83 }
84
85 ne = nd;
86 nd = nds;
87 if (*nd == NULL)
88 return snprintf(page, PAGE_SIZE, "none\n");
89 for (p = page; nd < ne; nd++)
90 p += snprintf(p, PAGE_SIZE - (p-page), "%s%s",
91 p == page ? "" : ",", (*nd)->name);
92 p += snprintf(p, PAGE_SIZE - (p-page), "\n");
93 return p-page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
Ed L Cashin4613ed22005-04-29 10:24:25 -040095/* firmware version */
Kay Sieversedfaa7c2007-05-21 22:08:01 +020096static ssize_t aoedisk_show_fwver(struct device *dev,
97 struct device_attribute *attr, char *page)
Ed L Cashin4613ed22005-04-29 10:24:25 -040098{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020099 struct gendisk *disk = dev_to_disk(dev);
Ed L Cashin4613ed22005-04-29 10:24:25 -0400100 struct aoedev *d = disk->private_data;
101
102 return snprintf(page, PAGE_SIZE, "0x%04x\n", (unsigned int) d->fw_ver);
103}
Ed Cashin90a25082012-12-17 16:03:34 -0800104static ssize_t aoedisk_show_payload(struct device *dev,
105 struct device_attribute *attr, char *page)
106{
107 struct gendisk *disk = dev_to_disk(dev);
108 struct aoedev *d = disk->private_data;
109
110 return snprintf(page, PAGE_SIZE, "%lu\n", d->maxbcnt);
111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200113static DEVICE_ATTR(state, S_IRUGO, aoedisk_show_state, NULL);
114static DEVICE_ATTR(mac, S_IRUGO, aoedisk_show_mac, NULL);
115static DEVICE_ATTR(netif, S_IRUGO, aoedisk_show_netif, NULL);
116static struct device_attribute dev_attr_firmware_version = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700117 .attr = { .name = "firmware-version", .mode = S_IRUGO },
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200118 .show = aoedisk_show_fwver,
Ed L Cashin4613ed22005-04-29 10:24:25 -0400119};
Ed Cashin90a25082012-12-17 16:03:34 -0800120static DEVICE_ATTR(payload, S_IRUGO, aoedisk_show_payload, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Greg Kroah-Hartman4ca52242002-04-09 12:14:34 -0700122static struct attribute *aoe_attrs[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200123 &dev_attr_state.attr,
124 &dev_attr_mac.attr,
125 &dev_attr_netif.attr,
126 &dev_attr_firmware_version.attr,
Ed Cashin90a25082012-12-17 16:03:34 -0800127 &dev_attr_payload.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200128 NULL,
Greg Kroah-Hartman4ca52242002-04-09 12:14:34 -0700129};
130
131static const struct attribute_group attr_group = {
132 .attrs = aoe_attrs,
133};
134
135static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136aoedisk_add_sysfs(struct aoedev *d)
137{
Tejun Heoed9e1982008-08-25 19:56:05 +0900138 return sysfs_create_group(&disk_to_dev(d->gd)->kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140void
141aoedisk_rm_sysfs(struct aoedev *d)
142{
Tejun Heoed9e1982008-08-25 19:56:05 +0900143 sysfs_remove_group(&disk_to_dev(d->gd)->kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146static int
Al Viro94562c12008-03-02 09:23:18 -0500147aoeblk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Al Viro94562c12008-03-02 09:23:18 -0500149 struct aoedev *d = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 ulong flags;
151
Ed Cashine52a2932012-12-17 16:04:09 -0800152 if (!virt_addr_valid(d)) {
153 pr_crit("aoe: invalid device pointer in %s\n",
154 __func__);
155 WARN_ON(1);
156 return -ENODEV;
157 }
158 if (!(d->flags & DEVFL_UP) || d->flags & DEVFL_TKILL)
159 return -ENODEV;
160
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200161 mutex_lock(&aoeblk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 spin_lock_irqsave(&d->lock, flags);
Ed Cashine52a2932012-12-17 16:04:09 -0800163 if (d->flags & DEVFL_UP && !(d->flags & DEVFL_TKILL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 d->nopen++;
165 spin_unlock_irqrestore(&d->lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200166 mutex_unlock(&aoeblk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return 0;
168 }
169 spin_unlock_irqrestore(&d->lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200170 mutex_unlock(&aoeblk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return -ENODEV;
172}
173
Al Virodb2a1442013-05-05 21:52:57 -0400174static void
Al Viro94562c12008-03-02 09:23:18 -0500175aoeblk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Al Viro94562c12008-03-02 09:23:18 -0500177 struct aoedev *d = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 ulong flags;
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 spin_lock_irqsave(&d->lock, flags);
181
Ed L. Cashin5f7702f2006-01-19 13:46:27 -0500182 if (--d->nopen == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 spin_unlock_irqrestore(&d->lock, flags);
184 aoecmd_cfg(d->aoemajor, d->aoeminor);
Al Virodb2a1442013-05-05 21:52:57 -0400185 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200190static void
Ed Cashin69cf2d852012-10-04 17:16:23 -0700191aoeblk_request(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 struct aoedev *d;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700194 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Ed Cashin69cf2d852012-10-04 17:16:23 -0700196 d = q->queuedata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if ((d->flags & DEVFL_UP) == 0) {
Andrew Morton027b1802010-10-28 06:15:26 -0600198 pr_info_ratelimited("aoe: device %ld.%d is not up\n",
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400199 d->aoemajor, d->aoeminor);
Ed Cashin69cf2d852012-10-04 17:16:23 -0700200 while ((rq = blk_peek_request(q))) {
201 blk_start_request(rq);
202 aoe_end_request(d, rq, 1);
203 }
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200204 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500206 aoecmd_work(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800210aoeblk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800212 struct aoedev *d = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if ((d->flags & DEVFL_UP) == 0) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400215 printk(KERN_ERR "aoe: disk not up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return -ENODEV;
217 }
218
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800219 geo->cylinders = d->geo.cylinders;
220 geo->heads = d->geo.heads;
221 geo->sectors = d->geo.sectors;
222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Ed Cashin667be1e2012-12-17 16:03:42 -0800225static int
226aoeblk_ioctl(struct block_device *bdev, fmode_t mode, uint cmd, ulong arg)
227{
228 struct aoedev *d;
229
230 if (!arg)
231 return -EINVAL;
232
233 d = bdev->bd_disk->private_data;
234 if ((d->flags & DEVFL_UP) == 0) {
235 pr_err("aoe: disk not up\n");
236 return -ENODEV;
237 }
238
239 if (cmd == HDIO_GET_IDENTITY) {
240 if (!copy_to_user((void __user *) arg, &d->ident,
241 sizeof(d->ident)))
242 return 0;
243 return -EFAULT;
244 }
245
246 /* udev calls scsi_id, which uses SG_IO, resulting in noise */
247 if (cmd != SG_IO)
248 pr_info("aoe: unknown ioctl 0x%x\n", cmd);
249
250 return -ENOTTY;
251}
252
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700253static const struct block_device_operations aoe_bdops = {
Al Viro94562c12008-03-02 09:23:18 -0500254 .open = aoeblk_open,
255 .release = aoeblk_release,
Ed Cashin667be1e2012-12-17 16:03:42 -0800256 .ioctl = aoeblk_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800257 .getgeo = aoeblk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 .owner = THIS_MODULE,
259};
260
261/* alloc_disk and add_disk can sleep */
262void
263aoeblk_gdalloc(void *vp)
264{
265 struct aoedev *d = vp;
266 struct gendisk *gd;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700267 mempool_t *mp;
268 struct request_queue *q;
269 enum { KB = 1024, MB = KB * KB, READ_AHEAD = 2 * MB, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 ulong flags;
Ed Cashine52a2932012-12-17 16:04:09 -0800271 int late = 0;
272
273 spin_lock_irqsave(&d->lock, flags);
274 if (d->flags & DEVFL_GDALLOC
275 && !(d->flags & DEVFL_TKILL)
276 && !(d->flags & DEVFL_GD_NOW))
277 d->flags |= DEVFL_GD_NOW;
278 else
279 late = 1;
280 spin_unlock_irqrestore(&d->lock, flags);
281 if (late)
282 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 gd = alloc_disk(AOE_PARTITIONS);
285 if (gd == NULL) {
Ed Cashin69cf2d852012-10-04 17:16:23 -0700286 pr_err("aoe: cannot allocate disk structure for %ld.%d\n",
Ed L. Cashin6bb6285f2006-09-20 14:36:49 -0400287 d->aoemajor, d->aoeminor);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800288 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290
Ed Cashin69cf2d852012-10-04 17:16:23 -0700291 mp = mempool_create(MIN_BUFS, mempool_alloc_slab, mempool_free_slab,
292 buf_pool_cache);
293 if (mp == NULL) {
Ed L. Cashin1d759812008-02-08 04:20:08 -0800294 printk(KERN_ERR "aoe: cannot allocate bufpool for %ld.%d\n",
Ed L. Cashin6bb6285f2006-09-20 14:36:49 -0400295 d->aoemajor, d->aoeminor);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800296 goto err_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Ed Cashin69cf2d852012-10-04 17:16:23 -0700298 q = blk_init_queue(aoeblk_request, &d->lock);
299 if (q == NULL) {
300 pr_err("aoe: cannot allocate block queue for %ld.%d\n",
301 d->aoemajor, d->aoeminor);
Ed Cashin0a414092012-12-17 16:03:58 -0800302 goto err_mempool;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800305 spin_lock_irqsave(&d->lock, flags);
Ed Cashine52a2932012-12-17 16:04:09 -0800306 WARN_ON(!(d->flags & DEVFL_GD_NOW));
307 WARN_ON(!(d->flags & DEVFL_GDALLOC));
308 WARN_ON(d->flags & DEVFL_TKILL);
309 WARN_ON(d->gd);
310 WARN_ON(d->flags & DEVFL_UP);
Ed Cashin0a414092012-12-17 16:03:58 -0800311 blk_queue_max_hw_sectors(q, BLK_DEF_MAX_SECTORS);
312 q->backing_dev_info.name = "aoe";
Ed Cashin69cf2d852012-10-04 17:16:23 -0700313 q->backing_dev_info.ra_pages = READ_AHEAD / PAGE_CACHE_SIZE;
314 d->bufpool = mp;
315 d->blkq = gd->queue = q;
316 q->queuedata = d;
317 d->gd = gd;
Ed Cashinaa304fd2012-12-17 16:03:32 -0800318 if (aoe_maxsectors)
319 blk_queue_max_hw_sectors(q, aoe_maxsectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 gd->major = AOE_MAJOR;
Ed Cashin0c966212012-10-04 17:16:40 -0700321 gd->first_minor = d->sysminor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 gd->fops = &aoe_bdops;
323 gd->private_data = d;
Tejun Heo80795ae2008-08-25 19:56:07 +0900324 set_capacity(gd, d->ssize);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800325 snprintf(gd->disk_name, sizeof gd->disk_name, "etherd/e%ld.%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 d->aoemajor, d->aoeminor);
327
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500328 d->flags &= ~DEVFL_GDALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 d->flags |= DEVFL_UP;
330
331 spin_unlock_irqrestore(&d->lock, flags);
332
333 add_disk(gd);
334 aoedisk_add_sysfs(d);
Ed Cashine52a2932012-12-17 16:04:09 -0800335
336 spin_lock_irqsave(&d->lock, flags);
337 WARN_ON(!(d->flags & DEVFL_GD_NOW));
338 d->flags &= ~DEVFL_GD_NOW;
339 spin_unlock_irqrestore(&d->lock, flags);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800340 return;
341
342err_mempool:
Ed Cashin0a414092012-12-17 16:03:58 -0800343 mempool_destroy(mp);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800344err_disk:
345 put_disk(gd);
346err:
347 spin_lock_irqsave(&d->lock, flags);
Ed Cashine52a2932012-12-17 16:04:09 -0800348 d->flags &= ~DEVFL_GD_NOW;
349 schedule_work(&d->work);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800350 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353void
354aoeblk_exit(void)
355{
Ed Cashin190519c2013-09-11 14:25:39 -0700356 debugfs_remove_recursive(aoe_debugfs_dir);
357 aoe_debugfs_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 kmem_cache_destroy(buf_pool_cache);
359}
360
361int __init
362aoeblk_init(void)
363{
Paul Mundt20c2df82007-07-20 10:11:58 +0900364 buf_pool_cache = kmem_cache_create("aoe_bufs",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 sizeof(struct buf),
Paul Mundt20c2df82007-07-20 10:11:58 +0900366 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (buf_pool_cache == NULL)
368 return -ENOMEM;
Ed Cashin190519c2013-09-11 14:25:39 -0700369 aoe_debugfs_dir = debugfs_create_dir("aoe", NULL);
370 if (IS_ERR_OR_NULL(aoe_debugfs_dir)) {
371 pr_info("aoe: cannot create debugfs directory\n");
372 aoe_debugfs_dir = NULL;
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return 0;
375}
376