blob: 98f2965778b9ce18a4a58aaf91544d5b35a3d134 [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 * aoedev.c
4 * AoE device utility functions; maintains device list.
5 */
6
7#include <linux/hdreg.h>
8#include <linux/blkdev.h>
9#include <linux/netdevice.h>
Ed L. Cashin9bb237b2008-02-08 04:20:05 -080010#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Ed Cashin0c966212012-10-04 17:16:40 -070012#include <linux/bitmap.h>
13#include <linux/kdev_t.h>
Ed Cashin4bcce1a2012-10-04 17:16:42 -070014#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "aoe.h"
16
Ed L. Cashin262bf542008-02-08 04:20:03 -080017static void dummy_timer(ulong);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -080018static void freetgt(struct aoedev *d, struct aoetgt *t);
19static void skbpoolfree(struct aoedev *d);
Ed L. Cashin262bf542008-02-08 04:20:03 -080020
Ed Cashin08b60622012-10-04 17:16:47 -070021static int aoe_dyndevs = 1;
Ed Cashin4bcce1a2012-10-04 17:16:42 -070022module_param(aoe_dyndevs, int, 0644);
23MODULE_PARM_DESC(aoe_dyndevs, "Use dynamic minor numbers for devices.");
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static struct aoedev *devlist;
Andrew Morton476aed32008-02-08 04:20:10 -080026static DEFINE_SPINLOCK(devlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Ed Cashin0c966212012-10-04 17:16:40 -070028/* Because some systems will have one, many, or no
29 * - partitions,
30 * - slots per shelf,
31 * - or shelves,
32 * we need some flexibility in the way the minor numbers
33 * are allocated. So they are dynamic.
34 */
35#define N_DEVS ((1U<<MINORBITS)/AOE_PARTITIONS)
36
37static DEFINE_SPINLOCK(used_minors_lock);
38static DECLARE_BITMAP(used_minors, N_DEVS);
39
40static int
Ed Cashin4bcce1a2012-10-04 17:16:42 -070041minor_get_dyn(ulong *sysminor)
Ed Cashin0c966212012-10-04 17:16:40 -070042{
43 ulong flags;
44 ulong n;
45 int error = 0;
46
47 spin_lock_irqsave(&used_minors_lock, flags);
48 n = find_first_zero_bit(used_minors, N_DEVS);
49 if (n < N_DEVS)
50 set_bit(n, used_minors);
51 else
52 error = -1;
53 spin_unlock_irqrestore(&used_minors_lock, flags);
54
Ed Cashin4bcce1a2012-10-04 17:16:42 -070055 *sysminor = n * AOE_PARTITIONS;
Ed Cashin0c966212012-10-04 17:16:40 -070056 return error;
57}
58
Ed Cashin4bcce1a2012-10-04 17:16:42 -070059static int
60minor_get_static(ulong *sysminor, ulong aoemaj, int aoemin)
61{
62 ulong flags;
63 ulong n;
64 int error = 0;
65 enum {
66 /* for backwards compatibility when !aoe_dyndevs,
67 * a static number of supported slots per shelf */
68 NPERSHELF = 16,
69 };
70
Ed Cashine0b2bba2012-12-17 16:04:03 -080071 if (aoemin >= NPERSHELF) {
72 pr_err("aoe: %s %d slots per shelf\n",
73 "static minor device numbers support only",
74 NPERSHELF);
75 error = -1;
76 goto out;
77 }
78
Ed Cashin4bcce1a2012-10-04 17:16:42 -070079 n = aoemaj * NPERSHELF + aoemin;
Ed Cashine0b2bba2012-12-17 16:04:03 -080080 if (n >= N_DEVS) {
Ed Cashin4bcce1a2012-10-04 17:16:42 -070081 pr_err("aoe: %s with e%ld.%d\n",
82 "cannot use static minor device numbers",
83 aoemaj, aoemin);
84 error = -1;
Ed Cashine0b2bba2012-12-17 16:04:03 -080085 goto out;
Ed Cashin4bcce1a2012-10-04 17:16:42 -070086 }
87
Ed Cashine0b2bba2012-12-17 16:04:03 -080088 spin_lock_irqsave(&used_minors_lock, flags);
89 if (test_bit(n, used_minors)) {
90 pr_err("aoe: %s %lu\n",
91 "existing device already has static minor number",
92 n);
93 error = -1;
94 } else
95 set_bit(n, used_minors);
96 spin_unlock_irqrestore(&used_minors_lock, flags);
Ed Cashinb91316f2012-12-17 16:04:06 -080097 *sysminor = n * AOE_PARTITIONS;
Ed Cashine0b2bba2012-12-17 16:04:03 -080098out:
Ed Cashin4bcce1a2012-10-04 17:16:42 -070099 return error;
100}
101
102static int
103minor_get(ulong *sysminor, ulong aoemaj, int aoemin)
104{
105 if (aoe_dyndevs)
106 return minor_get_dyn(sysminor);
107 else
108 return minor_get_static(sysminor, aoemaj, aoemin);
109}
110
Ed Cashin0c966212012-10-04 17:16:40 -0700111static void
112minor_free(ulong minor)
113{
114 ulong flags;
115
116 minor /= AOE_PARTITIONS;
117 BUG_ON(minor >= N_DEVS);
118
119 spin_lock_irqsave(&used_minors_lock, flags);
120 BUG_ON(!test_bit(minor, used_minors));
121 clear_bit(minor, used_minors);
122 spin_unlock_irqrestore(&used_minors_lock, flags);
123}
124
Ed Cashin69cf2d852012-10-04 17:16:23 -0700125/*
Ed Cashin0c966212012-10-04 17:16:40 -0700126 * Users who grab a pointer to the device with aoedev_by_aoeaddr
127 * automatically get a reference count and must be responsible
128 * for performing a aoedev_put. With the addition of async
129 * kthread processing I'm no longer confident that we can
Ed Cashin69cf2d852012-10-04 17:16:23 -0700130 * guarantee consistency in the face of device flushes.
131 *
132 * For the time being, we only bother to add extra references for
133 * frames sitting on the iocq. When the kthreads finish processing
134 * these frames, they will aoedev_put the device.
135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Ed Cashin69cf2d852012-10-04 17:16:23 -0700137void
138aoedev_put(struct aoedev *d)
139{
140 ulong flags;
141
142 spin_lock_irqsave(&devlist_lock, flags);
143 d->ref--;
144 spin_unlock_irqrestore(&devlist_lock, flags);
145}
146
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500147static void
148dummy_timer(ulong vp)
149{
150 struct aoedev *d;
151
152 d = (struct aoedev *)vp;
153 if (d->flags & DEVFL_TKILL)
154 return;
155 d->timer.expires = jiffies + HZ;
156 add_timer(&d->timer);
157}
158
Ed Cashin69cf2d852012-10-04 17:16:23 -0700159static void
160aoe_failip(struct aoedev *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Ed Cashin69cf2d852012-10-04 17:16:23 -0700162 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct bio *bio;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700164 unsigned long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Ed Cashin69cf2d852012-10-04 17:16:23 -0700166 aoe_failbuf(d, d->ip.buf);
167
168 rq = d->ip.rq;
169 if (rq == NULL)
Ed Cashin896831f2012-10-04 17:16:21 -0700170 return;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700171 while ((bio = d->ip.nxbio)) {
172 clear_bit(BIO_UPTODATE, &bio->bi_flags);
173 d->ip.nxbio = bio->bi_next;
174 n = (unsigned long) rq->special;
175 rq->special = (void *) --n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
Ed Cashin69cf2d852012-10-04 17:16:23 -0700177 if ((unsigned long) rq->special == 0)
178 aoe_end_request(d, rq, 0);
Ed Cashin896831f2012-10-04 17:16:21 -0700179}
180
Ed Cashin3fc9b032012-12-17 16:03:51 -0800181static void
182downdev_frame(struct list_head *pos)
183{
184 struct frame *f;
185
186 f = list_entry(pos, struct frame, head);
187 list_del(pos);
188 if (f->buf) {
189 f->buf->nframesout--;
190 aoe_failbuf(f->t->d, f->buf);
191 }
192 aoe_freetframe(f);
193}
194
Ed Cashin896831f2012-10-04 17:16:21 -0700195void
196aoedev_downdev(struct aoedev *d)
197{
198 struct aoetgt *t, **tt, **te;
Ed Cashin896831f2012-10-04 17:16:21 -0700199 struct list_head *head, *pos, *nx;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700200 struct request *rq;
Ed Cashin896831f2012-10-04 17:16:21 -0700201 int i;
202
Ed Cashin69cf2d852012-10-04 17:16:23 -0700203 d->flags &= ~DEVFL_UP;
204
Ed Cashin3fc9b032012-12-17 16:03:51 -0800205 /* clean out active and to-be-retransmitted buffers */
Ed Cashin64a80f52012-10-04 17:16:33 -0700206 for (i = 0; i < NFACTIVE; i++) {
207 head = &d->factive[i];
Ed Cashin3fc9b032012-12-17 16:03:51 -0800208 list_for_each_safe(pos, nx, head)
209 downdev_frame(pos);
Ed Cashin64a80f52012-10-04 17:16:33 -0700210 }
Ed Cashin3fc9b032012-12-17 16:03:51 -0800211 head = &d->rexmitq;
212 list_for_each_safe(pos, nx, head)
213 downdev_frame(pos);
214
Ed Cashin64a80f52012-10-04 17:16:33 -0700215 /* reset window dressings */
Ed Cashin896831f2012-10-04 17:16:21 -0700216 tt = d->targets;
Ed Cashin71114ec2012-12-17 16:04:11 -0800217 te = tt + d->ntargets;
Ed Cashin896831f2012-10-04 17:16:21 -0700218 for (; tt < te && (t = *tt); tt++) {
Ed Cashin3a0c40d2012-12-17 16:03:43 -0800219 aoecmd_wreset(t);
Ed Cashin896831f2012-10-04 17:16:21 -0700220 t->nout = 0;
221 }
222
Ed Cashin69cf2d852012-10-04 17:16:23 -0700223 /* clean out the in-process request (if any) */
224 aoe_failip(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Ed Cashin69cf2d852012-10-04 17:16:23 -0700226 /* fast fail all pending I/O */
227 if (d->blkq) {
228 while ((rq = blk_peek_request(d->blkq))) {
229 blk_start_request(rq);
230 aoe_end_request(d, rq, 1);
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (d->gd)
Tejun Heo80795ae2008-08-25 19:56:07 +0900235 set_capacity(d->gd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Ed Cashin4ba9aa72012-12-17 16:03:30 -0800238/* return whether the user asked for this particular
239 * device to be flushed
240 */
241static int
242user_req(char *s, size_t slen, struct aoedev *d)
243{
244 char *p;
245 size_t lim;
246
247 if (!d->gd)
248 return 0;
249 p = strrchr(d->gd->disk_name, '/');
250 if (!p)
251 p = d->gd->disk_name;
252 else
253 p += 1;
254 lim = sizeof(d->gd->disk_name);
255 lim -= p - d->gd->disk_name;
256 if (slen < lim)
257 lim = slen;
258
259 return !strncmp(s, p, lim);
260}
261
Ed Cashine52a2932012-12-17 16:04:09 -0800262static void
263freedev(struct aoedev *d)
264{
265 struct aoetgt **t, **e;
266 int freeing = 0;
267 unsigned long flags;
268
269 spin_lock_irqsave(&d->lock, flags);
270 if (d->flags & DEVFL_TKILL
271 && !(d->flags & DEVFL_FREEING)) {
272 d->flags |= DEVFL_FREEING;
273 freeing = 1;
274 }
275 spin_unlock_irqrestore(&d->lock, flags);
276 if (!freeing)
277 return;
278
279 del_timer_sync(&d->timer);
280 if (d->gd) {
281 aoedisk_rm_sysfs(d);
282 del_gendisk(d->gd);
283 put_disk(d->gd);
284 blk_cleanup_queue(d->blkq);
285 }
286 t = d->targets;
Ed Cashin71114ec2012-12-17 16:04:11 -0800287 e = t + d->ntargets;
Ed Cashine52a2932012-12-17 16:04:09 -0800288 for (; t < e && *t; t++)
289 freetgt(d, *t);
290 if (d->bufpool)
291 mempool_destroy(d->bufpool);
292 skbpoolfree(d);
293 minor_free(d->sysminor);
294
295 spin_lock_irqsave(&d->lock, flags);
296 d->flags |= DEVFL_FREED;
297 spin_unlock_irqrestore(&d->lock, flags);
298}
299
300enum flush_parms {
301 NOT_EXITING = 0,
302 EXITING = 1,
303};
304
305static int
306flush(const char __user *str, size_t cnt, int exiting)
Ed L. Cashin262bf542008-02-08 04:20:03 -0800307{
308 ulong flags;
309 struct aoedev *d, **dd;
Ed L. Cashin262bf542008-02-08 04:20:03 -0800310 char buf[16];
311 int all = 0;
Ed Cashin4ba9aa72012-12-17 16:03:30 -0800312 int specified = 0; /* flush a specific device */
Ed Cashine52a2932012-12-17 16:04:09 -0800313 unsigned int skipflags;
Ed L. Cashin262bf542008-02-08 04:20:03 -0800314
Ed Cashine52a2932012-12-17 16:04:09 -0800315 skipflags = DEVFL_GDALLOC | DEVFL_NEWSIZE | DEVFL_TKILL;
316
317 if (!exiting && cnt >= 3) {
Ed L. Cashin262bf542008-02-08 04:20:03 -0800318 if (cnt > sizeof buf)
319 cnt = sizeof buf;
320 if (copy_from_user(buf, str, cnt))
321 return -EFAULT;
322 all = !strncmp(buf, "all", 3);
Ed Cashin4ba9aa72012-12-17 16:03:30 -0800323 if (!all)
324 specified = 1;
Ed L. Cashin262bf542008-02-08 04:20:03 -0800325 }
326
Ed Cashine52a2932012-12-17 16:04:09 -0800327 flush_scheduled_work();
328 /* pass one: without sleeping, do aoedev_downdev */
Ed L. Cashin262bf542008-02-08 04:20:03 -0800329 spin_lock_irqsave(&devlist_lock, flags);
Ed Cashine52a2932012-12-17 16:04:09 -0800330 for (d = devlist; d; d = d->next) {
Ed L. Cashin262bf542008-02-08 04:20:03 -0800331 spin_lock(&d->lock);
Ed Cashine52a2932012-12-17 16:04:09 -0800332 if (exiting) {
333 /* unconditionally take each device down */
334 } else if (specified) {
Ed Cashin4ba9aa72012-12-17 16:03:30 -0800335 if (!user_req(buf, cnt, d))
Ed Cashine52a2932012-12-17 16:04:09 -0800336 goto cont;
Ed Cashin4ba9aa72012-12-17 16:03:30 -0800337 } else if ((!all && (d->flags & DEVFL_UP))
Ed Cashine52a2932012-12-17 16:04:09 -0800338 || d->flags & skipflags
Ed Cashin69cf2d852012-10-04 17:16:23 -0700339 || d->nopen
Ed Cashin4ba9aa72012-12-17 16:03:30 -0800340 || d->ref)
Ed Cashine52a2932012-12-17 16:04:09 -0800341 goto cont;
Ed Cashin4ba9aa72012-12-17 16:03:30 -0800342
Ed L. Cashin262bf542008-02-08 04:20:03 -0800343 aoedev_downdev(d);
344 d->flags |= DEVFL_TKILL;
Ed Cashine52a2932012-12-17 16:04:09 -0800345cont:
Ed L. Cashin262bf542008-02-08 04:20:03 -0800346 spin_unlock(&d->lock);
Ed L. Cashin262bf542008-02-08 04:20:03 -0800347 }
348 spin_unlock_irqrestore(&devlist_lock, flags);
Ed Cashine52a2932012-12-17 16:04:09 -0800349
350 /* pass two: call freedev, which might sleep,
351 * for aoedevs marked with DEVFL_TKILL
352 */
353restart:
354 spin_lock_irqsave(&devlist_lock, flags);
355 for (d = devlist; d; d = d->next) {
356 spin_lock(&d->lock);
357 if (d->flags & DEVFL_TKILL
358 && !(d->flags & DEVFL_FREEING)) {
359 spin_unlock(&d->lock);
360 spin_unlock_irqrestore(&devlist_lock, flags);
361 freedev(d);
362 goto restart;
363 }
364 spin_unlock(&d->lock);
Ed L. Cashin262bf542008-02-08 04:20:03 -0800365 }
Ed Cashine52a2932012-12-17 16:04:09 -0800366
367 /* pass three: remove aoedevs marked with DEVFL_FREED */
368 for (dd = &devlist, d = *dd; d; d = *dd) {
369 struct aoedev *doomed = NULL;
370
371 spin_lock(&d->lock);
372 if (d->flags & DEVFL_FREED) {
373 *dd = d->next;
374 doomed = d;
375 } else {
376 dd = &d->next;
377 }
378 spin_unlock(&d->lock);
Ed Cashin71114ec2012-12-17 16:04:11 -0800379 if (doomed)
380 kfree(doomed->targets);
Ed Cashine52a2932012-12-17 16:04:09 -0800381 kfree(doomed);
382 }
383 spin_unlock_irqrestore(&devlist_lock, flags);
384
Ed L. Cashin262bf542008-02-08 04:20:03 -0800385 return 0;
386}
387
Ed Cashine52a2932012-12-17 16:04:09 -0800388int
389aoedev_flush(const char __user *str, size_t cnt)
390{
391 return flush(str, cnt, NOT_EXITING);
392}
393
Ed Cashin69cf2d852012-10-04 17:16:23 -0700394/* This has been confirmed to occur once with Tms=3*1000 due to the
395 * driver changing link and not processing its transmit ring. The
396 * problem is hard enough to solve by returning an error that I'm
397 * still punting on "solving" this.
398 */
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800399static void
400skbfree(struct sk_buff *skb)
401{
Ed Cashin69cf2d852012-10-04 17:16:23 -0700402 enum { Sms = 250, Tms = 30 * 1000};
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800403 int i = Tms / Sms;
404
405 if (skb == NULL)
406 return;
407 while (atomic_read(&skb_shinfo(skb)->dataref) != 1 && i-- > 0)
408 msleep(Sms);
Roel Kluin94873112009-03-04 00:07:57 -0800409 if (i < 0) {
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800410 printk(KERN_ERR
411 "aoe: %s holds ref: %s\n",
412 skb->dev ? skb->dev->name : "netif",
413 "cannot free skb -- memory leaked.");
414 return;
415 }
Ed Cashin3d5b0602012-10-04 17:16:20 -0700416 skb->truesize -= skb->data_len;
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800417 skb_shinfo(skb)->nr_frags = skb->data_len = 0;
418 skb_trim(skb, 0);
419 dev_kfree_skb(skb);
420}
421
422static void
423skbpoolfree(struct aoedev *d)
424{
David S. Millere9bb8fb2008-09-21 22:36:49 -0700425 struct sk_buff *skb, *tmp;
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800426
David S. Millere9bb8fb2008-09-21 22:36:49 -0700427 skb_queue_walk_safe(&d->skbpool, skb, tmp)
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800428 skbfree(skb);
David S. Millere9bb8fb2008-09-21 22:36:49 -0700429
430 __skb_queue_head_init(&d->skbpool);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800431}
432
Ed Cashin0c966212012-10-04 17:16:40 -0700433/* find it or allocate it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434struct aoedev *
Ed Cashin0c966212012-10-04 17:16:40 -0700435aoedev_by_aoeaddr(ulong maj, int min, int do_alloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct aoedev *d;
Ed Cashin64a80f52012-10-04 17:16:33 -0700438 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 ulong flags;
Ed Cashin10935d02012-12-17 16:04:04 -0800440 ulong sysminor = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 spin_lock_irqsave(&devlist_lock, flags);
443
444 for (d=devlist; d; d=d->next)
Ed Cashin0c966212012-10-04 17:16:40 -0700445 if (d->aoemajor == maj && d->aoeminor == min) {
Ed Cashine52a2932012-12-17 16:04:09 -0800446 spin_lock(&d->lock);
447 if (d->flags & DEVFL_TKILL) {
448 spin_unlock(&d->lock);
449 d = NULL;
450 goto out;
451 }
Ed Cashin69cf2d852012-10-04 17:16:23 -0700452 d->ref++;
Ed Cashine52a2932012-12-17 16:04:09 -0800453 spin_unlock(&d->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 break;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700455 }
Ed Cashin4bcce1a2012-10-04 17:16:42 -0700456 if (d || !do_alloc || minor_get(&sysminor, maj, min) < 0)
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800457 goto out;
458 d = kcalloc(1, sizeof *d, GFP_ATOMIC);
459 if (!d)
460 goto out;
Ed Cashin71114ec2012-12-17 16:04:11 -0800461 d->targets = kcalloc(NTARGETS, sizeof(*d->targets), GFP_ATOMIC);
462 if (!d->targets) {
463 kfree(d);
Dan Carpenter31279b12012-12-17 16:04:21 -0800464 d = NULL;
Ed Cashin71114ec2012-12-17 16:04:11 -0800465 goto out;
466 }
467 d->ntargets = NTARGETS;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800468 INIT_WORK(&d->work, aoecmd_sleepwork);
469 spin_lock_init(&d->lock);
David S. Millere9bb8fb2008-09-21 22:36:49 -0700470 skb_queue_head_init(&d->skbpool);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800471 init_timer(&d->timer);
472 d->timer.data = (ulong) d;
473 d->timer.function = dummy_timer;
474 d->timer.expires = jiffies + HZ;
475 add_timer(&d->timer);
476 d->bufpool = NULL; /* defer to aoeblk_gdalloc */
477 d->tgt = d->targets;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700478 d->ref = 1;
Ed Cashin64a80f52012-10-04 17:16:33 -0700479 for (i = 0; i < NFACTIVE; i++)
480 INIT_LIST_HEAD(&d->factive[i]);
Ed Cashin3a0c40d2012-12-17 16:03:43 -0800481 INIT_LIST_HEAD(&d->rexmitq);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800482 d->sysminor = sysminor;
Ed Cashin0c966212012-10-04 17:16:40 -0700483 d->aoemajor = maj;
484 d->aoeminor = min;
Ed Cashin3a0c40d2012-12-17 16:03:43 -0800485 d->rttavg = RTTAVG_INIT;
486 d->rttdev = RTTDEV_INIT;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800487 d->next = devlist;
488 devlist = d;
489 out:
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500490 spin_unlock_irqrestore(&devlist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return d;
492}
493
494static void
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800495freetgt(struct aoedev *d, struct aoetgt *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Ed Cashin896831f2012-10-04 17:16:21 -0700497 struct frame *f;
498 struct list_head *pos, *nx, *head;
Ed Cashin1b86fda2012-10-04 17:16:34 -0700499 struct aoeif *ifp;
500
501 for (ifp = t->ifs; ifp < &t->ifs[NAOEIFS]; ++ifp) {
502 if (!ifp->nd)
503 break;
504 dev_put(ifp->nd);
505 }
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400506
Ed Cashin896831f2012-10-04 17:16:21 -0700507 head = &t->ffree;
508 list_for_each_safe(pos, nx, head) {
509 list_del(pos);
510 f = list_entry(pos, struct frame, head);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800511 skbfree(f->skb);
Ed Cashin896831f2012-10-04 17:16:21 -0700512 kfree(f);
513 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800514 kfree(t);
515}
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517void
518aoedev_exit(void)
519{
Ed Cashine52a2932012-12-17 16:04:09 -0800520 flush_scheduled_work();
Ed Cashin69cf2d852012-10-04 17:16:23 -0700521 aoe_flush_iocq();
Ed Cashine52a2932012-12-17 16:04:09 -0800522 flush(NULL, 0, EXITING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525int __init
526aoedev_init(void)
527{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return 0;
529}