blob: 6125921bbec4d971534947fa53dc4cf5cc750838 [file] [log] [blame]
Ed L. Cashin26114642006-09-20 14:36:48 -04001/* Copyright (c) 2006 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>
10#include "aoe.h"
11
12static struct aoedev *devlist;
13static spinlock_t devlist_lock;
14
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050015int
16aoedev_isbusy(struct aoedev *d)
17{
18 struct frame *f, *e;
19
20 f = d->frames;
21 e = f + d->nframes;
22 do {
Ed L. Cashin463c2c12006-09-20 14:34:41 -040023 if (f->tag != FREETAG)
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050024 return 1;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050025 } while (++f < e);
26
27 return 0;
28}
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct aoedev *
ecashin@coraid.com32465c62005-04-18 22:00:18 -070031aoedev_by_aoeaddr(int maj, int min)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
33 struct aoedev *d;
34 ulong flags;
35
36 spin_lock_irqsave(&devlist_lock, flags);
37
38 for (d=devlist; d; d=d->next)
ecashin@coraid.com32465c62005-04-18 22:00:18 -070039 if (d->aoemajor == maj && d->aoeminor == min)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 break;
41
42 spin_unlock_irqrestore(&devlist_lock, flags);
43 return d;
44}
45
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050046static void
47dummy_timer(ulong vp)
48{
49 struct aoedev *d;
50
51 d = (struct aoedev *)vp;
52 if (d->flags & DEVFL_TKILL)
53 return;
54 d->timer.expires = jiffies + HZ;
55 add_timer(&d->timer);
56}
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* called with devlist lock held */
59static struct aoedev *
60aoedev_newdev(ulong nframes)
61{
62 struct aoedev *d;
63 struct frame *f, *e;
64
Pekka Enberg82ca76b2005-09-06 15:18:35 -070065 d = kzalloc(sizeof *d, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 f = kcalloc(nframes, sizeof *f, GFP_ATOMIC);
Ed L. Cashine407a7f2006-09-20 14:36:49 -040067 switch (!d || !f) {
68 case 0:
69 d->nframes = nframes;
70 d->frames = f;
71 e = f + nframes;
72 for (; f<e; f++) {
73 f->tag = FREETAG;
74 f->skb = new_skb(ETH_ZLEN);
75 if (!f->skb)
76 break;
77 }
78 if (f == e)
79 break;
80 while (f > d->frames) {
81 f--;
82 dev_kfree_skb(f->skb);
83 }
84 default:
85 if (f)
86 kfree(f);
87 if (d)
88 kfree(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 return NULL;
90 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050091 INIT_WORK(&d->work, aoecmd_sleepwork, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 spin_lock_init(&d->lock);
93 init_timer(&d->timer);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050094 d->timer.data = (ulong) d;
95 d->timer.function = dummy_timer;
96 d->timer.expires = jiffies + HZ;
97 add_timer(&d->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 d->bufpool = NULL; /* defer to aoeblk_gdalloc */
99 INIT_LIST_HEAD(&d->bufq);
100 d->next = devlist;
101 devlist = d;
102
103 return d;
104}
105
106void
107aoedev_downdev(struct aoedev *d)
108{
109 struct frame *f, *e;
110 struct buf *buf;
111 struct bio *bio;
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 f = d->frames;
114 e = f + d->nframes;
115 for (; f<e; f->tag = FREETAG, f->buf = NULL, f++) {
116 if (f->tag == FREETAG || f->buf == NULL)
117 continue;
118 buf = f->buf;
119 bio = buf->bio;
120 if (--buf->nframesout == 0) {
121 mempool_free(buf, d->bufpool);
122 bio_endio(bio, bio->bi_size, -EIO);
123 }
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400124 skb_shinfo(f->skb)->nr_frags = f->skb->data_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126 d->inprocess = NULL;
127
128 while (!list_empty(&d->bufq)) {
129 buf = container_of(d->bufq.next, struct buf, bufs);
130 list_del(d->bufq.next);
131 bio = buf->bio;
132 mempool_free(buf, d->bufpool);
133 bio_endio(bio, bio->bi_size, -EIO);
134 }
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (d->gd)
137 d->gd->capacity = 0;
138
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500139 d->flags &= ~(DEVFL_UP | DEVFL_PAUSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500142/* find it or malloc it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143struct aoedev *
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500144aoedev_by_sysminor_m(ulong sysminor, ulong bufcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct aoedev *d;
147 ulong flags;
148
149 spin_lock_irqsave(&devlist_lock, flags);
150
151 for (d=devlist; d; d=d->next)
Ed L Cashin93d489f2005-04-29 10:24:22 -0400152 if (d->sysminor == sysminor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 break;
154
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500155 if (d == NULL) {
156 d = aoedev_newdev(bufcnt);
157 if (d == NULL) {
158 spin_unlock_irqrestore(&devlist_lock, flags);
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400159 printk(KERN_INFO "aoe: aoedev_newdev failure.\n");
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500160 return NULL;
161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 d->sysminor = sysminor;
163 d->aoemajor = AOEMAJOR(sysminor);
164 d->aoeminor = AOEMINOR(sysminor);
165 }
166
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500167 spin_unlock_irqrestore(&devlist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return d;
169}
170
171static void
172aoedev_freedev(struct aoedev *d)
173{
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400174 struct frame *f, *e;
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (d->gd) {
177 aoedisk_rm_sysfs(d);
178 del_gendisk(d->gd);
179 put_disk(d->gd);
180 }
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400181 f = d->frames;
182 e = f + d->nframes;
183 for (; f<e; f++) {
184 skb_shinfo(f->skb)->nr_frags = 0;
185 dev_kfree_skb(f->skb);
186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 kfree(d->frames);
ecashin@coraid.com03347932005-04-18 22:00:19 -0700188 if (d->bufpool)
189 mempool_destroy(d->bufpool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 kfree(d);
191}
192
193void
194aoedev_exit(void)
195{
196 struct aoedev *d;
197 ulong flags;
198
199 flush_scheduled_work();
200
201 while ((d = devlist)) {
202 devlist = d->next;
203
204 spin_lock_irqsave(&d->lock, flags);
205 aoedev_downdev(d);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500206 d->flags |= DEVFL_TKILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 spin_unlock_irqrestore(&d->lock, flags);
208
209 del_timer_sync(&d->timer);
210 aoedev_freedev(d);
211 }
212}
213
214int __init
215aoedev_init(void)
216{
217 spin_lock_init(&devlist_lock);
218 return 0;
219}
220