blob: cc692fee7ce1ce7aec706d2a680609716d0545ce [file] [log] [blame]
Ed L. Cashin52e112b2008-02-08 04:20:09 -08001/* Copyright (c) 2007 Coraid, Inc. See COPYING for GPL terms. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * aoecmd.c
4 * Filesystem request handling methods
5 */
6
Bartlomiej Zolnierkiewicz04b3ab52009-04-01 21:42:24 +02007#include <linux/ata.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/hdreg.h>
10#include <linux/blkdev.h>
11#include <linux/skbuff.h>
12#include <linux/netdevice.h>
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050013#include <linux/genhd.h>
Ed L. Cashin68e0d422008-02-08 04:20:00 -080014#include <linux/moduleparam.h>
Ed Cashin896831f2012-10-04 17:16:21 -070015#include <linux/workqueue.h>
16#include <linux/kthread.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070017#include <net/net_namespace.h>
Ed L. Cashin475172f2005-09-29 12:47:40 -040018#include <asm/unaligned.h>
Ed Cashin896831f2012-10-04 17:16:21 -070019#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "aoe.h"
21
Ed Cashin896831f2012-10-04 17:16:21 -070022#define MAXIOC (8192) /* default meant to avoid most soft lockups */
23
24static void ktcomplete(struct frame *, struct sk_buff *);
25
Ed Cashin69cf2d852012-10-04 17:16:23 -070026static struct buf *nextbuf(struct aoedev *);
27
Ed L. Cashinb751e8b2006-09-20 14:36:50 -040028static int aoe_deadsecs = 60 * 3;
29module_param(aoe_deadsecs, int, 0644);
30MODULE_PARM_DESC(aoe_deadsecs, "After aoe_deadsecs seconds, give up and fail dev.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Ed L. Cashin7df620d2008-02-08 04:20:07 -080032static int aoe_maxout = 16;
33module_param(aoe_maxout, int, 0644);
34MODULE_PARM_DESC(aoe_maxout,
35 "Only aoe_maxout outstanding packets for every MAC on eX.Y.");
36
Ed Cashin896831f2012-10-04 17:16:21 -070037static wait_queue_head_t ktiowq;
38static struct ktstate kts;
39
40/* io completion queue */
41static struct {
42 struct list_head head;
43 spinlock_t lock;
44} iocq;
45
Ed L. Cashin68e0d422008-02-08 04:20:00 -080046static struct sk_buff *
Ed L. Cashine407a7f2006-09-20 14:36:49 -040047new_skb(ulong len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 struct sk_buff *skb;
50
51 skb = alloc_skb(len, GFP_ATOMIC);
52 if (skb) {
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -070053 skb_reset_mac_header(skb);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -070054 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 skb->protocol = __constant_htons(ETH_P_AOE);
Ed Cashin8babe8c2012-09-19 15:46:39 +000056 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 }
58 return skb;
59}
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static struct frame *
Ed Cashin64a80f52012-10-04 17:16:33 -070062getframe(struct aoedev *d, u32 tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Ed Cashin896831f2012-10-04 17:16:21 -070064 struct frame *f;
65 struct list_head *head, *pos, *nx;
66 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Ed Cashin896831f2012-10-04 17:16:21 -070068 n = tag % NFACTIVE;
Ed Cashin64a80f52012-10-04 17:16:33 -070069 head = &d->factive[n];
Ed Cashin896831f2012-10-04 17:16:21 -070070 list_for_each_safe(pos, nx, head) {
71 f = list_entry(pos, struct frame, head);
72 if (f->tag == tag) {
73 list_del(pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return f;
Ed Cashin896831f2012-10-04 17:16:21 -070075 }
76 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return NULL;
78}
79
80/*
81 * Leave the top bit clear so we have tagspace for userland.
82 * The bottom 16 bits are the xmit tick for rexmit/rttavg processing.
83 * This driver reserves tag -1 to mean "unused frame."
84 */
85static int
Ed Cashin64a80f52012-10-04 17:16:33 -070086newtag(struct aoedev *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 register ulong n;
89
90 n = jiffies & 0xffff;
Ed Cashin64a80f52012-10-04 17:16:33 -070091 return n |= (++d->lasttag & 0x7fff) << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Ed Cashin896831f2012-10-04 17:16:21 -070094static u32
Ed L. Cashin68e0d422008-02-08 04:20:00 -080095aoehdr_atainit(struct aoedev *d, struct aoetgt *t, struct aoe_hdr *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Ed Cashin64a80f52012-10-04 17:16:33 -070097 u32 host_tag = newtag(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Ed L. Cashin68e0d422008-02-08 04:20:00 -080099 memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src);
100 memcpy(h->dst, t->addr, sizeof h->dst);
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700101 h->type = __constant_cpu_to_be16(ETH_P_AOE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 h->verfl = AOE_HVER;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700103 h->major = cpu_to_be16(d->aoemajor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 h->minor = d->aoeminor;
105 h->cmd = AOECMD_ATA;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700106 h->tag = cpu_to_be32(host_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 return host_tag;
109}
110
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400111static inline void
112put_lba(struct aoe_atahdr *ah, sector_t lba)
113{
114 ah->lba0 = lba;
115 ah->lba1 = lba >>= 8;
116 ah->lba2 = lba >>= 8;
117 ah->lba3 = lba >>= 8;
118 ah->lba4 = lba >>= 8;
119 ah->lba5 = lba >>= 8;
120}
121
Ed Cashin3f0f0132012-10-04 17:16:27 -0700122static struct aoeif *
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800123ifrotate(struct aoetgt *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Ed Cashin3f0f0132012-10-04 17:16:27 -0700125 struct aoeif *ifp;
126
127 ifp = t->ifp;
128 ifp++;
129 if (ifp >= &t->ifs[NAOEIFS] || ifp->nd == NULL)
130 ifp = t->ifs;
131 if (ifp->nd == NULL)
132 return NULL;
133 return t->ifp = ifp;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800134}
135
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800136static void
137skb_pool_put(struct aoedev *d, struct sk_buff *skb)
138{
David S. Millere9bb8fb2008-09-21 22:36:49 -0700139 __skb_queue_tail(&d->skbpool, skb);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800140}
141
142static struct sk_buff *
143skb_pool_get(struct aoedev *d)
144{
David S. Millere9bb8fb2008-09-21 22:36:49 -0700145 struct sk_buff *skb = skb_peek(&d->skbpool);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800146
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800147 if (skb && atomic_read(&skb_shinfo(skb)->dataref) == 1) {
David S. Millere9bb8fb2008-09-21 22:36:49 -0700148 __skb_unlink(skb, &d->skbpool);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800149 return skb;
150 }
David S. Millere9bb8fb2008-09-21 22:36:49 -0700151 if (skb_queue_len(&d->skbpool) < NSKBPOOLMAX &&
152 (skb = new_skb(ETH_ZLEN)))
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800153 return skb;
David S. Millere9bb8fb2008-09-21 22:36:49 -0700154
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800155 return NULL;
156}
157
Ed Cashin896831f2012-10-04 17:16:21 -0700158void
159aoe_freetframe(struct frame *f)
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800160{
Ed Cashin896831f2012-10-04 17:16:21 -0700161 struct aoetgt *t;
162
163 t = f->t;
164 f->buf = NULL;
165 f->bv = NULL;
166 f->r_skb = NULL;
167 list_add(&f->head, &t->ffree);
168}
169
170static struct frame *
171newtframe(struct aoedev *d, struct aoetgt *t)
172{
173 struct frame *f;
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800174 struct sk_buff *skb;
Ed Cashin896831f2012-10-04 17:16:21 -0700175 struct list_head *pos;
176
177 if (list_empty(&t->ffree)) {
178 if (t->falloc >= NSKBPOOLMAX*2)
179 return NULL;
180 f = kcalloc(1, sizeof(*f), GFP_ATOMIC);
181 if (f == NULL)
182 return NULL;
183 t->falloc++;
184 f->t = t;
185 } else {
186 pos = t->ffree.next;
187 list_del(pos);
188 f = list_entry(pos, struct frame, head);
189 }
190
191 skb = f->skb;
192 if (skb == NULL) {
193 f->skb = skb = new_skb(ETH_ZLEN);
194 if (!skb) {
195bail: aoe_freetframe(f);
196 return NULL;
197 }
198 }
199
200 if (atomic_read(&skb_shinfo(skb)->dataref) != 1) {
201 skb = skb_pool_get(d);
202 if (skb == NULL)
203 goto bail;
204 skb_pool_put(d, f->skb);
205 f->skb = skb;
206 }
207
208 skb->truesize -= skb->data_len;
209 skb_shinfo(skb)->nr_frags = skb->data_len = 0;
210 skb_trim(skb, 0);
211 return f;
212}
213
214static struct frame *
215newframe(struct aoedev *d)
216{
217 struct frame *f;
218 struct aoetgt *t, **tt;
219 int totout = 0;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800220
221 if (d->targets[0] == NULL) { /* shouldn't happen, but I'm paranoid */
222 printk(KERN_ERR "aoe: NULL TARGETS!\n");
223 return NULL;
224 }
Ed Cashin896831f2012-10-04 17:16:21 -0700225 tt = d->tgt; /* last used target */
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800226 for (;;) {
Ed Cashin896831f2012-10-04 17:16:21 -0700227 tt++;
228 if (tt >= &d->targets[NTARGETS] || !*tt)
229 tt = d->targets;
230 t = *tt;
231 totout += t->nout;
232 if (t->nout < t->maxout
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800233 && t != d->htgt
Ed Cashin896831f2012-10-04 17:16:21 -0700234 && t->ifp->nd) {
235 f = newtframe(d, t);
236 if (f) {
Ed Cashin896831f2012-10-04 17:16:21 -0700237 ifrotate(t);
Ed Cashin3f0f0132012-10-04 17:16:27 -0700238 d->tgt = tt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800239 return f;
240 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800241 }
Ed Cashin896831f2012-10-04 17:16:21 -0700242 if (tt == d->tgt) /* we've looped and found nada */
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800243 break;
Ed Cashin896831f2012-10-04 17:16:21 -0700244 }
245 if (totout == 0) {
246 d->kicked++;
247 d->flags |= DEVFL_KICKME;
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800248 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800249 return NULL;
250}
251
Ed Cashin3d5b0602012-10-04 17:16:20 -0700252static void
253skb_fillup(struct sk_buff *skb, struct bio_vec *bv, ulong off, ulong cnt)
254{
255 int frag = 0;
256 ulong fcnt;
257loop:
258 fcnt = bv->bv_len - (off - bv->bv_offset);
259 if (fcnt > cnt)
260 fcnt = cnt;
261 skb_fill_page_desc(skb, frag++, bv->bv_page, off, fcnt);
262 cnt -= fcnt;
263 if (cnt <= 0)
264 return;
265 bv++;
266 off = bv->bv_offset;
267 goto loop;
268}
269
Ed Cashin896831f2012-10-04 17:16:21 -0700270static void
271fhash(struct frame *f)
272{
Ed Cashin64a80f52012-10-04 17:16:33 -0700273 struct aoedev *d = f->t->d;
Ed Cashin896831f2012-10-04 17:16:21 -0700274 u32 n;
275
276 n = f->tag % NFACTIVE;
Ed Cashin64a80f52012-10-04 17:16:33 -0700277 list_add_tail(&f->head, &d->factive[n]);
Ed Cashin896831f2012-10-04 17:16:21 -0700278}
279
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800280static int
281aoecmd_ata_rw(struct aoedev *d)
282{
283 struct frame *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct aoe_hdr *h;
285 struct aoe_atahdr *ah;
286 struct buf *buf;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800287 struct bio_vec *bv;
288 struct aoetgt *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 struct sk_buff *skb;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700290 struct sk_buff_head queue;
Ed Cashin3d5b0602012-10-04 17:16:20 -0700291 ulong bcnt, fbcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 char writebit, extbit;
293
294 writebit = 0x10;
295 extbit = 0x4;
296
Ed Cashin69cf2d852012-10-04 17:16:23 -0700297 buf = nextbuf(d);
298 if (buf == NULL)
299 return 0;
Ed Cashin896831f2012-10-04 17:16:21 -0700300 f = newframe(d);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800301 if (f == NULL)
302 return 0;
303 t = *d->tgt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800304 bv = buf->bv;
Ed Cashin3f0f0132012-10-04 17:16:27 -0700305 bcnt = d->maxbcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800306 if (bcnt == 0)
307 bcnt = DEFAULTBCNT;
Ed Cashin3d5b0602012-10-04 17:16:20 -0700308 if (bcnt > buf->resid)
309 bcnt = buf->resid;
310 fbcnt = bcnt;
311 f->bv = buf->bv;
312 f->bv_off = f->bv->bv_offset + (f->bv->bv_len - buf->bv_resid);
313 do {
314 if (fbcnt < buf->bv_resid) {
315 buf->bv_resid -= fbcnt;
316 buf->resid -= fbcnt;
317 break;
318 }
319 fbcnt -= buf->bv_resid;
320 buf->resid -= buf->bv_resid;
321 if (buf->resid == 0) {
Ed Cashin69cf2d852012-10-04 17:16:23 -0700322 d->ip.buf = NULL;
Ed Cashin3d5b0602012-10-04 17:16:20 -0700323 break;
324 }
325 buf->bv++;
326 buf->bv_resid = buf->bv->bv_len;
327 WARN_ON(buf->bv_resid == 0);
328 } while (fbcnt);
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* initialize the headers & frame */
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400331 skb = f->skb;
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700332 h = (struct aoe_hdr *) skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 ah = (struct aoe_atahdr *) (h+1);
Ed L. Cashin19900cd2006-12-22 01:09:21 -0800334 skb_put(skb, sizeof *h + sizeof *ah);
335 memset(h, 0, skb->len);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800336 f->tag = aoehdr_atainit(d, t, h);
Ed Cashin896831f2012-10-04 17:16:21 -0700337 fhash(f);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800338 t->nout++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 f->waited = 0;
340 f->buf = buf;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400341 f->bcnt = bcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800342 f->lba = buf->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 /* set up ata header */
345 ah->scnt = bcnt >> 9;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800346 put_lba(ah, buf->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (d->flags & DEVFL_EXT) {
348 ah->aflags |= AOEAFL_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 } else {
350 extbit = 0;
351 ah->lba3 &= 0x0f;
352 ah->lba3 |= 0xe0; /* LBA bit + obsolete 0xa0 */
353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (bio_data_dir(buf->bio) == WRITE) {
Ed Cashin3d5b0602012-10-04 17:16:20 -0700355 skb_fillup(skb, f->bv, f->bv_off, bcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 ah->aflags |= AOEAFL_WRITE;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400357 skb->len += bcnt;
358 skb->data_len = bcnt;
Ed Cashin3d5b0602012-10-04 17:16:20 -0700359 skb->truesize += bcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800360 t->wpkts++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 } else {
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800362 t->rpkts++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 writebit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365
Bartlomiej Zolnierkiewicz04b3ab52009-04-01 21:42:24 +0200366 ah->cmdstat = ATA_CMD_PIO_READ | writebit | extbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* mark all tracking fields and load out */
369 buf->nframesout += 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 buf->sector += bcnt >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800372 skb->dev = t->ifp->nd;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400373 skb = skb_clone(skb, GFP_ATOMIC);
Ed Cashin69cf2d852012-10-04 17:16:23 -0700374 if (skb) {
375 __skb_queue_head_init(&queue);
376 __skb_queue_tail(&queue, skb);
377 aoenet_xmit(&queue);
378 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800379 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500382/* some callers cannot sleep, and they can call this function,
383 * transmitting the packets later, when interrupts are on
384 */
David S. Millere9bb8fb2008-09-21 22:36:49 -0700385static void
386aoecmd_cfg_pkts(ushort aoemajor, unsigned char aoeminor, struct sk_buff_head *queue)
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500387{
388 struct aoe_hdr *h;
389 struct aoe_cfghdr *ch;
David S. Millere9bb8fb2008-09-21 22:36:49 -0700390 struct sk_buff *skb;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500391 struct net_device *ifp;
392
Eric Dumazet840a1852010-10-29 01:15:29 +0000393 rcu_read_lock();
394 for_each_netdev_rcu(&init_net, ifp) {
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500395 dev_hold(ifp);
396 if (!is_aoe_netif(ifp))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700397 goto cont;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500398
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400399 skb = new_skb(sizeof *h + sizeof *ch);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500400 if (skb == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400401 printk(KERN_INFO "aoe: skb alloc failure\n");
Pavel Emelianov7562f872007-05-03 15:13:45 -0700402 goto cont;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500403 }
Ed L. Cashin19900cd2006-12-22 01:09:21 -0800404 skb_put(skb, sizeof *h + sizeof *ch);
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400405 skb->dev = ifp;
David S. Millere9bb8fb2008-09-21 22:36:49 -0700406 __skb_queue_tail(queue, skb);
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700407 h = (struct aoe_hdr *) skb_mac_header(skb);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500408 memset(h, 0, sizeof *h + sizeof *ch);
409
410 memset(h->dst, 0xff, sizeof h->dst);
411 memcpy(h->src, ifp->dev_addr, sizeof h->src);
412 h->type = __constant_cpu_to_be16(ETH_P_AOE);
413 h->verfl = AOE_HVER;
414 h->major = cpu_to_be16(aoemajor);
415 h->minor = aoeminor;
416 h->cmd = AOECMD_CFG;
417
Pavel Emelianov7562f872007-05-03 15:13:45 -0700418cont:
419 dev_put(ifp);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500420 }
Eric Dumazet840a1852010-10-29 01:15:29 +0000421 rcu_read_unlock();
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424static void
Ed Cashin896831f2012-10-04 17:16:21 -0700425resend(struct aoedev *d, struct frame *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 struct sk_buff *skb;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700428 struct sk_buff_head queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 struct aoe_hdr *h;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400430 struct aoe_atahdr *ah;
Ed Cashin896831f2012-10-04 17:16:21 -0700431 struct aoetgt *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 char buf[128];
433 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Ed Cashin896831f2012-10-04 17:16:21 -0700435 t = f->t;
Ed Cashin64a80f52012-10-04 17:16:33 -0700436 n = newtag(d);
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400437 skb = f->skb;
Ed Cashin3f0f0132012-10-04 17:16:27 -0700438 if (ifrotate(t) == NULL) {
439 /* probably can't happen, but set it up to fail anyway */
440 pr_info("aoe: resend: no interfaces to rotate to.\n");
441 ktcomplete(f, NULL);
442 return;
443 }
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700444 h = (struct aoe_hdr *) skb_mac_header(skb);
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400445 ah = (struct aoe_atahdr *) (h+1);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800446
447 snprintf(buf, sizeof buf,
Harvey Harrison411c41e2008-11-25 00:40:37 -0800448 "%15s e%ld.%d oldtag=%08x@%08lx newtag=%08x s=%pm d=%pm nout=%d\n",
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800449 "retransmit", d->aoemajor, d->aoeminor, f->tag, jiffies, n,
Harvey Harrison411c41e2008-11-25 00:40:37 -0800450 h->src, h->dst, t->nout);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800451 aoechr_error(buf);
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 f->tag = n;
Ed Cashin896831f2012-10-04 17:16:21 -0700454 fhash(f);
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700455 h->tag = cpu_to_be32(n);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800456 memcpy(h->dst, t->addr, sizeof h->dst);
457 memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800459 skb->dev = t->ifp->nd;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400460 skb = skb_clone(skb, GFP_ATOMIC);
461 if (skb == NULL)
462 return;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700463 __skb_queue_head_init(&queue);
464 __skb_queue_tail(&queue, skb);
465 aoenet_xmit(&queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
468static int
Ed Cashin896831f2012-10-04 17:16:21 -0700469tsince(u32 tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 int n;
472
473 n = jiffies & 0xffff;
474 n -= tag & 0xffff;
475 if (n < 0)
476 n += 1<<16;
477 return n;
478}
479
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800480static struct aoeif *
481getif(struct aoetgt *t, struct net_device *nd)
482{
483 struct aoeif *p, *e;
484
485 p = t->ifs;
486 e = p + NAOEIFS;
487 for (; p < e; p++)
488 if (p->nd == nd)
489 return p;
490 return NULL;
491}
492
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800493static void
494ejectif(struct aoetgt *t, struct aoeif *ifp)
495{
496 struct aoeif *e;
497 ulong n;
498
499 e = t->ifs + NAOEIFS - 1;
500 n = (e - ifp) * sizeof *ifp;
501 memmove(ifp, ifp+1, n);
502 e->nd = NULL;
503}
504
505static int
506sthtith(struct aoedev *d)
507{
Ed Cashin896831f2012-10-04 17:16:21 -0700508 struct frame *f, *nf;
509 struct list_head *nx, *pos, *head;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800510 struct sk_buff *skb;
Ed Cashin896831f2012-10-04 17:16:21 -0700511 struct aoetgt *ht = d->htgt;
512 int i;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800513
Ed Cashin896831f2012-10-04 17:16:21 -0700514 for (i = 0; i < NFACTIVE; i++) {
Ed Cashin64a80f52012-10-04 17:16:33 -0700515 head = &d->factive[i];
Ed Cashin896831f2012-10-04 17:16:21 -0700516 list_for_each_safe(pos, nx, head) {
517 f = list_entry(pos, struct frame, head);
Ed Cashin64a80f52012-10-04 17:16:33 -0700518 if (f->t != ht)
519 continue;
520
Ed Cashin896831f2012-10-04 17:16:21 -0700521 nf = newframe(d);
522 if (!nf)
523 return 0;
524
525 /* remove frame from active list */
526 list_del(pos);
527
528 /* reassign all pertinent bits to new outbound frame */
529 skb = nf->skb;
530 nf->skb = f->skb;
531 nf->buf = f->buf;
532 nf->bcnt = f->bcnt;
533 nf->lba = f->lba;
534 nf->bv = f->bv;
535 nf->bv_off = f->bv_off;
536 nf->waited = 0;
537 f->skb = skb;
538 aoe_freetframe(f);
539 ht->nout--;
540 nf->t->nout++;
541 resend(d, nf);
542 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800543 }
Ed Cashin3f0f0132012-10-04 17:16:27 -0700544 /* We've cleaned up the outstanding so take away his
545 * interfaces so he won't be used. We should remove him from
546 * the target array here, but cleaning up a target is
547 * involved. PUNT!
548 */
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800549 memset(ht->ifs, 0, sizeof ht->ifs);
550 d->htgt = NULL;
551 return 1;
552}
553
554static inline unsigned char
555ata_scnt(unsigned char *packet) {
556 struct aoe_hdr *h;
557 struct aoe_atahdr *ah;
558
559 h = (struct aoe_hdr *) packet;
560 ah = (struct aoe_atahdr *) (h+1);
561 return ah->scnt;
562}
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564static void
565rexmit_timer(ulong vp)
566{
567 struct aoedev *d;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800568 struct aoetgt *t, **tt, **te;
569 struct aoeif *ifp;
Ed Cashin896831f2012-10-04 17:16:21 -0700570 struct frame *f;
571 struct list_head *head, *pos, *nx;
572 LIST_HEAD(flist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 register long timeout;
574 ulong flags, n;
Ed Cashin896831f2012-10-04 17:16:21 -0700575 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 d = (struct aoedev *) vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 /* timeout is always ~150% of the moving average */
580 timeout = d->rttavg;
581 timeout += timeout >> 1;
582
583 spin_lock_irqsave(&d->lock, flags);
584
585 if (d->flags & DEVFL_TKILL) {
Ed L. Cashin1c6f3fc2006-01-25 13:54:44 -0500586 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return;
588 }
Ed Cashin896831f2012-10-04 17:16:21 -0700589
590 /* collect all frames to rexmit into flist */
Ed Cashin64a80f52012-10-04 17:16:33 -0700591 for (i = 0; i < NFACTIVE; i++) {
592 head = &d->factive[i];
593 list_for_each_safe(pos, nx, head) {
594 f = list_entry(pos, struct frame, head);
595 if (tsince(f->tag) < timeout)
596 break; /* end of expired frames */
597 /* move to flist for later processing */
598 list_move_tail(pos, &flist);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800599 }
Ed Cashin64a80f52012-10-04 17:16:33 -0700600 }
601 /* window check */
602 tt = d->targets;
603 te = tt + d->ntargets;
604 for (; tt < te && (t = *tt); tt++) {
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800605 if (t->nout == t->maxout
606 && t->maxout < t->nframes
607 && (jiffies - t->lastwadj)/HZ > 10) {
608 t->maxout++;
609 t->lastwadj = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800612
Ed Cashin69cf2d852012-10-04 17:16:23 -0700613 if (!list_empty(&flist)) { /* retransmissions necessary */
614 n = d->rttavg <<= 1;
615 if (n > MAXTIMER)
616 d->rttavg = MAXTIMER;
617 }
618
Ed Cashin896831f2012-10-04 17:16:21 -0700619 /* process expired frames */
620 while (!list_empty(&flist)) {
621 pos = flist.next;
622 f = list_entry(pos, struct frame, head);
623 n = f->waited += timeout;
624 n /= HZ;
625 if (n > aoe_deadsecs) {
626 /* Waited too long. Device failure.
627 * Hang all frames on first hash bucket for downdev
628 * to clean up.
629 */
Ed Cashin64a80f52012-10-04 17:16:33 -0700630 list_splice(&flist, &d->factive[0]);
Ed Cashin896831f2012-10-04 17:16:21 -0700631 aoedev_downdev(d);
632 break;
633 }
634 list_del(pos);
635
636 t = f->t;
Ed Cashind54d35a2012-10-04 17:16:29 -0700637 if (n > aoe_deadsecs/2)
638 d->htgt = t; /* see if another target can help */
639
Ed Cashin896831f2012-10-04 17:16:21 -0700640 if (t->nout == t->maxout) {
641 if (t->maxout > 1)
642 t->maxout--;
643 t->lastwadj = jiffies;
644 }
645
646 ifp = getif(t, f->skb->dev);
647 if (ifp && ++ifp->lost > (t->nframes << 1)
648 && (ifp != t->ifs || t->ifs[1].nd)) {
649 ejectif(t, ifp);
650 ifp = NULL;
651 }
652 resend(d, f);
653 }
654
Ed Cashin69cf2d852012-10-04 17:16:23 -0700655 if ((d->flags & DEVFL_KICKME || d->htgt) && d->blkq) {
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400656 d->flags &= ~DEVFL_KICKME;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700657 d->blkq->request_fn(d->blkq);
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 d->timer.expires = jiffies + TIMERTICK;
661 add_timer(&d->timer);
662
663 spin_unlock_irqrestore(&d->lock, flags);
Ed Cashin69cf2d852012-10-04 17:16:23 -0700664}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Ed Cashin69cf2d852012-10-04 17:16:23 -0700666static unsigned long
667rqbiocnt(struct request *r)
668{
669 struct bio *bio;
670 unsigned long n = 0;
671
672 __rq_for_each_bio(bio, r)
673 n++;
674 return n;
675}
676
677/* This can be removed if we are certain that no users of the block
678 * layer will ever use zero-count pages in bios. Otherwise we have to
679 * protect against the put_page sometimes done by the network layer.
680 *
681 * See http://oss.sgi.com/archives/xfs/2007-01/msg00594.html for
682 * discussion.
683 *
684 * We cannot use get_page in the workaround, because it insists on a
685 * positive page count as a precondition. So we use _count directly.
686 */
687static void
688bio_pageinc(struct bio *bio)
689{
690 struct bio_vec *bv;
691 struct page *page;
692 int i;
693
694 bio_for_each_segment(bv, bio, i) {
695 page = bv->bv_page;
696 /* Non-zero page count for non-head members of
697 * compound pages is no longer allowed by the kernel,
698 * but this has never been seen here.
699 */
700 if (unlikely(PageCompound(page)))
701 if (compound_trans_head(page) != page) {
702 pr_crit("page tail used for block I/O\n");
703 BUG();
704 }
705 atomic_inc(&page->_count);
706 }
707}
708
709static void
710bio_pagedec(struct bio *bio)
711{
712 struct bio_vec *bv;
713 int i;
714
715 bio_for_each_segment(bv, bio, i)
716 atomic_dec(&bv->bv_page->_count);
717}
718
719static void
720bufinit(struct buf *buf, struct request *rq, struct bio *bio)
721{
722 struct bio_vec *bv;
723
724 memset(buf, 0, sizeof(*buf));
725 buf->rq = rq;
726 buf->bio = bio;
727 buf->resid = bio->bi_size;
728 buf->sector = bio->bi_sector;
729 bio_pageinc(bio);
730 buf->bv = bv = &bio->bi_io_vec[bio->bi_idx];
731 buf->bv_resid = bv->bv_len;
732 WARN_ON(buf->bv_resid == 0);
733}
734
735static struct buf *
736nextbuf(struct aoedev *d)
737{
738 struct request *rq;
739 struct request_queue *q;
740 struct buf *buf;
741 struct bio *bio;
742
743 q = d->blkq;
744 if (q == NULL)
745 return NULL; /* initializing */
746 if (d->ip.buf)
747 return d->ip.buf;
748 rq = d->ip.rq;
749 if (rq == NULL) {
750 rq = blk_peek_request(q);
751 if (rq == NULL)
752 return NULL;
753 blk_start_request(rq);
754 d->ip.rq = rq;
755 d->ip.nxbio = rq->bio;
756 rq->special = (void *) rqbiocnt(rq);
757 }
758 buf = mempool_alloc(d->bufpool, GFP_ATOMIC);
759 if (buf == NULL) {
760 pr_err("aoe: nextbuf: unable to mempool_alloc!\n");
761 return NULL;
762 }
763 bio = d->ip.nxbio;
764 bufinit(buf, rq, bio);
765 bio = bio->bi_next;
766 d->ip.nxbio = bio;
767 if (bio == NULL)
768 d->ip.rq = NULL;
769 return d->ip.buf = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800772/* enters with d->lock held */
773void
774aoecmd_work(struct aoedev *d)
775{
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800776 if (d->htgt && !sthtith(d))
777 return;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700778 while (aoecmd_ata_rw(d))
779 ;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800780}
781
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500782/* this function performs work that has been deferred until sleeping is OK
783 */
784void
David Howellsc4028952006-11-22 14:57:56 +0000785aoecmd_sleepwork(struct work_struct *work)
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500786{
David Howellsc4028952006-11-22 14:57:56 +0000787 struct aoedev *d = container_of(work, struct aoedev, work);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500788
789 if (d->flags & DEVFL_GDALLOC)
790 aoeblk_gdalloc(d);
791
792 if (d->flags & DEVFL_NEWSIZE) {
793 struct block_device *bd;
794 unsigned long flags;
795 u64 ssize;
796
Tejun Heo80795ae2008-08-25 19:56:07 +0900797 ssize = get_capacity(d->gd);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500798 bd = bdget_disk(d->gd, 0);
799
800 if (bd) {
801 mutex_lock(&bd->bd_inode->i_mutex);
802 i_size_write(bd->bd_inode, (loff_t)ssize<<9);
803 mutex_unlock(&bd->bd_inode->i_mutex);
804 bdput(bd);
805 }
806 spin_lock_irqsave(&d->lock, flags);
807 d->flags |= DEVFL_UP;
808 d->flags &= ~DEVFL_NEWSIZE;
809 spin_unlock_irqrestore(&d->lock, flags);
810 }
811}
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813static void
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800814ataid_complete(struct aoedev *d, struct aoetgt *t, unsigned char *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 u64 ssize;
817 u16 n;
818
819 /* word 83: command set supported */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700820 n = get_unaligned_le16(&id[83 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /* word 86: command set/feature enabled */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700823 n |= get_unaligned_le16(&id[86 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (n & (1<<10)) { /* bit 10: LBA 48 */
826 d->flags |= DEVFL_EXT;
827
828 /* word 100: number lba48 sectors */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700829 ssize = get_unaligned_le64(&id[100 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 /* set as in ide-disk.c:init_idedisk_capacity */
832 d->geo.cylinders = ssize;
833 d->geo.cylinders /= (255 * 63);
834 d->geo.heads = 255;
835 d->geo.sectors = 63;
836 } else {
837 d->flags &= ~DEVFL_EXT;
838
839 /* number lba28 sectors */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700840 ssize = get_unaligned_le32(&id[60 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 /* NOTE: obsolete in ATA 6 */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700843 d->geo.cylinders = get_unaligned_le16(&id[54 << 1]);
844 d->geo.heads = get_unaligned_le16(&id[55 << 1]);
845 d->geo.sectors = get_unaligned_le16(&id[56 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500847
848 if (d->ssize != ssize)
Ed L. Cashin1d759812008-02-08 04:20:08 -0800849 printk(KERN_INFO
Harvey Harrison411c41e2008-11-25 00:40:37 -0800850 "aoe: %pm e%ld.%d v%04x has %llu sectors\n",
851 t->addr,
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500852 d->aoemajor, d->aoeminor,
853 d->fw_ver, (long long)ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 d->ssize = ssize;
855 d->geo.start = 0;
Ed L. Cashin6b9699b2008-02-08 04:20:06 -0800856 if (d->flags & (DEVFL_GDALLOC|DEVFL_NEWSIZE))
857 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (d->gd != NULL) {
Tejun Heo80795ae2008-08-25 19:56:07 +0900859 set_capacity(d->gd, ssize);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500860 d->flags |= DEVFL_NEWSIZE;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800861 } else
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500862 d->flags |= DEVFL_GDALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 schedule_work(&d->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
866static void
867calc_rttavg(struct aoedev *d, int rtt)
868{
869 register long n;
870
871 n = rtt;
Ed L. Cashindced3a02006-09-20 14:36:49 -0400872 if (n < 0) {
873 n = -rtt;
874 if (n < MINTIMER)
875 n = MINTIMER;
876 else if (n > MAXTIMER)
877 n = MAXTIMER;
878 d->mintimer += (n - d->mintimer) >> 1;
879 } else if (n < d->mintimer)
880 n = d->mintimer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 else if (n > MAXTIMER)
882 n = MAXTIMER;
883
884 /* g == .25; cf. Congestion Avoidance and Control, Jacobson & Karels; 1988 */
885 n -= d->rttavg;
886 d->rttavg += n >> 2;
887}
888
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800889static struct aoetgt *
890gettgt(struct aoedev *d, char *addr)
891{
892 struct aoetgt **t, **e;
893
894 t = d->targets;
895 e = t + NTARGETS;
896 for (; t < e && *t; t++)
897 if (memcmp((*t)->addr, addr, sizeof((*t)->addr)) == 0)
898 return *t;
899 return NULL;
900}
901
Ed Cashin3d5b0602012-10-04 17:16:20 -0700902static void
Ed Cashin896831f2012-10-04 17:16:21 -0700903bvcpy(struct bio_vec *bv, ulong off, struct sk_buff *skb, long cnt)
Ed Cashin3d5b0602012-10-04 17:16:20 -0700904{
905 ulong fcnt;
906 char *p;
907 int soff = 0;
908loop:
909 fcnt = bv->bv_len - (off - bv->bv_offset);
910 if (fcnt > cnt)
911 fcnt = cnt;
912 p = page_address(bv->bv_page) + off;
913 skb_copy_bits(skb, soff, p, fcnt);
914 soff += fcnt;
915 cnt -= fcnt;
916 if (cnt <= 0)
917 return;
918 bv++;
919 off = bv->bv_offset;
920 goto loop;
921}
922
Ed Cashin69cf2d852012-10-04 17:16:23 -0700923void
924aoe_end_request(struct aoedev *d, struct request *rq, int fastfail)
925{
926 struct bio *bio;
927 int bok;
928 struct request_queue *q;
929
930 q = d->blkq;
931 if (rq == d->ip.rq)
932 d->ip.rq = NULL;
933 do {
934 bio = rq->bio;
935 bok = !fastfail && test_bit(BIO_UPTODATE, &bio->bi_flags);
936 } while (__blk_end_request(rq, bok ? 0 : -EIO, bio->bi_size));
937
938 /* cf. http://lkml.org/lkml/2006/10/31/28 */
939 if (!fastfail)
940 q->request_fn(q);
941}
942
943static void
944aoe_end_buf(struct aoedev *d, struct buf *buf)
945{
946 struct request *rq;
947 unsigned long n;
948
949 if (buf == d->ip.buf)
950 d->ip.buf = NULL;
951 rq = buf->rq;
952 bio_pagedec(buf->bio);
953 mempool_free(buf, d->bufpool);
954 n = (unsigned long) rq->special;
955 rq->special = (void *) --n;
956 if (n == 0)
957 aoe_end_request(d, rq, 0);
958}
959
Ed Cashin3d5b0602012-10-04 17:16:20 -0700960static void
Ed Cashin896831f2012-10-04 17:16:21 -0700961ktiocomplete(struct frame *f)
Ed Cashin3d5b0602012-10-04 17:16:20 -0700962{
Ed L. Cashinddec63e2006-09-20 14:36:49 -0400963 struct aoe_hdr *hin, *hout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 struct aoe_atahdr *ahin, *ahout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 struct buf *buf;
Ed Cashin896831f2012-10-04 17:16:21 -0700966 struct sk_buff *skb;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800967 struct aoetgt *t;
968 struct aoeif *ifp;
Ed Cashin896831f2012-10-04 17:16:21 -0700969 struct aoedev *d;
970 long n;
971
972 if (f == NULL)
973 return;
974
975 t = f->t;
976 d = t->d;
977
978 hout = (struct aoe_hdr *) skb_mac_header(f->skb);
979 ahout = (struct aoe_atahdr *) (hout+1);
980 buf = f->buf;
981 skb = f->r_skb;
982 if (skb == NULL)
983 goto noskb; /* just fail the buf. */
984
985 hin = (struct aoe_hdr *) skb->data;
986 skb_pull(skb, sizeof(*hin));
987 ahin = (struct aoe_atahdr *) skb->data;
988 skb_pull(skb, sizeof(*ahin));
989 if (ahin->cmdstat & 0xa9) { /* these bits cleared on success */
990 pr_err("aoe: ata error cmd=%2.2Xh stat=%2.2Xh from e%ld.%d\n",
991 ahout->cmdstat, ahin->cmdstat,
992 d->aoemajor, d->aoeminor);
993noskb: if (buf)
Ed Cashin69cf2d852012-10-04 17:16:23 -0700994 clear_bit(BIO_UPTODATE, &buf->bio->bi_flags);
Ed Cashin896831f2012-10-04 17:16:21 -0700995 goto badrsp;
996 }
997
998 n = ahout->scnt << 9;
999 switch (ahout->cmdstat) {
1000 case ATA_CMD_PIO_READ:
1001 case ATA_CMD_PIO_READ_EXT:
1002 if (skb->len < n) {
1003 pr_err("aoe: runt data size in read. skb->len=%d need=%ld\n",
1004 skb->len, n);
Ed Cashin69cf2d852012-10-04 17:16:23 -07001005 clear_bit(BIO_UPTODATE, &buf->bio->bi_flags);
Ed Cashin896831f2012-10-04 17:16:21 -07001006 break;
1007 }
1008 bvcpy(f->bv, f->bv_off, skb, n);
1009 case ATA_CMD_PIO_WRITE:
1010 case ATA_CMD_PIO_WRITE_EXT:
1011 spin_lock_irq(&d->lock);
1012 ifp = getif(t, skb->dev);
Ed Cashin3f0f0132012-10-04 17:16:27 -07001013 if (ifp)
Ed Cashin896831f2012-10-04 17:16:21 -07001014 ifp->lost = 0;
Ed Cashin896831f2012-10-04 17:16:21 -07001015 if (d->htgt == t) /* I'll help myself, thank you. */
1016 d->htgt = NULL;
1017 spin_unlock_irq(&d->lock);
1018 break;
1019 case ATA_CMD_ID_ATA:
1020 if (skb->len < 512) {
1021 pr_info("aoe: runt data size in ataid. skb->len=%d\n",
1022 skb->len);
1023 break;
1024 }
1025 if (skb_linearize(skb))
1026 break;
1027 spin_lock_irq(&d->lock);
1028 ataid_complete(d, t, skb->data);
1029 spin_unlock_irq(&d->lock);
1030 break;
1031 default:
1032 pr_info("aoe: unrecognized ata command %2.2Xh for %d.%d\n",
1033 ahout->cmdstat,
1034 be16_to_cpu(get_unaligned(&hin->major)),
1035 hin->minor);
1036 }
1037badrsp:
1038 spin_lock_irq(&d->lock);
1039
1040 aoe_freetframe(f);
1041
Ed Cashin69cf2d852012-10-04 17:16:23 -07001042 if (buf && --buf->nframesout == 0 && buf->resid == 0)
1043 aoe_end_buf(d, buf);
Ed Cashin896831f2012-10-04 17:16:21 -07001044
Ed Cashin69cf2d852012-10-04 17:16:23 -07001045 aoecmd_work(d);
1046
1047 spin_unlock_irq(&d->lock);
1048 aoedev_put(d);
Ed Cashin896831f2012-10-04 17:16:21 -07001049 dev_kfree_skb(skb);
1050}
1051
1052/* Enters with iocq.lock held.
1053 * Returns true iff responses needing processing remain.
1054 */
1055static int
1056ktio(void)
1057{
1058 struct frame *f;
1059 struct list_head *pos;
1060 int i;
1061
1062 for (i = 0; ; ++i) {
1063 if (i == MAXIOC)
1064 return 1;
1065 if (list_empty(&iocq.head))
1066 return 0;
1067 pos = iocq.head.next;
1068 list_del(pos);
1069 spin_unlock_irq(&iocq.lock);
1070 f = list_entry(pos, struct frame, head);
1071 ktiocomplete(f);
1072 spin_lock_irq(&iocq.lock);
1073 }
1074}
1075
1076static int
1077kthread(void *vp)
1078{
1079 struct ktstate *k;
1080 DECLARE_WAITQUEUE(wait, current);
1081 int more;
1082
1083 k = vp;
1084 current->flags |= PF_NOFREEZE;
1085 set_user_nice(current, -10);
1086 complete(&k->rendez); /* tell spawner we're running */
1087 do {
1088 spin_lock_irq(k->lock);
1089 more = k->fn();
1090 if (!more) {
1091 add_wait_queue(k->waitq, &wait);
1092 __set_current_state(TASK_INTERRUPTIBLE);
1093 }
1094 spin_unlock_irq(k->lock);
1095 if (!more) {
1096 schedule();
1097 remove_wait_queue(k->waitq, &wait);
1098 } else
1099 cond_resched();
1100 } while (!kthread_should_stop());
1101 complete(&k->rendez); /* tell spawner we're stopping */
1102 return 0;
1103}
1104
Ed Cashineb086ec2012-10-04 17:16:25 -07001105void
Ed Cashin896831f2012-10-04 17:16:21 -07001106aoe_ktstop(struct ktstate *k)
1107{
1108 kthread_stop(k->task);
1109 wait_for_completion(&k->rendez);
1110}
1111
Ed Cashineb086ec2012-10-04 17:16:25 -07001112int
Ed Cashin896831f2012-10-04 17:16:21 -07001113aoe_ktstart(struct ktstate *k)
1114{
1115 struct task_struct *task;
1116
1117 init_completion(&k->rendez);
1118 task = kthread_run(kthread, k, k->name);
1119 if (task == NULL || IS_ERR(task))
1120 return -ENOMEM;
1121 k->task = task;
1122 wait_for_completion(&k->rendez); /* allow kthread to start */
1123 init_completion(&k->rendez); /* for waiting for exit later */
1124 return 0;
1125}
1126
1127/* pass it off to kthreads for processing */
1128static void
1129ktcomplete(struct frame *f, struct sk_buff *skb)
1130{
1131 ulong flags;
1132
1133 f->r_skb = skb;
1134 spin_lock_irqsave(&iocq.lock, flags);
1135 list_add_tail(&f->head, &iocq.head);
1136 spin_unlock_irqrestore(&iocq.lock, flags);
1137 wake_up(&ktiowq);
1138}
1139
1140struct sk_buff *
1141aoecmd_ata_rsp(struct sk_buff *skb)
1142{
1143 struct aoedev *d;
1144 struct aoe_hdr *h;
1145 struct frame *f;
1146 struct aoetgt *t;
1147 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 ulong flags;
1149 char ebuf[128];
ecashin@coraid.com32465c62005-04-18 22:00:18 -07001150 u16 aoemajor;
1151
Ed Cashin896831f2012-10-04 17:16:21 -07001152 h = (struct aoe_hdr *) skb->data;
1153 aoemajor = be16_to_cpu(get_unaligned(&h->major));
1154 d = aoedev_by_aoeaddr(aoemajor, h->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (d == NULL) {
1156 snprintf(ebuf, sizeof ebuf, "aoecmd_ata_rsp: ata response "
1157 "for unknown device %d.%d\n",
Ed Cashin896831f2012-10-04 17:16:21 -07001158 aoemajor, h->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 aoechr_error(ebuf);
Ed Cashin896831f2012-10-04 17:16:21 -07001160 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162
1163 spin_lock_irqsave(&d->lock, flags);
1164
Ed Cashin896831f2012-10-04 17:16:21 -07001165 n = be32_to_cpu(get_unaligned(&h->tag));
Ed Cashin64a80f52012-10-04 17:16:33 -07001166 f = getframe(d, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (f == NULL) {
Ed L. Cashindced3a02006-09-20 14:36:49 -04001168 calc_rttavg(d, -tsince(n));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 spin_unlock_irqrestore(&d->lock, flags);
Ed Cashin69cf2d852012-10-04 17:16:23 -07001170 aoedev_put(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 snprintf(ebuf, sizeof ebuf,
1172 "%15s e%d.%d tag=%08x@%08lx\n",
1173 "unexpected rsp",
Ed Cashin896831f2012-10-04 17:16:21 -07001174 get_unaligned_be16(&h->major),
1175 h->minor,
1176 get_unaligned_be32(&h->tag),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 jiffies);
1178 aoechr_error(ebuf);
Ed Cashin896831f2012-10-04 17:16:21 -07001179 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
Ed Cashin64a80f52012-10-04 17:16:33 -07001181 t = f->t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 calc_rttavg(d, tsince(f->tag));
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001183 t->nout--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 aoecmd_work(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 spin_unlock_irqrestore(&d->lock, flags);
Ed Cashin896831f2012-10-04 17:16:21 -07001187
1188 ktcomplete(f, skb);
1189
1190 /*
1191 * Note here that we do not perform an aoedev_put, as we are
1192 * leaving this reference for the ktio to release.
1193 */
1194 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197void
1198aoecmd_cfg(ushort aoemajor, unsigned char aoeminor)
1199{
David S. Millere9bb8fb2008-09-21 22:36:49 -07001200 struct sk_buff_head queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
David S. Millere9bb8fb2008-09-21 22:36:49 -07001202 __skb_queue_head_init(&queue);
1203 aoecmd_cfg_pkts(aoemajor, aoeminor, &queue);
1204 aoenet_xmit(&queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001207struct sk_buff *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208aoecmd_ata_id(struct aoedev *d)
1209{
1210 struct aoe_hdr *h;
1211 struct aoe_atahdr *ah;
1212 struct frame *f;
1213 struct sk_buff *skb;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001214 struct aoetgt *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Ed Cashin896831f2012-10-04 17:16:21 -07001216 f = newframe(d);
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001217 if (f == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 return NULL;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001219
1220 t = *d->tgt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 /* initialize the headers & frame */
Ed L. Cashine407a7f2006-09-20 14:36:49 -04001223 skb = f->skb;
Ed L. Cashinabdbf942007-10-16 23:27:03 -07001224 h = (struct aoe_hdr *) skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 ah = (struct aoe_atahdr *) (h+1);
Ed L. Cashin19900cd2006-12-22 01:09:21 -08001226 skb_put(skb, sizeof *h + sizeof *ah);
1227 memset(h, 0, skb->len);
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001228 f->tag = aoehdr_atainit(d, t, h);
Ed Cashin896831f2012-10-04 17:16:21 -07001229 fhash(f);
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001230 t->nout++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 f->waited = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 /* set up ata header */
1234 ah->scnt = 1;
Bartlomiej Zolnierkiewicz04b3ab52009-04-01 21:42:24 +02001235 ah->cmdstat = ATA_CMD_ID_ATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 ah->lba3 = 0xa0;
1237
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001238 skb->dev = t->ifp->nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Ed L. Cashin3ae1c242006-01-19 13:46:19 -05001240 d->rttavg = MAXTIMER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 d->timer.function = rexmit_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Ed L. Cashin4f51dc52006-09-20 14:36:49 -04001243 return skb_clone(skb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001246static struct aoetgt *
1247addtgt(struct aoedev *d, char *addr, ulong nframes)
1248{
1249 struct aoetgt *t, **tt, **te;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001250
1251 tt = d->targets;
1252 te = tt + NTARGETS;
1253 for (; tt < te && *tt; tt++)
1254 ;
1255
Ed L. Cashin578c4aa2008-02-08 04:20:09 -08001256 if (tt == te) {
1257 printk(KERN_INFO
1258 "aoe: device addtgt failure; too many targets\n");
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001259 return NULL;
Ed L. Cashin578c4aa2008-02-08 04:20:09 -08001260 }
Ed Cashin896831f2012-10-04 17:16:21 -07001261 t = kzalloc(sizeof(*t), GFP_ATOMIC);
1262 if (!t) {
Ed L. Cashin578c4aa2008-02-08 04:20:09 -08001263 printk(KERN_INFO "aoe: cannot allocate memory to add target\n");
Ed L. Cashin9bb237b2008-02-08 04:20:05 -08001264 return NULL;
1265 }
1266
Ed Cashin896831f2012-10-04 17:16:21 -07001267 d->ntargets++;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001268 t->nframes = nframes;
Ed Cashin896831f2012-10-04 17:16:21 -07001269 t->d = d;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001270 memcpy(t->addr, addr, sizeof t->addr);
1271 t->ifp = t->ifs;
1272 t->maxout = t->nframes;
Ed Cashin896831f2012-10-04 17:16:21 -07001273 INIT_LIST_HEAD(&t->ffree);
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001274 return *tt = t;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001275}
1276
Ed Cashin3f0f0132012-10-04 17:16:27 -07001277static void
1278setdbcnt(struct aoedev *d)
1279{
1280 struct aoetgt **t, **e;
1281 int bcnt = 0;
1282
1283 t = d->targets;
1284 e = t + NTARGETS;
1285 for (; t < e && *t; t++)
1286 if (bcnt == 0 || bcnt > (*t)->minbcnt)
1287 bcnt = (*t)->minbcnt;
1288 if (bcnt != d->maxbcnt) {
1289 d->maxbcnt = bcnt;
1290 pr_info("aoe: e%ld.%d: setting %d byte data frames\n",
1291 d->aoemajor, d->aoeminor, bcnt);
1292 }
1293}
1294
1295static void
1296setifbcnt(struct aoetgt *t, struct net_device *nd, int bcnt)
1297{
1298 struct aoedev *d;
1299 struct aoeif *p, *e;
1300 int minbcnt;
1301
1302 d = t->d;
1303 minbcnt = bcnt;
1304 p = t->ifs;
1305 e = p + NAOEIFS;
1306 for (; p < e; p++) {
1307 if (p->nd == NULL)
1308 break; /* end of the valid interfaces */
1309 if (p->nd == nd) {
1310 p->bcnt = bcnt; /* we're updating */
1311 nd = NULL;
1312 } else if (minbcnt > p->bcnt)
1313 minbcnt = p->bcnt; /* find the min interface */
1314 }
1315 if (nd) {
1316 if (p == e) {
1317 pr_err("aoe: device setifbcnt failure; too many interfaces.\n");
1318 return;
1319 }
1320 p->nd = nd;
1321 p->bcnt = bcnt;
1322 }
1323 t->minbcnt = minbcnt;
1324 setdbcnt(d);
1325}
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327void
1328aoecmd_cfg_rsp(struct sk_buff *skb)
1329{
1330 struct aoedev *d;
1331 struct aoe_hdr *h;
1332 struct aoe_cfghdr *ch;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001333 struct aoetgt *t;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -07001334 ulong flags, sysminor, aoemajor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 struct sk_buff *sl;
Ed Cashin69cf2d852012-10-04 17:16:23 -07001336 struct sk_buff_head queue;
Ed L. Cashin19bf2632006-09-20 14:36:49 -04001337 u16 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Ed Cashin69cf2d852012-10-04 17:16:23 -07001339 sl = NULL;
Ed L. Cashinabdbf942007-10-16 23:27:03 -07001340 h = (struct aoe_hdr *) skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 ch = (struct aoe_cfghdr *) (h+1);
1342
1343 /*
1344 * Enough people have their dip switches set backwards to
1345 * warrant a loud message for this special case.
1346 */
Harvey Harrison823ed722008-07-04 09:28:32 +02001347 aoemajor = get_unaligned_be16(&h->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (aoemajor == 0xfff) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -04001349 printk(KERN_ERR "aoe: Warning: shelf address is all ones. "
Ed L. Cashin6bb6285f2006-09-20 14:36:49 -04001350 "Check shelf dip switches.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return;
1352 }
Ed Cashin65833032012-10-04 17:16:32 -07001353 if (h->minor >= NPERSHELF) {
1354 pr_err("aoe: e%ld.%d %s, %d\n",
1355 aoemajor, h->minor,
1356 "slot number larger than the maximum",
1357 NPERSHELF-1);
1358 return;
1359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 sysminor = SYSMINOR(aoemajor, h->minor);
ecashin@coraid.comfc458dc2005-04-18 22:00:17 -07001362 if (sysminor * AOE_PARTITIONS + AOE_PARTITIONS > MINORMASK) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -04001363 printk(KERN_INFO "aoe: e%ld.%d: minor number too large\n",
ecashin@coraid.comfc458dc2005-04-18 22:00:17 -07001364 aoemajor, (int) h->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return;
1366 }
1367
Ed L. Cashin19bf2632006-09-20 14:36:49 -04001368 n = be16_to_cpu(ch->bufcnt);
Ed L. Cashin7df620d2008-02-08 04:20:07 -08001369 if (n > aoe_maxout) /* keep it reasonable */
1370 n = aoe_maxout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001372 d = aoedev_by_sysminor_m(sysminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (d == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -04001374 printk(KERN_INFO "aoe: device sysminor_m failure\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return;
1376 }
1377
1378 spin_lock_irqsave(&d->lock, flags);
1379
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001380 t = gettgt(d, h->src);
1381 if (!t) {
1382 t = addtgt(d, h->src, n);
Ed Cashin69cf2d852012-10-04 17:16:23 -07001383 if (!t)
1384 goto bail;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001385 }
Ed Cashin3f0f0132012-10-04 17:16:27 -07001386 n = skb->dev->mtu;
1387 n -= sizeof(struct aoe_hdr) + sizeof(struct aoe_atahdr);
1388 n /= 512;
1389 if (n > ch->scnt)
1390 n = ch->scnt;
1391 n = n ? n * 512 : DEFAULTBCNT;
1392 setifbcnt(t, skb->dev, n);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -05001393
1394 /* don't change users' perspective */
Ed Cashin69cf2d852012-10-04 17:16:23 -07001395 if (d->nopen == 0) {
1396 d->fw_ver = be16_to_cpu(ch->fwver);
1397 sl = aoecmd_ata_id(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
Ed Cashin69cf2d852012-10-04 17:16:23 -07001399bail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 spin_unlock_irqrestore(&d->lock, flags);
Ed Cashin69cf2d852012-10-04 17:16:23 -07001401 aoedev_put(d);
David S. Millere9bb8fb2008-09-21 22:36:49 -07001402 if (sl) {
David S. Millere9bb8fb2008-09-21 22:36:49 -07001403 __skb_queue_head_init(&queue);
1404 __skb_queue_tail(&queue, sl);
1405 aoenet_xmit(&queue);
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001409void
1410aoecmd_cleanslate(struct aoedev *d)
1411{
1412 struct aoetgt **t, **te;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001413
1414 d->mintimer = MINTIMER;
Ed Cashin3f0f0132012-10-04 17:16:27 -07001415 d->maxbcnt = 0;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001416
1417 t = d->targets;
1418 te = t + NTARGETS;
Ed Cashin3f0f0132012-10-04 17:16:27 -07001419 for (; t < te && *t; t++)
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001420 (*t)->maxout = (*t)->nframes;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001421}
Ed Cashin896831f2012-10-04 17:16:21 -07001422
Ed Cashin69cf2d852012-10-04 17:16:23 -07001423void
1424aoe_failbuf(struct aoedev *d, struct buf *buf)
1425{
1426 if (buf == NULL)
1427 return;
1428 buf->resid = 0;
1429 clear_bit(BIO_UPTODATE, &buf->bio->bi_flags);
1430 if (buf->nframesout == 0)
1431 aoe_end_buf(d, buf);
1432}
1433
1434void
1435aoe_flush_iocq(void)
Ed Cashin896831f2012-10-04 17:16:21 -07001436{
1437 struct frame *f;
1438 struct aoedev *d;
1439 LIST_HEAD(flist);
1440 struct list_head *pos;
1441 struct sk_buff *skb;
1442 ulong flags;
1443
1444 spin_lock_irqsave(&iocq.lock, flags);
1445 list_splice_init(&iocq.head, &flist);
1446 spin_unlock_irqrestore(&iocq.lock, flags);
1447 while (!list_empty(&flist)) {
1448 pos = flist.next;
1449 list_del(pos);
1450 f = list_entry(pos, struct frame, head);
1451 d = f->t->d;
1452 skb = f->r_skb;
1453 spin_lock_irqsave(&d->lock, flags);
1454 if (f->buf) {
1455 f->buf->nframesout--;
1456 aoe_failbuf(d, f->buf);
1457 }
1458 aoe_freetframe(f);
1459 spin_unlock_irqrestore(&d->lock, flags);
1460 dev_kfree_skb(skb);
Ed Cashin69cf2d852012-10-04 17:16:23 -07001461 aoedev_put(d);
Ed Cashin896831f2012-10-04 17:16:21 -07001462 }
1463}
1464
1465int __init
1466aoecmd_init(void)
1467{
1468 INIT_LIST_HEAD(&iocq.head);
1469 spin_lock_init(&iocq.lock);
1470 init_waitqueue_head(&ktiowq);
1471 kts.name = "aoe_ktio";
1472 kts.fn = ktio;
1473 kts.waitq = &ktiowq;
1474 kts.lock = &iocq.lock;
1475 return aoe_ktstart(&kts);
1476}
1477
1478void
1479aoecmd_exit(void)
1480{
1481 aoe_ktstop(&kts);
Ed Cashin69cf2d852012-10-04 17:16:23 -07001482 aoe_flush_iocq();
Ed Cashin896831f2012-10-04 17:16:21 -07001483}