treewide: Use fallthrough pseudo-keyword
[linux-block.git] / drivers / block / aoe / aoecmd.c
CommitLineData
ca47bbd9 1/* Copyright (c) 2013 Coraid, Inc. See COPYING for GPL terms. */
1da177e4
LT
2/*
3 * aoecmd.c
4 * Filesystem request handling methods
5 */
6
04b3ab52 7#include <linux/ata.h>
5a0e3ad6 8#include <linux/slab.h>
1da177e4 9#include <linux/hdreg.h>
3582dd29 10#include <linux/blk-mq.h>
1da177e4
LT
11#include <linux/skbuff.h>
12#include <linux/netdevice.h>
3ae1c24e 13#include <linux/genhd.h>
68e0d42f 14#include <linux/moduleparam.h>
896831f5
EC
15#include <linux/workqueue.h>
16#include <linux/kthread.h>
881d966b 17#include <net/net_namespace.h>
475172fb 18#include <asm/unaligned.h>
896831f5 19#include <linux/uio.h>
1da177e4
LT
20#include "aoe.h"
21
896831f5
EC
22#define MAXIOC (8192) /* default meant to avoid most soft lockups */
23
24static void ktcomplete(struct frame *, struct sk_buff *);
bbb44e30 25static int count_targets(struct aoedev *d, int *untainted);
896831f5 26
69cf2d85
EC
27static struct buf *nextbuf(struct aoedev *);
28
b751e8b6
EC
29static int aoe_deadsecs = 60 * 3;
30module_param(aoe_deadsecs, int, 0644);
31MODULE_PARM_DESC(aoe_deadsecs, "After aoe_deadsecs seconds, give up and fail dev.");
1da177e4 32
7b6ccc5f 33static int aoe_maxout = 64;
7df620d8
EC
34module_param(aoe_maxout, int, 0644);
35MODULE_PARM_DESC(aoe_maxout,
36 "Only aoe_maxout outstanding packets for every MAC on eX.Y.");
37
8030d343
EC
38/* The number of online cpus during module initialization gives us a
39 * convenient heuristic cap on the parallelism used for ktio threads
40 * doing I/O completion. It is not important that the cap equal the
41 * actual number of running CPUs at any given time, but because of CPU
42 * hotplug, we take care to use ncpus instead of using
43 * num_online_cpus() after module initialization.
44 */
45static int ncpus;
46
47/* mutex lock used for synchronization while thread spawning */
48static DEFINE_MUTEX(ktio_spawn_lock);
49
50static wait_queue_head_t *ktiowq;
51static struct ktstate *kts;
896831f5
EC
52
53/* io completion queue */
8030d343 54struct iocq_ktio {
896831f5
EC
55 struct list_head head;
56 spinlock_t lock;
8030d343
EC
57};
58static struct iocq_ktio *iocq;
896831f5 59
bbb44e30
EC
60static struct page *empty_page;
61
68e0d42f 62static struct sk_buff *
e407a7f6 63new_skb(ulong len)
1da177e4
LT
64{
65 struct sk_buff *skb;
66
91c57464 67 skb = alloc_skb(len + MAX_HEADER, GFP_ATOMIC);
1da177e4 68 if (skb) {
91c57464 69 skb_reserve(skb, MAX_HEADER);
459a98ed 70 skb_reset_mac_header(skb);
c1d2bbe1 71 skb_reset_network_header(skb);
1da177e4 72 skb->protocol = __constant_htons(ETH_P_AOE);
8babe8cc 73 skb_checksum_none_assert(skb);
1da177e4
LT
74 }
75 return skb;
76}
77
3a0c40d2
EC
78static struct frame *
79getframe_deferred(struct aoedev *d, u32 tag)
80{
81 struct list_head *head, *pos, *nx;
82 struct frame *f;
83
84 head = &d->rexmitq;
85 list_for_each_safe(pos, nx, head) {
86 f = list_entry(pos, struct frame, head);
87 if (f->tag == tag) {
88 list_del(pos);
89 return f;
90 }
91 }
92 return NULL;
93}
94
1da177e4 95static struct frame *
64a80f5a 96getframe(struct aoedev *d, u32 tag)
1da177e4 97{
896831f5
EC
98 struct frame *f;
99 struct list_head *head, *pos, *nx;
100 u32 n;
1da177e4 101
896831f5 102 n = tag % NFACTIVE;
64a80f5a 103 head = &d->factive[n];
896831f5
EC
104 list_for_each_safe(pos, nx, head) {
105 f = list_entry(pos, struct frame, head);
106 if (f->tag == tag) {
107 list_del(pos);
1da177e4 108 return f;
896831f5
EC
109 }
110 }
1da177e4
LT
111 return NULL;
112}
113
114/*
115 * Leave the top bit clear so we have tagspace for userland.
116 * The bottom 16 bits are the xmit tick for rexmit/rttavg processing.
117 * This driver reserves tag -1 to mean "unused frame."
118 */
119static int
64a80f5a 120newtag(struct aoedev *d)
1da177e4
LT
121{
122 register ulong n;
123
124 n = jiffies & 0xffff;
64a80f5a 125 return n |= (++d->lasttag & 0x7fff) << 16;
1da177e4
LT
126}
127
896831f5 128static u32
68e0d42f 129aoehdr_atainit(struct aoedev *d, struct aoetgt *t, struct aoe_hdr *h)
1da177e4 130{
64a80f5a 131 u32 host_tag = newtag(d);
1da177e4 132
68e0d42f
EC
133 memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src);
134 memcpy(h->dst, t->addr, sizeof h->dst);
63e9cc5d 135 h->type = __constant_cpu_to_be16(ETH_P_AOE);
1da177e4 136 h->verfl = AOE_HVER;
63e9cc5d 137 h->major = cpu_to_be16(d->aoemajor);
1da177e4
LT
138 h->minor = d->aoeminor;
139 h->cmd = AOECMD_ATA;
63e9cc5d 140 h->tag = cpu_to_be32(host_tag);
1da177e4
LT
141
142 return host_tag;
143}
144
19bf2635
EC
145static inline void
146put_lba(struct aoe_atahdr *ah, sector_t lba)
147{
148 ah->lba0 = lba;
149 ah->lba1 = lba >>= 8;
150 ah->lba2 = lba >>= 8;
151 ah->lba3 = lba >>= 8;
152 ah->lba4 = lba >>= 8;
153 ah->lba5 = lba >>= 8;
154}
155
3f0f0133 156static struct aoeif *
68e0d42f
EC
157ifrotate(struct aoetgt *t)
158{
3f0f0133
EC
159 struct aoeif *ifp;
160
161 ifp = t->ifp;
162 ifp++;
163 if (ifp >= &t->ifs[NAOEIFS] || ifp->nd == NULL)
164 ifp = t->ifs;
165 if (ifp->nd == NULL)
166 return NULL;
167 return t->ifp = ifp;
68e0d42f
EC
168}
169
9bb237b6
EC
170static void
171skb_pool_put(struct aoedev *d, struct sk_buff *skb)
172{
e9bb8fb0 173 __skb_queue_tail(&d->skbpool, skb);
9bb237b6
EC
174}
175
176static struct sk_buff *
177skb_pool_get(struct aoedev *d)
178{
e9bb8fb0 179 struct sk_buff *skb = skb_peek(&d->skbpool);
9bb237b6 180
9bb237b6 181 if (skb && atomic_read(&skb_shinfo(skb)->dataref) == 1) {
e9bb8fb0 182 __skb_unlink(skb, &d->skbpool);
9bb237b6
EC
183 return skb;
184 }
e9bb8fb0
DM
185 if (skb_queue_len(&d->skbpool) < NSKBPOOLMAX &&
186 (skb = new_skb(ETH_ZLEN)))
9bb237b6 187 return skb;
e9bb8fb0 188
9bb237b6
EC
189 return NULL;
190}
191
896831f5
EC
192void
193aoe_freetframe(struct frame *f)
194{
195 struct aoetgt *t;
196
197 t = f->t;
198 f->buf = NULL;
feb261e2 199 memset(&f->iter, 0, sizeof(f->iter));
896831f5 200 f->r_skb = NULL;
bbb44e30 201 f->flags = 0;
896831f5
EC
202 list_add(&f->head, &t->ffree);
203}
204
68e0d42f 205static struct frame *
896831f5 206newtframe(struct aoedev *d, struct aoetgt *t)
1da177e4 207{
896831f5 208 struct frame *f;
9bb237b6 209 struct sk_buff *skb;
896831f5
EC
210 struct list_head *pos;
211
212 if (list_empty(&t->ffree)) {
213 if (t->falloc >= NSKBPOOLMAX*2)
214 return NULL;
215 f = kcalloc(1, sizeof(*f), GFP_ATOMIC);
216 if (f == NULL)
217 return NULL;
218 t->falloc++;
219 f->t = t;
220 } else {
221 pos = t->ffree.next;
222 list_del(pos);
223 f = list_entry(pos, struct frame, head);
224 }
225
226 skb = f->skb;
227 if (skb == NULL) {
228 f->skb = skb = new_skb(ETH_ZLEN);
229 if (!skb) {
230bail: aoe_freetframe(f);
231 return NULL;
232 }
233 }
234
235 if (atomic_read(&skb_shinfo(skb)->dataref) != 1) {
236 skb = skb_pool_get(d);
237 if (skb == NULL)
238 goto bail;
239 skb_pool_put(d, f->skb);
240 f->skb = skb;
241 }
242
243 skb->truesize -= skb->data_len;
244 skb_shinfo(skb)->nr_frags = skb->data_len = 0;
245 skb_trim(skb, 0);
246 return f;
247}
248
249static struct frame *
250newframe(struct aoedev *d)
251{
252 struct frame *f;
253 struct aoetgt *t, **tt;
254 int totout = 0;
bbb44e30
EC
255 int use_tainted;
256 int has_untainted;
68e0d42f 257
71114ec4 258 if (!d->targets || !d->targets[0]) {
68e0d42f
EC
259 printk(KERN_ERR "aoe: NULL TARGETS!\n");
260 return NULL;
261 }
896831f5 262 tt = d->tgt; /* last used target */
bbb44e30 263 for (use_tainted = 0, has_untainted = 0;;) {
896831f5 264 tt++;
71114ec4 265 if (tt >= &d->targets[d->ntargets] || !*tt)
896831f5
EC
266 tt = d->targets;
267 t = *tt;
bbb44e30
EC
268 if (!t->taint) {
269 has_untainted = 1;
270 totout += t->nout;
271 }
896831f5 272 if (t->nout < t->maxout
bbb44e30 273 && (use_tainted || !t->taint)
896831f5
EC
274 && t->ifp->nd) {
275 f = newtframe(d, t);
276 if (f) {
896831f5 277 ifrotate(t);
3f0f0133 278 d->tgt = tt;
68e0d42f
EC
279 return f;
280 }
68e0d42f 281 }
bbb44e30
EC
282 if (tt == d->tgt) { /* we've looped and found nada */
283 if (!use_tainted && !has_untainted)
284 use_tainted = 1;
285 else
286 break;
287 }
896831f5
EC
288 }
289 if (totout == 0) {
290 d->kicked++;
291 d->flags |= DEVFL_KICKME;
9bb237b6 292 }
68e0d42f
EC
293 return NULL;
294}
295
3d5b0605 296static void
feb261e2 297skb_fillup(struct sk_buff *skb, struct bio *bio, struct bvec_iter iter)
3d5b0605
EC
298{
299 int frag = 0;
feb261e2
KO
300 struct bio_vec bv;
301
302 __bio_for_each_segment(bv, bio, iter, iter)
303 skb_fill_page_desc(skb, frag++, bv.bv_page,
304 bv.bv_offset, bv.bv_len);
3d5b0605
EC
305}
306
896831f5
EC
307static void
308fhash(struct frame *f)
309{
64a80f5a 310 struct aoedev *d = f->t->d;
896831f5
EC
311 u32 n;
312
313 n = f->tag % NFACTIVE;
64a80f5a 314 list_add_tail(&f->head, &d->factive[n]);
896831f5
EC
315}
316
bbb44e30
EC
317static void
318ata_rw_frameinit(struct frame *f)
319{
320 struct aoetgt *t;
321 struct aoe_hdr *h;
322 struct aoe_atahdr *ah;
323 struct sk_buff *skb;
324 char writebit, extbit;
325
326 skb = f->skb;
327 h = (struct aoe_hdr *) skb_mac_header(skb);
328 ah = (struct aoe_atahdr *) (h + 1);
329 skb_put(skb, sizeof(*h) + sizeof(*ah));
330 memset(h, 0, skb->len);
331
332 writebit = 0x10;
333 extbit = 0x4;
334
335 t = f->t;
336 f->tag = aoehdr_atainit(t->d, t, h);
337 fhash(f);
338 t->nout++;
339 f->waited = 0;
340 f->waited_total = 0;
bbb44e30
EC
341
342 /* set up ata header */
feb261e2
KO
343 ah->scnt = f->iter.bi_size >> 9;
344 put_lba(ah, f->iter.bi_sector);
bbb44e30
EC
345 if (t->d->flags & DEVFL_EXT) {
346 ah->aflags |= AOEAFL_EXT;
347 } else {
348 extbit = 0;
349 ah->lba3 &= 0x0f;
350 ah->lba3 |= 0xe0; /* LBA bit + obsolete 0xa0 */
351 }
352 if (f->buf && bio_data_dir(f->buf->bio) == WRITE) {
feb261e2 353 skb_fillup(skb, f->buf->bio, f->iter);
bbb44e30 354 ah->aflags |= AOEAFL_WRITE;
feb261e2
KO
355 skb->len += f->iter.bi_size;
356 skb->data_len = f->iter.bi_size;
357 skb->truesize += f->iter.bi_size;
bbb44e30
EC
358 t->wpkts++;
359 } else {
360 t->rpkts++;
361 writebit = 0;
362 }
363
364 ah->cmdstat = ATA_CMD_PIO_READ | writebit | extbit;
365 skb->dev = t->ifp->nd;
366}
367
68e0d42f
EC
368static int
369aoecmd_ata_rw(struct aoedev *d)
370{
371 struct frame *f;
1da177e4
LT
372 struct buf *buf;
373 struct sk_buff *skb;
69cf2d85 374 struct sk_buff_head queue;
1da177e4 375
69cf2d85
EC
376 buf = nextbuf(d);
377 if (buf == NULL)
378 return 0;
896831f5 379 f = newframe(d);
68e0d42f
EC
380 if (f == NULL)
381 return 0;
3d5b0605 382
1da177e4 383 /* initialize the headers & frame */
1da177e4 384 f->buf = buf;
feb261e2
KO
385 f->iter = buf->iter;
386 f->iter.bi_size = min_t(unsigned long,
387 d->maxbcnt ?: DEFAULTBCNT,
388 f->iter.bi_size);
389 bio_advance_iter(buf->bio, &buf->iter, f->iter.bi_size);
390
391 if (!buf->iter.bi_size)
392 d->ip.buf = NULL;
1da177e4
LT
393
394 /* mark all tracking fields and load out */
395 buf->nframesout += 1;
feb261e2
KO
396
397 ata_rw_frameinit(f);
1da177e4 398
bbb44e30 399 skb = skb_clone(f->skb, GFP_ATOMIC);
69cf2d85 400 if (skb) {
85cf955d 401 f->sent = ktime_get();
69cf2d85
EC
402 __skb_queue_head_init(&queue);
403 __skb_queue_tail(&queue, skb);
404 aoenet_xmit(&queue);
405 }
68e0d42f 406 return 1;
1da177e4
LT
407}
408
3ae1c24e
EC
409/* some callers cannot sleep, and they can call this function,
410 * transmitting the packets later, when interrupts are on
411 */
e9bb8fb0
DM
412static void
413aoecmd_cfg_pkts(ushort aoemajor, unsigned char aoeminor, struct sk_buff_head *queue)
3ae1c24e
EC
414{
415 struct aoe_hdr *h;
416 struct aoe_cfghdr *ch;
e9bb8fb0 417 struct sk_buff *skb;
3ae1c24e
EC
418 struct net_device *ifp;
419
840a185d
ED
420 rcu_read_lock();
421 for_each_netdev_rcu(&init_net, ifp) {
3ae1c24e
EC
422 dev_hold(ifp);
423 if (!is_aoe_netif(ifp))
7562f876 424 goto cont;
3ae1c24e 425
e407a7f6 426 skb = new_skb(sizeof *h + sizeof *ch);
3ae1c24e 427 if (skb == NULL) {
a12c93f0 428 printk(KERN_INFO "aoe: skb alloc failure\n");
7562f876 429 goto cont;
3ae1c24e 430 }
19900cde 431 skb_put(skb, sizeof *h + sizeof *ch);
e407a7f6 432 skb->dev = ifp;
e9bb8fb0 433 __skb_queue_tail(queue, skb);
abdbf94d 434 h = (struct aoe_hdr *) skb_mac_header(skb);
3ae1c24e
EC
435 memset(h, 0, sizeof *h + sizeof *ch);
436
437 memset(h->dst, 0xff, sizeof h->dst);
438 memcpy(h->src, ifp->dev_addr, sizeof h->src);
439 h->type = __constant_cpu_to_be16(ETH_P_AOE);
440 h->verfl = AOE_HVER;
441 h->major = cpu_to_be16(aoemajor);
442 h->minor = aoeminor;
443 h->cmd = AOECMD_CFG;
444
7562f876
PE
445cont:
446 dev_put(ifp);
3ae1c24e 447 }
840a185d 448 rcu_read_unlock();
3ae1c24e
EC
449}
450
1da177e4 451static void
896831f5 452resend(struct aoedev *d, struct frame *f)
1da177e4
LT
453{
454 struct sk_buff *skb;
69cf2d85 455 struct sk_buff_head queue;
1da177e4 456 struct aoe_hdr *h;
896831f5 457 struct aoetgt *t;
1da177e4
LT
458 char buf[128];
459 u32 n;
1da177e4 460
896831f5 461 t = f->t;
64a80f5a 462 n = newtag(d);
68e0d42f 463 skb = f->skb;
3f0f0133
EC
464 if (ifrotate(t) == NULL) {
465 /* probably can't happen, but set it up to fail anyway */
466 pr_info("aoe: resend: no interfaces to rotate to.\n");
467 ktcomplete(f, NULL);
468 return;
469 }
68e0d42f 470 h = (struct aoe_hdr *) skb_mac_header(skb);
1da177e4 471
bbb44e30
EC
472 if (!(f->flags & FFL_PROBE)) {
473 snprintf(buf, sizeof(buf),
474 "%15s e%ld.%d oldtag=%08x@%08lx newtag=%08x s=%pm d=%pm nout=%d\n",
475 "retransmit", d->aoemajor, d->aoeminor,
476 f->tag, jiffies, n,
477 h->src, h->dst, t->nout);
478 aoechr_error(buf);
479 }
1da177e4 480
1da177e4 481 f->tag = n;
896831f5 482 fhash(f);
63e9cc5d 483 h->tag = cpu_to_be32(n);
68e0d42f
EC
484 memcpy(h->dst, t->addr, sizeof h->dst);
485 memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src);
486
68e0d42f 487 skb->dev = t->ifp->nd;
4f51dc5e
EC
488 skb = skb_clone(skb, GFP_ATOMIC);
489 if (skb == NULL)
490 return;
85cf955d 491 f->sent = ktime_get();
69cf2d85
EC
492 __skb_queue_head_init(&queue);
493 __skb_queue_tail(&queue, skb);
494 aoenet_xmit(&queue);
1da177e4
LT
495}
496
5f0c9c48
EC
497static int
498tsince_hr(struct frame *f)
499{
85cf955d 500 u64 delta = ktime_to_ns(ktime_sub(ktime_get(), f->sent));
5f0c9c48 501
85cf955d
TR
502 /* delta is normally under 4.2 seconds, avoid 64-bit division */
503 if (likely(delta <= UINT_MAX))
504 return (u32)delta / NSEC_PER_USEC;
5f0c9c48 505
85cf955d
TR
506 /* avoid overflow after 71 minutes */
507 if (delta > ((u64)INT_MAX * NSEC_PER_USEC))
508 return INT_MAX;
5f0c9c48 509
85cf955d 510 return div_u64(delta, NSEC_PER_USEC);
5f0c9c48
EC
511}
512
1da177e4 513static int
896831f5 514tsince(u32 tag)
1da177e4
LT
515{
516 int n;
517
518 n = jiffies & 0xffff;
519 n -= tag & 0xffff;
520 if (n < 0)
521 n += 1<<16;
5f0c9c48 522 return jiffies_to_usecs(n + 1);
1da177e4
LT
523}
524
68e0d42f
EC
525static struct aoeif *
526getif(struct aoetgt *t, struct net_device *nd)
527{
528 struct aoeif *p, *e;
529
530 p = t->ifs;
531 e = p + NAOEIFS;
532 for (; p < e; p++)
533 if (p->nd == nd)
534 return p;
535 return NULL;
536}
537
68e0d42f
EC
538static void
539ejectif(struct aoetgt *t, struct aoeif *ifp)
540{
541 struct aoeif *e;
1b86fda9 542 struct net_device *nd;
68e0d42f
EC
543 ulong n;
544
1b86fda9 545 nd = ifp->nd;
68e0d42f
EC
546 e = t->ifs + NAOEIFS - 1;
547 n = (e - ifp) * sizeof *ifp;
548 memmove(ifp, ifp+1, n);
549 e->nd = NULL;
1b86fda9 550 dev_put(nd);
68e0d42f
EC
551}
552
3fc9b032 553static struct frame *
bbb44e30 554reassign_frame(struct frame *f)
3fc9b032 555{
3fc9b032
EC
556 struct frame *nf;
557 struct sk_buff *skb;
558
3fc9b032
EC
559 nf = newframe(f->t->d);
560 if (!nf)
561 return NULL;
bbb44e30
EC
562 if (nf->t == f->t) {
563 aoe_freetframe(nf);
564 return NULL;
565 }
3fc9b032
EC
566
567 skb = nf->skb;
568 nf->skb = f->skb;
569 nf->buf = f->buf;
feb261e2 570 nf->iter = f->iter;
3fc9b032
EC
571 nf->waited = 0;
572 nf->waited_total = f->waited_total;
573 nf->sent = f->sent;
574 f->skb = skb;
3fc9b032
EC
575
576 return nf;
577}
578
bbb44e30
EC
579static void
580probe(struct aoetgt *t)
68e0d42f 581{
bbb44e30
EC
582 struct aoedev *d;
583 struct frame *f;
584 struct sk_buff *skb;
585 struct sk_buff_head queue;
586 size_t n, m;
587 int frag;
896831f5 588
bbb44e30
EC
589 d = t->d;
590 f = newtframe(d, t);
591 if (!f) {
592 pr_err("%s %pm for e%ld.%d: %s\n",
593 "aoe: cannot probe remote address",
594 t->addr,
595 (long) d->aoemajor, d->aoeminor,
596 "no frame available");
597 return;
68e0d42f 598 }
bbb44e30
EC
599 f->flags |= FFL_PROBE;
600 ifrotate(t);
feb261e2 601 f->iter.bi_size = t->d->maxbcnt ? t->d->maxbcnt : DEFAULTBCNT;
bbb44e30
EC
602 ata_rw_frameinit(f);
603 skb = f->skb;
feb261e2 604 for (frag = 0, n = f->iter.bi_size; n > 0; ++frag, n -= m) {
bbb44e30
EC
605 if (n < PAGE_SIZE)
606 m = n;
607 else
608 m = PAGE_SIZE;
609 skb_fill_page_desc(skb, frag, empty_page, 0, m);
3fc9b032 610 }
feb261e2
KO
611 skb->len += f->iter.bi_size;
612 skb->data_len = f->iter.bi_size;
613 skb->truesize += f->iter.bi_size;
bbb44e30
EC
614
615 skb = skb_clone(f->skb, GFP_ATOMIC);
616 if (skb) {
85cf955d 617 f->sent = ktime_get();
bbb44e30
EC
618 __skb_queue_head_init(&queue);
619 __skb_queue_tail(&queue, skb);
620 aoenet_xmit(&queue);
621 }
622}
623
624static long
625rto(struct aoedev *d)
626{
627 long t;
628
629 t = 2 * d->rttavg >> RTTSCALE;
630 t += 8 * d->rttdev >> RTTDSCALE;
631 if (t == 0)
632 t = 1;
633
634 return t;
68e0d42f
EC
635}
636
3a0c40d2
EC
637static void
638rexmit_deferred(struct aoedev *d)
639{
640 struct aoetgt *t;
641 struct frame *f;
bbb44e30 642 struct frame *nf;
3a0c40d2 643 struct list_head *pos, *nx, *head;
3fc9b032 644 int since;
bbb44e30
EC
645 int untainted;
646
647 count_targets(d, &untainted);
3a0c40d2
EC
648
649 head = &d->rexmitq;
650 list_for_each_safe(pos, nx, head) {
651 f = list_entry(pos, struct frame, head);
652 t = f->t;
bbb44e30
EC
653 if (t->taint) {
654 if (!(f->flags & FFL_PROBE)) {
655 nf = reassign_frame(f);
656 if (nf) {
657 if (t->nout_probes == 0
658 && untainted > 0) {
659 probe(t);
660 t->nout_probes++;
661 }
662 list_replace(&f->head, &nf->head);
663 pos = &nf->head;
664 aoe_freetframe(f);
665 f = nf;
666 t = f->t;
667 }
668 } else if (untainted < 1) {
669 /* don't probe w/o other untainted aoetgts */
670 goto stop_probe;
671 } else if (tsince_hr(f) < t->taint * rto(d)) {
672 /* reprobe slowly when taint is high */
673 continue;
674 }
675 } else if (f->flags & FFL_PROBE) {
676stop_probe: /* don't probe untainted aoetgts */
677 list_del(pos);
678 aoe_freetframe(f);
679 /* leaving d->kicked, because this is routine */
680 f->t->d->flags |= DEVFL_KICKME;
681 continue;
682 }
3a0c40d2
EC
683 if (t->nout >= t->maxout)
684 continue;
685 list_del(pos);
686 t->nout++;
bbb44e30
EC
687 if (f->flags & FFL_PROBE)
688 t->nout_probes++;
3fc9b032
EC
689 since = tsince_hr(f);
690 f->waited += since;
691 f->waited_total += since;
3a0c40d2
EC
692 resend(d, f);
693 }
694}
695
bbb44e30
EC
696/* An aoetgt accumulates demerits quickly, and successful
697 * probing redeems the aoetgt slowly.
698 */
699static void
700scorn(struct aoetgt *t)
701{
702 int n;
703
704 n = t->taint++;
705 t->taint += t->taint * 2;
706 if (n > t->taint)
707 t->taint = n;
708 if (t->taint > MAX_TAINT)
709 t->taint = MAX_TAINT;
710}
711
712static int
713count_targets(struct aoedev *d, int *untainted)
714{
715 int i, good;
716
717 for (i = good = 0; i < d->ntargets && d->targets[i]; ++i)
718 if (d->targets[i]->taint == 0)
719 good++;
720
721 if (untainted)
722 *untainted = good;
723 return i;
724}
725
1da177e4 726static void
0e0cc9df 727rexmit_timer(struct timer_list *timer)
1da177e4
LT
728{
729 struct aoedev *d;
3a0c40d2 730 struct aoetgt *t;
68e0d42f 731 struct aoeif *ifp;
896831f5
EC
732 struct frame *f;
733 struct list_head *head, *pos, *nx;
734 LIST_HEAD(flist);
1da177e4
LT
735 register long timeout;
736 ulong flags, n;
896831f5 737 int i;
bbb44e30 738 int utgts; /* number of aoetgt descriptors (not slots) */
3fc9b032 739 int since;
1da177e4 740
0e0cc9df 741 d = from_timer(d, timer, timer);
1da177e4 742
0d555ecf
EC
743 spin_lock_irqsave(&d->lock, flags);
744
3a0c40d2 745 /* timeout based on observed timings and variations */
bbb44e30
EC
746 timeout = rto(d);
747
748 utgts = count_targets(d, NULL);
1da177e4 749
1da177e4 750 if (d->flags & DEVFL_TKILL) {
1c6f3fca 751 spin_unlock_irqrestore(&d->lock, flags);
1da177e4
LT
752 return;
753 }
896831f5
EC
754
755 /* collect all frames to rexmit into flist */
64a80f5a
EC
756 for (i = 0; i < NFACTIVE; i++) {
757 head = &d->factive[i];
758 list_for_each_safe(pos, nx, head) {
759 f = list_entry(pos, struct frame, head);
5f0c9c48 760 if (tsince_hr(f) < timeout)
64a80f5a
EC
761 break; /* end of expired frames */
762 /* move to flist for later processing */
763 list_move_tail(pos, &flist);
68e0d42f 764 }
64a80f5a 765 }
69cf2d85 766
896831f5
EC
767 /* process expired frames */
768 while (!list_empty(&flist)) {
769 pos = flist.next;
770 f = list_entry(pos, struct frame, head);
3fc9b032
EC
771 since = tsince_hr(f);
772 n = f->waited_total + since;
5f0c9c48 773 n /= USEC_PER_SEC;
c450ba0f
EC
774 if (aoe_deadsecs
775 && n > aoe_deadsecs
776 && !(f->flags & FFL_PROBE)) {
896831f5
EC
777 /* Waited too long. Device failure.
778 * Hang all frames on first hash bucket for downdev
779 * to clean up.
780 */
64a80f5a 781 list_splice(&flist, &d->factive[0]);
896831f5 782 aoedev_downdev(d);
3a0c40d2 783 goto out;
896831f5 784 }
896831f5
EC
785
786 t = f->t;
bbb44e30
EC
787 n = f->waited + since;
788 n /= USEC_PER_SEC;
789 if (aoe_deadsecs && utgts > 0
790 && (n > aoe_deadsecs / utgts || n > HARD_SCORN_SECS))
791 scorn(t); /* avoid this target */
d54d35ac 792
3a0c40d2
EC
793 if (t->maxout != 1) {
794 t->ssthresh = t->maxout / 2;
795 t->maxout = 1;
896831f5
EC
796 }
797
bbb44e30
EC
798 if (f->flags & FFL_PROBE) {
799 t->nout_probes--;
800 } else {
801 ifp = getif(t, f->skb->dev);
802 if (ifp && ++ifp->lost > (t->nframes << 1)
803 && (ifp != t->ifs || t->ifs[1].nd)) {
804 ejectif(t, ifp);
805 ifp = NULL;
806 }
896831f5 807 }
3a0c40d2
EC
808 list_move_tail(pos, &d->rexmitq);
809 t->nout--;
896831f5 810 }
3a0c40d2 811 rexmit_deferred(d);
896831f5 812
3a0c40d2 813out:
bbb44e30 814 if ((d->flags & DEVFL_KICKME) && d->blkq) {
4f51dc5e 815 d->flags &= ~DEVFL_KICKME;
3582dd29 816 blk_mq_run_hw_queues(d->blkq, true);
4f51dc5e 817 }
1da177e4 818
1da177e4
LT
819 d->timer.expires = jiffies + TIMERTICK;
820 add_timer(&d->timer);
821
822 spin_unlock_irqrestore(&d->lock, flags);
69cf2d85 823}
1da177e4 824
69cf2d85
EC
825static void
826bufinit(struct buf *buf, struct request *rq, struct bio *bio)
827{
69cf2d85
EC
828 memset(buf, 0, sizeof(*buf));
829 buf->rq = rq;
830 buf->bio = bio;
feb261e2 831 buf->iter = bio->bi_iter;
69cf2d85
EC
832}
833
834static struct buf *
835nextbuf(struct aoedev *d)
836{
837 struct request *rq;
838 struct request_queue *q;
61e7712e 839 struct aoe_req *req;
69cf2d85
EC
840 struct buf *buf;
841 struct bio *bio;
842
843 q = d->blkq;
844 if (q == NULL)
845 return NULL; /* initializing */
846 if (d->ip.buf)
847 return d->ip.buf;
848 rq = d->ip.rq;
849 if (rq == NULL) {
3582dd29
JA
850 rq = list_first_entry_or_null(&d->rq_list, struct request,
851 queuelist);
69cf2d85
EC
852 if (rq == NULL)
853 return NULL;
3582dd29
JA
854 list_del_init(&rq->queuelist);
855 blk_mq_start_request(rq);
69cf2d85
EC
856 d->ip.rq = rq;
857 d->ip.nxbio = rq->bio;
61e7712e
CH
858
859 req = blk_mq_rq_to_pdu(rq);
860 req->nr_bios = 0;
861 __rq_for_each_bio(bio, rq)
862 req->nr_bios++;
69cf2d85
EC
863 }
864 buf = mempool_alloc(d->bufpool, GFP_ATOMIC);
865 if (buf == NULL) {
866 pr_err("aoe: nextbuf: unable to mempool_alloc!\n");
867 return NULL;
868 }
869 bio = d->ip.nxbio;
870 bufinit(buf, rq, bio);
871 bio = bio->bi_next;
872 d->ip.nxbio = bio;
873 if (bio == NULL)
874 d->ip.rq = NULL;
875 return d->ip.buf = buf;
1da177e4
LT
876}
877
68e0d42f
EC
878/* enters with d->lock held */
879void
880aoecmd_work(struct aoedev *d)
881{
3a0c40d2 882 rexmit_deferred(d);
69cf2d85
EC
883 while (aoecmd_ata_rw(d))
884 ;
68e0d42f
EC
885}
886
3ae1c24e
EC
887/* this function performs work that has been deferred until sleeping is OK
888 */
889void
c4028958 890aoecmd_sleepwork(struct work_struct *work)
3ae1c24e 891{
c4028958 892 struct aoedev *d = container_of(work, struct aoedev, work);
b21faa25
EC
893 struct block_device *bd;
894 u64 ssize;
3ae1c24e
EC
895
896 if (d->flags & DEVFL_GDALLOC)
897 aoeblk_gdalloc(d);
898
899 if (d->flags & DEVFL_NEWSIZE) {
80795aef 900 ssize = get_capacity(d->gd);
3ae1c24e 901 bd = bdget_disk(d->gd, 0);
3ae1c24e 902 if (bd) {
5955102c 903 inode_lock(bd->bd_inode);
3ae1c24e 904 i_size_write(bd->bd_inode, (loff_t)ssize<<9);
5955102c 905 inode_unlock(bd->bd_inode);
3ae1c24e
EC
906 bdput(bd);
907 }
b21faa25 908 spin_lock_irq(&d->lock);
3ae1c24e
EC
909 d->flags |= DEVFL_UP;
910 d->flags &= ~DEVFL_NEWSIZE;
b21faa25 911 spin_unlock_irq(&d->lock);
3ae1c24e
EC
912 }
913}
914
667be1e7
EC
915static void
916ata_ident_fixstring(u16 *id, int ns)
917{
918 u16 s;
919
920 while (ns-- > 0) {
921 s = *id;
922 *id++ = s >> 8 | s << 8;
923 }
924}
925
1da177e4 926static void
68e0d42f 927ataid_complete(struct aoedev *d, struct aoetgt *t, unsigned char *id)
1da177e4
LT
928{
929 u64 ssize;
930 u16 n;
931
932 /* word 83: command set supported */
f885f8d1 933 n = get_unaligned_le16(&id[83 << 1]);
1da177e4
LT
934
935 /* word 86: command set/feature enabled */
f885f8d1 936 n |= get_unaligned_le16(&id[86 << 1]);
1da177e4
LT
937
938 if (n & (1<<10)) { /* bit 10: LBA 48 */
939 d->flags |= DEVFL_EXT;
940
941 /* word 100: number lba48 sectors */
f885f8d1 942 ssize = get_unaligned_le64(&id[100 << 1]);
1da177e4
LT
943
944 /* set as in ide-disk.c:init_idedisk_capacity */
945 d->geo.cylinders = ssize;
946 d->geo.cylinders /= (255 * 63);
947 d->geo.heads = 255;
948 d->geo.sectors = 63;
949 } else {
950 d->flags &= ~DEVFL_EXT;
951
952 /* number lba28 sectors */
f885f8d1 953 ssize = get_unaligned_le32(&id[60 << 1]);
1da177e4
LT
954
955 /* NOTE: obsolete in ATA 6 */
f885f8d1
HH
956 d->geo.cylinders = get_unaligned_le16(&id[54 << 1]);
957 d->geo.heads = get_unaligned_le16(&id[55 << 1]);
958 d->geo.sectors = get_unaligned_le16(&id[56 << 1]);
1da177e4 959 }
3ae1c24e 960
667be1e7
EC
961 ata_ident_fixstring((u16 *) &id[10<<1], 10); /* serial */
962 ata_ident_fixstring((u16 *) &id[23<<1], 4); /* firmware */
963 ata_ident_fixstring((u16 *) &id[27<<1], 20); /* model */
964 memcpy(d->ident, id, sizeof(d->ident));
965
3ae1c24e 966 if (d->ssize != ssize)
1d75981a 967 printk(KERN_INFO
411c41ee
HH
968 "aoe: %pm e%ld.%d v%04x has %llu sectors\n",
969 t->addr,
3ae1c24e
EC
970 d->aoemajor, d->aoeminor,
971 d->fw_ver, (long long)ssize);
1da177e4
LT
972 d->ssize = ssize;
973 d->geo.start = 0;
6b9699bb
EC
974 if (d->flags & (DEVFL_GDALLOC|DEVFL_NEWSIZE))
975 return;
1da177e4 976 if (d->gd != NULL) {
80795aef 977 set_capacity(d->gd, ssize);
3ae1c24e 978 d->flags |= DEVFL_NEWSIZE;
68e0d42f 979 } else
3ae1c24e 980 d->flags |= DEVFL_GDALLOC;
1da177e4 981 schedule_work(&d->work);
1da177e4
LT
982}
983
984static void
3a0c40d2 985calc_rttavg(struct aoedev *d, struct aoetgt *t, int rtt)
1da177e4
LT
986{
987 register long n;
988
989 n = rtt;
3a0c40d2
EC
990
991 /* cf. Congestion Avoidance and Control, Jacobson & Karels, 1988 */
992 n -= d->rttavg >> RTTSCALE;
993 d->rttavg += n;
994 if (n < 0)
995 n = -n;
996 n -= d->rttdev >> RTTDSCALE;
997 d->rttdev += n;
998
999 if (!t || t->maxout >= t->nframes)
1000 return;
1001 if (t->maxout < t->ssthresh)
1002 t->maxout += 1;
1003 else if (t->nout == t->maxout && t->next_cwnd-- == 0) {
1004 t->maxout += 1;
1005 t->next_cwnd = t->maxout;
1006 }
1da177e4
LT
1007}
1008
68e0d42f
EC
1009static struct aoetgt *
1010gettgt(struct aoedev *d, char *addr)
1011{
1012 struct aoetgt **t, **e;
1013
1014 t = d->targets;
71114ec4 1015 e = t + d->ntargets;
68e0d42f
EC
1016 for (; t < e && *t; t++)
1017 if (memcmp((*t)->addr, addr, sizeof((*t)->addr)) == 0)
1018 return *t;
1019 return NULL;
1020}
1021
3d5b0605 1022static void
feb261e2 1023bvcpy(struct sk_buff *skb, struct bio *bio, struct bvec_iter iter, long cnt)
3d5b0605 1024{
3d5b0605 1025 int soff = 0;
feb261e2
KO
1026 struct bio_vec bv;
1027
1028 iter.bi_size = cnt;
1029
1030 __bio_for_each_segment(bv, bio, iter, iter) {
ad180f6f 1031 char *p = kmap_atomic(bv.bv_page) + bv.bv_offset;
feb261e2 1032 skb_copy_bits(skb, soff, p, bv.bv_len);
ad180f6f 1033 kunmap_atomic(p);
feb261e2
KO
1034 soff += bv.bv_len;
1035 }
3d5b0605
EC
1036}
1037
69cf2d85
EC
1038void
1039aoe_end_request(struct aoedev *d, struct request *rq, int fastfail)
1040{
1041 struct bio *bio;
1042 int bok;
1043 struct request_queue *q;
3582dd29 1044 blk_status_t err = BLK_STS_OK;
69cf2d85
EC
1045
1046 q = d->blkq;
1047 if (rq == d->ip.rq)
1048 d->ip.rq = NULL;
1049 do {
1050 bio = rq->bio;
4e4cbee9 1051 bok = !fastfail && !bio->bi_status;
3582dd29
JA
1052 if (!bok)
1053 err = BLK_STS_IOERR;
1054 } while (blk_update_request(rq, bok ? BLK_STS_OK : BLK_STS_IOERR, bio->bi_iter.bi_size));
1055
1056 __blk_mq_end_request(rq, err);
69cf2d85
EC
1057
1058 /* cf. http://lkml.org/lkml/2006/10/31/28 */
1059 if (!fastfail)
3582dd29 1060 blk_mq_run_hw_queues(q, true);
69cf2d85
EC
1061}
1062
1063static void
1064aoe_end_buf(struct aoedev *d, struct buf *buf)
1065{
61e7712e
CH
1066 struct request *rq = buf->rq;
1067 struct aoe_req *req = blk_mq_rq_to_pdu(rq);
69cf2d85
EC
1068
1069 if (buf == d->ip.buf)
1070 d->ip.buf = NULL;
69cf2d85 1071 mempool_free(buf, d->bufpool);
61e7712e 1072 if (--req->nr_bios == 0)
69cf2d85
EC
1073 aoe_end_request(d, rq, 0);
1074}
1075
3d5b0605 1076static void
896831f5 1077ktiocomplete(struct frame *f)
3d5b0605 1078{
896831f5
EC
1079 struct aoe_hdr *hin, *hout;
1080 struct aoe_atahdr *ahin, *ahout;
1081 struct buf *buf;
1082 struct sk_buff *skb;
1083 struct aoetgt *t;
1084 struct aoeif *ifp;
1085 struct aoedev *d;
1086 long n;
bbb44e30 1087 int untainted;
3d5b0605 1088
896831f5 1089 if (f == NULL)
3d5b0605 1090 return;
896831f5
EC
1091
1092 t = f->t;
1093 d = t->d;
bbb44e30
EC
1094 skb = f->r_skb;
1095 buf = f->buf;
1096 if (f->flags & FFL_PROBE)
1097 goto out;
1098 if (!skb) /* just fail the buf. */
1099 goto noskb;
896831f5
EC
1100
1101 hout = (struct aoe_hdr *) skb_mac_header(f->skb);
1102 ahout = (struct aoe_atahdr *) (hout+1);
896831f5
EC
1103
1104 hin = (struct aoe_hdr *) skb->data;
1105 skb_pull(skb, sizeof(*hin));
1106 ahin = (struct aoe_atahdr *) skb->data;
1107 skb_pull(skb, sizeof(*ahin));
1108 if (ahin->cmdstat & 0xa9) { /* these bits cleared on success */
1109 pr_err("aoe: ata error cmd=%2.2Xh stat=%2.2Xh from e%ld.%d\n",
1110 ahout->cmdstat, ahin->cmdstat,
1111 d->aoemajor, d->aoeminor);
a04b41cd 1112noskb: if (buf)
4e4cbee9 1113 buf->bio->bi_status = BLK_STS_IOERR;
bbb44e30 1114 goto out;
3d5b0605 1115 }
896831f5
EC
1116
1117 n = ahout->scnt << 9;
1118 switch (ahout->cmdstat) {
1119 case ATA_CMD_PIO_READ:
1120 case ATA_CMD_PIO_READ_EXT:
1121 if (skb->len < n) {
bf29754a
EC
1122 pr_err("%s e%ld.%d. skb->len=%d need=%ld\n",
1123 "aoe: runt data size in read from",
1124 (long) d->aoemajor, d->aoeminor,
1125 skb->len, n);
4e4cbee9 1126 buf->bio->bi_status = BLK_STS_IOERR;
896831f5
EC
1127 break;
1128 }
feb261e2
KO
1129 if (n > f->iter.bi_size) {
1130 pr_err_ratelimited("%s e%ld.%d. bytes=%ld need=%u\n",
1131 "aoe: too-large data size in read from",
1132 (long) d->aoemajor, d->aoeminor,
1133 n, f->iter.bi_size);
4e4cbee9 1134 buf->bio->bi_status = BLK_STS_IOERR;
feb261e2
KO
1135 break;
1136 }
1137 bvcpy(skb, f->buf->bio, f->iter, n);
df561f66 1138 fallthrough;
896831f5
EC
1139 case ATA_CMD_PIO_WRITE:
1140 case ATA_CMD_PIO_WRITE_EXT:
1141 spin_lock_irq(&d->lock);
1142 ifp = getif(t, skb->dev);
3f0f0133 1143 if (ifp)
896831f5 1144 ifp->lost = 0;
896831f5
EC
1145 spin_unlock_irq(&d->lock);
1146 break;
1147 case ATA_CMD_ID_ATA:
1148 if (skb->len < 512) {
bf29754a
EC
1149 pr_info("%s e%ld.%d. skb->len=%d need=512\n",
1150 "aoe: runt data size in ataid from",
1151 (long) d->aoemajor, d->aoeminor,
896831f5
EC
1152 skb->len);
1153 break;
1154 }
1155 if (skb_linearize(skb))
1156 break;
1157 spin_lock_irq(&d->lock);
1158 ataid_complete(d, t, skb->data);
1159 spin_unlock_irq(&d->lock);
1160 break;
1161 default:
1162 pr_info("aoe: unrecognized ata command %2.2Xh for %d.%d\n",
1163 ahout->cmdstat,
1164 be16_to_cpu(get_unaligned(&hin->major)),
1165 hin->minor);
1166 }
bbb44e30 1167out:
896831f5 1168 spin_lock_irq(&d->lock);
bbb44e30
EC
1169 if (t->taint > 0
1170 && --t->taint > 0
1171 && t->nout_probes == 0) {
1172 count_targets(d, &untainted);
1173 if (untainted > 0) {
1174 probe(t);
1175 t->nout_probes++;
1176 }
1177 }
896831f5
EC
1178
1179 aoe_freetframe(f);
1180
feb261e2 1181 if (buf && --buf->nframesout == 0 && buf->iter.bi_size == 0)
69cf2d85 1182 aoe_end_buf(d, buf);
896831f5 1183
69cf2d85
EC
1184 spin_unlock_irq(&d->lock);
1185 aoedev_put(d);
896831f5 1186 dev_kfree_skb(skb);
3d5b0605
EC
1187}
1188
896831f5
EC
1189/* Enters with iocq.lock held.
1190 * Returns true iff responses needing processing remain.
1191 */
1192static int
8030d343 1193ktio(int id)
896831f5
EC
1194{
1195 struct frame *f;
1196 struct list_head *pos;
1197 int i;
8030d343 1198 int actual_id;
896831f5
EC
1199
1200 for (i = 0; ; ++i) {
1201 if (i == MAXIOC)
1202 return 1;
8030d343 1203 if (list_empty(&iocq[id].head))
896831f5 1204 return 0;
8030d343 1205 pos = iocq[id].head.next;
896831f5 1206 list_del(pos);
896831f5 1207 f = list_entry(pos, struct frame, head);
8030d343 1208 spin_unlock_irq(&iocq[id].lock);
896831f5 1209 ktiocomplete(f);
8030d343
EC
1210
1211 /* Figure out if extra threads are required. */
1212 actual_id = f->t->d->aoeminor % ncpus;
1213
1214 if (!kts[actual_id].active) {
1215 BUG_ON(id != 0);
1216 mutex_lock(&ktio_spawn_lock);
1217 if (!kts[actual_id].active
1218 && aoe_ktstart(&kts[actual_id]) == 0)
1219 kts[actual_id].active = 1;
1220 mutex_unlock(&ktio_spawn_lock);
1221 }
1222 spin_lock_irq(&iocq[id].lock);
896831f5
EC
1223 }
1224}
1225
1226static int
1227kthread(void *vp)
1228{
1229 struct ktstate *k;
1230 DECLARE_WAITQUEUE(wait, current);
1231 int more;
1232
1233 k = vp;
1234 current->flags |= PF_NOFREEZE;
1235 set_user_nice(current, -10);
1236 complete(&k->rendez); /* tell spawner we're running */
1237 do {
1238 spin_lock_irq(k->lock);
8030d343 1239 more = k->fn(k->id);
896831f5
EC
1240 if (!more) {
1241 add_wait_queue(k->waitq, &wait);
1242 __set_current_state(TASK_INTERRUPTIBLE);
1243 }
1244 spin_unlock_irq(k->lock);
1245 if (!more) {
1246 schedule();
1247 remove_wait_queue(k->waitq, &wait);
1248 } else
1249 cond_resched();
1250 } while (!kthread_should_stop());
1251 complete(&k->rendez); /* tell spawner we're stopping */
1252 return 0;
1253}
1254
eb086ec5 1255void
896831f5
EC
1256aoe_ktstop(struct ktstate *k)
1257{
1258 kthread_stop(k->task);
1259 wait_for_completion(&k->rendez);
1260}
1261
eb086ec5 1262int
896831f5
EC
1263aoe_ktstart(struct ktstate *k)
1264{
1265 struct task_struct *task;
1266
1267 init_completion(&k->rendez);
f170168b 1268 task = kthread_run(kthread, k, "%s", k->name);
896831f5
EC
1269 if (task == NULL || IS_ERR(task))
1270 return -ENOMEM;
1271 k->task = task;
1272 wait_for_completion(&k->rendez); /* allow kthread to start */
1273 init_completion(&k->rendez); /* for waiting for exit later */
1274 return 0;
1275}
1276
1277/* pass it off to kthreads for processing */
1278static void
1279ktcomplete(struct frame *f, struct sk_buff *skb)
1280{
8030d343 1281 int id;
896831f5
EC
1282 ulong flags;
1283
1284 f->r_skb = skb;
8030d343
EC
1285 id = f->t->d->aoeminor % ncpus;
1286 spin_lock_irqsave(&iocq[id].lock, flags);
1287 if (!kts[id].active) {
1288 spin_unlock_irqrestore(&iocq[id].lock, flags);
1289 /* The thread with id has not been spawned yet,
1290 * so delegate the work to the main thread and
1291 * try spawning a new thread.
1292 */
1293 id = 0;
1294 spin_lock_irqsave(&iocq[id].lock, flags);
1295 }
1296 list_add_tail(&f->head, &iocq[id].head);
1297 spin_unlock_irqrestore(&iocq[id].lock, flags);
1298 wake_up(&ktiowq[id]);
896831f5
EC
1299}
1300
1301struct sk_buff *
1da177e4
LT
1302aoecmd_ata_rsp(struct sk_buff *skb)
1303{
1304 struct aoedev *d;
896831f5 1305 struct aoe_hdr *h;
1da177e4 1306 struct frame *f;
896831f5 1307 u32 n;
1da177e4
LT
1308 ulong flags;
1309 char ebuf[128];
32465c65 1310 u16 aoemajor;
1311
896831f5
EC
1312 h = (struct aoe_hdr *) skb->data;
1313 aoemajor = be16_to_cpu(get_unaligned(&h->major));
0c966214 1314 d = aoedev_by_aoeaddr(aoemajor, h->minor, 0);
1da177e4
LT
1315 if (d == NULL) {
1316 snprintf(ebuf, sizeof ebuf, "aoecmd_ata_rsp: ata response "
1317 "for unknown device %d.%d\n",
896831f5 1318 aoemajor, h->minor);
1da177e4 1319 aoechr_error(ebuf);
896831f5 1320 return skb;
1da177e4
LT
1321 }
1322
1323 spin_lock_irqsave(&d->lock, flags);
1324
896831f5 1325 n = be32_to_cpu(get_unaligned(&h->tag));
64a80f5a 1326 f = getframe(d, n);
3a0c40d2 1327 if (f) {
5f0c9c48 1328 calc_rttavg(d, f->t, tsince_hr(f));
3a0c40d2 1329 f->t->nout--;
bbb44e30
EC
1330 if (f->flags & FFL_PROBE)
1331 f->t->nout_probes--;
3a0c40d2
EC
1332 } else {
1333 f = getframe_deferred(d, n);
1334 if (f) {
5f0c9c48 1335 calc_rttavg(d, NULL, tsince_hr(f));
3a0c40d2
EC
1336 } else {
1337 calc_rttavg(d, NULL, tsince(n));
1338 spin_unlock_irqrestore(&d->lock, flags);
1339 aoedev_put(d);
1340 snprintf(ebuf, sizeof(ebuf),
2292a7e1 1341 "%15s e%d.%d tag=%08x@%08lx s=%pm d=%pm\n",
3a0c40d2
EC
1342 "unexpected rsp",
1343 get_unaligned_be16(&h->major),
1344 h->minor,
1345 get_unaligned_be32(&h->tag),
2292a7e1
EC
1346 jiffies,
1347 h->src,
1348 h->dst);
3a0c40d2
EC
1349 aoechr_error(ebuf);
1350 return skb;
1351 }
1da177e4 1352 }
1da177e4 1353 aoecmd_work(d);
1da177e4
LT
1354
1355 spin_unlock_irqrestore(&d->lock, flags);
896831f5
EC
1356
1357 ktcomplete(f, skb);
1358
1359 /*
1360 * Note here that we do not perform an aoedev_put, as we are
1361 * leaving this reference for the ktio to release.
1362 */
1363 return NULL;
1da177e4
LT
1364}
1365
1366void
1367aoecmd_cfg(ushort aoemajor, unsigned char aoeminor)
1368{
e9bb8fb0 1369 struct sk_buff_head queue;
1da177e4 1370
e9bb8fb0
DM
1371 __skb_queue_head_init(&queue);
1372 aoecmd_cfg_pkts(aoemajor, aoeminor, &queue);
1373 aoenet_xmit(&queue);
1da177e4 1374}
a04b41cd 1375
68e0d42f 1376struct sk_buff *
1da177e4
LT
1377aoecmd_ata_id(struct aoedev *d)
1378{
1379 struct aoe_hdr *h;
1380 struct aoe_atahdr *ah;
1381 struct frame *f;
1382 struct sk_buff *skb;
68e0d42f 1383 struct aoetgt *t;
1da177e4 1384
896831f5 1385 f = newframe(d);
68e0d42f 1386 if (f == NULL)
1da177e4 1387 return NULL;
68e0d42f
EC
1388
1389 t = *d->tgt;
1da177e4
LT
1390
1391 /* initialize the headers & frame */
e407a7f6 1392 skb = f->skb;
abdbf94d 1393 h = (struct aoe_hdr *) skb_mac_header(skb);
1da177e4 1394 ah = (struct aoe_atahdr *) (h+1);
19900cde
EC
1395 skb_put(skb, sizeof *h + sizeof *ah);
1396 memset(h, 0, skb->len);
68e0d42f 1397 f->tag = aoehdr_atainit(d, t, h);
896831f5 1398 fhash(f);
68e0d42f 1399 t->nout++;
1da177e4 1400 f->waited = 0;
3fc9b032 1401 f->waited_total = 0;
1da177e4 1402
1da177e4
LT
1403 /* set up ata header */
1404 ah->scnt = 1;
04b3ab52 1405 ah->cmdstat = ATA_CMD_ID_ATA;
1da177e4
LT
1406 ah->lba3 = 0xa0;
1407
68e0d42f 1408 skb->dev = t->ifp->nd;
1da177e4 1409
3a0c40d2
EC
1410 d->rttavg = RTTAVG_INIT;
1411 d->rttdev = RTTDEV_INIT;
841b86f3 1412 d->timer.function = rexmit_timer;
1da177e4 1413
5f0c9c48 1414 skb = skb_clone(skb, GFP_ATOMIC);
85cf955d
TR
1415 if (skb)
1416 f->sent = ktime_get();
5f0c9c48
EC
1417
1418 return skb;
1da177e4 1419}
a04b41cd 1420
71114ec4
EC
1421static struct aoetgt **
1422grow_targets(struct aoedev *d)
1423{
1424 ulong oldn, newn;
1425 struct aoetgt **tt;
1426
1427 oldn = d->ntargets;
1428 newn = oldn * 2;
1429 tt = kcalloc(newn, sizeof(*d->targets), GFP_ATOMIC);
1430 if (!tt)
1431 return NULL;
1432 memmove(tt, d->targets, sizeof(*d->targets) * oldn);
1433 d->tgt = tt + (d->tgt - d->targets);
1434 kfree(d->targets);
1435 d->targets = tt;
1436 d->ntargets = newn;
1437
1438 return &d->targets[oldn];
1439}
1440
68e0d42f
EC
1441static struct aoetgt *
1442addtgt(struct aoedev *d, char *addr, ulong nframes)
1443{
1444 struct aoetgt *t, **tt, **te;
68e0d42f
EC
1445
1446 tt = d->targets;
71114ec4 1447 te = tt + d->ntargets;
68e0d42f
EC
1448 for (; tt < te && *tt; tt++)
1449 ;
1450
578c4aa0 1451 if (tt == te) {
71114ec4
EC
1452 tt = grow_targets(d);
1453 if (!tt)
1454 goto nomem;
578c4aa0 1455 }
896831f5 1456 t = kzalloc(sizeof(*t), GFP_ATOMIC);
71114ec4
EC
1457 if (!t)
1458 goto nomem;
68e0d42f 1459 t->nframes = nframes;
896831f5 1460 t->d = d;
68e0d42f
EC
1461 memcpy(t->addr, addr, sizeof t->addr);
1462 t->ifp = t->ifs;
3a0c40d2 1463 aoecmd_wreset(t);
bbb44e30 1464 t->maxout = t->nframes / 2;
896831f5 1465 INIT_LIST_HEAD(&t->ffree);
68e0d42f 1466 return *tt = t;
71114ec4
EC
1467
1468 nomem:
1469 pr_info("aoe: cannot allocate memory to add target\n");
1470 return NULL;
68e0d42f
EC
1471}
1472
3f0f0133
EC
1473static void
1474setdbcnt(struct aoedev *d)
1475{
1476 struct aoetgt **t, **e;
1477 int bcnt = 0;
1478
1479 t = d->targets;
71114ec4 1480 e = t + d->ntargets;
3f0f0133
EC
1481 for (; t < e && *t; t++)
1482 if (bcnt == 0 || bcnt > (*t)->minbcnt)
1483 bcnt = (*t)->minbcnt;
1484 if (bcnt != d->maxbcnt) {
1485 d->maxbcnt = bcnt;
1486 pr_info("aoe: e%ld.%d: setting %d byte data frames\n",
1487 d->aoemajor, d->aoeminor, bcnt);
1488 }
1489}
1490
1491static void
1492setifbcnt(struct aoetgt *t, struct net_device *nd, int bcnt)
1493{
1494 struct aoedev *d;
1495 struct aoeif *p, *e;
1496 int minbcnt;
1497
1498 d = t->d;
1499 minbcnt = bcnt;
1500 p = t->ifs;
1501 e = p + NAOEIFS;
1502 for (; p < e; p++) {
1503 if (p->nd == NULL)
1504 break; /* end of the valid interfaces */
1505 if (p->nd == nd) {
1506 p->bcnt = bcnt; /* we're updating */
1507 nd = NULL;
1508 } else if (minbcnt > p->bcnt)
1509 minbcnt = p->bcnt; /* find the min interface */
1510 }
1511 if (nd) {
1512 if (p == e) {
1513 pr_err("aoe: device setifbcnt failure; too many interfaces.\n");
1514 return;
1515 }
1b86fda9 1516 dev_hold(nd);
3f0f0133
EC
1517 p->nd = nd;
1518 p->bcnt = bcnt;
1519 }
1520 t->minbcnt = minbcnt;
1521 setdbcnt(d);
1522}
1523
1da177e4
LT
1524void
1525aoecmd_cfg_rsp(struct sk_buff *skb)
1526{
1527 struct aoedev *d;
1528 struct aoe_hdr *h;
1529 struct aoe_cfghdr *ch;
68e0d42f 1530 struct aoetgt *t;
0c966214 1531 ulong flags, aoemajor;
1da177e4 1532 struct sk_buff *sl;
69cf2d85 1533 struct sk_buff_head queue;
19bf2635 1534 u16 n;
1da177e4 1535
69cf2d85 1536 sl = NULL;
abdbf94d 1537 h = (struct aoe_hdr *) skb_mac_header(skb);
1da177e4
LT
1538 ch = (struct aoe_cfghdr *) (h+1);
1539
1540 /*
1541 * Enough people have their dip switches set backwards to
1542 * warrant a loud message for this special case.
1543 */
823ed72e 1544 aoemajor = get_unaligned_be16(&h->major);
1da177e4 1545 if (aoemajor == 0xfff) {
a12c93f0 1546 printk(KERN_ERR "aoe: Warning: shelf address is all ones. "
6bb6285f 1547 "Check shelf dip switches.\n");
1da177e4
LT
1548 return;
1549 }
7159e969
EC
1550 if (aoemajor == 0xffff) {
1551 pr_info("aoe: e%ld.%d: broadcast shelf number invalid\n",
0c966214 1552 aoemajor, (int) h->minor);
6583303c
EC
1553 return;
1554 }
7159e969
EC
1555 if (h->minor == 0xff) {
1556 pr_info("aoe: e%ld.%d: broadcast slot number invalid\n",
1557 aoemajor, (int) h->minor);
1da177e4
LT
1558 return;
1559 }
1560
19bf2635 1561 n = be16_to_cpu(ch->bufcnt);
7df620d8
EC
1562 if (n > aoe_maxout) /* keep it reasonable */
1563 n = aoe_maxout;
1da177e4 1564
7159e969
EC
1565 d = aoedev_by_aoeaddr(aoemajor, h->minor, 1);
1566 if (d == NULL) {
1567 pr_info("aoe: device allocation failure\n");
1568 return;
1569 }
1570
1da177e4
LT
1571 spin_lock_irqsave(&d->lock, flags);
1572
68e0d42f 1573 t = gettgt(d, h->src);
1b8a1636
EC
1574 if (t) {
1575 t->nframes = n;
1576 if (n < t->maxout)
3a0c40d2 1577 aoecmd_wreset(t);
1b8a1636 1578 } else {
68e0d42f 1579 t = addtgt(d, h->src, n);
69cf2d85
EC
1580 if (!t)
1581 goto bail;
68e0d42f 1582 }
3f0f0133
EC
1583 n = skb->dev->mtu;
1584 n -= sizeof(struct aoe_hdr) + sizeof(struct aoe_atahdr);
1585 n /= 512;
1586 if (n > ch->scnt)
1587 n = ch->scnt;
1588 n = n ? n * 512 : DEFAULTBCNT;
1589 setifbcnt(t, skb->dev, n);
3ae1c24e
EC
1590
1591 /* don't change users' perspective */
69cf2d85
EC
1592 if (d->nopen == 0) {
1593 d->fw_ver = be16_to_cpu(ch->fwver);
1594 sl = aoecmd_ata_id(d);
1da177e4 1595 }
69cf2d85 1596bail:
1da177e4 1597 spin_unlock_irqrestore(&d->lock, flags);
69cf2d85 1598 aoedev_put(d);
e9bb8fb0 1599 if (sl) {
e9bb8fb0
DM
1600 __skb_queue_head_init(&queue);
1601 __skb_queue_tail(&queue, sl);
1602 aoenet_xmit(&queue);
1603 }
1da177e4
LT
1604}
1605
3a0c40d2
EC
1606void
1607aoecmd_wreset(struct aoetgt *t)
1608{
1609 t->maxout = 1;
1610 t->ssthresh = t->nframes / 2;
1611 t->next_cwnd = t->nframes;
1612}
1613
68e0d42f
EC
1614void
1615aoecmd_cleanslate(struct aoedev *d)
1616{
1617 struct aoetgt **t, **te;
68e0d42f 1618
3a0c40d2
EC
1619 d->rttavg = RTTAVG_INIT;
1620 d->rttdev = RTTDEV_INIT;
3f0f0133 1621 d->maxbcnt = 0;
68e0d42f
EC
1622
1623 t = d->targets;
71114ec4 1624 te = t + d->ntargets;
3f0f0133 1625 for (; t < te && *t; t++)
3a0c40d2 1626 aoecmd_wreset(*t);
68e0d42f 1627}
896831f5 1628
69cf2d85
EC
1629void
1630aoe_failbuf(struct aoedev *d, struct buf *buf)
1631{
1632 if (buf == NULL)
1633 return;
feb261e2 1634 buf->iter.bi_size = 0;
4e4cbee9 1635 buf->bio->bi_status = BLK_STS_IOERR;
69cf2d85
EC
1636 if (buf->nframesout == 0)
1637 aoe_end_buf(d, buf);
1638}
1639
1640void
1641aoe_flush_iocq(void)
8030d343
EC
1642{
1643 int i;
1644
1645 for (i = 0; i < ncpus; i++) {
1646 if (kts[i].active)
1647 aoe_flush_iocq_by_index(i);
1648 }
1649}
1650
1651void
1652aoe_flush_iocq_by_index(int id)
896831f5
EC
1653{
1654 struct frame *f;
1655 struct aoedev *d;
1656 LIST_HEAD(flist);
1657 struct list_head *pos;
1658 struct sk_buff *skb;
1659 ulong flags;
1660
8030d343
EC
1661 spin_lock_irqsave(&iocq[id].lock, flags);
1662 list_splice_init(&iocq[id].head, &flist);
1663 spin_unlock_irqrestore(&iocq[id].lock, flags);
896831f5
EC
1664 while (!list_empty(&flist)) {
1665 pos = flist.next;
1666 list_del(pos);
1667 f = list_entry(pos, struct frame, head);
1668 d = f->t->d;
1669 skb = f->r_skb;
1670 spin_lock_irqsave(&d->lock, flags);
1671 if (f->buf) {
1672 f->buf->nframesout--;
1673 aoe_failbuf(d, f->buf);
1674 }
1675 aoe_freetframe(f);
1676 spin_unlock_irqrestore(&d->lock, flags);
1677 dev_kfree_skb(skb);
69cf2d85 1678 aoedev_put(d);
896831f5
EC
1679 }
1680}
1681
1682int __init
1683aoecmd_init(void)
1684{
bbb44e30 1685 void *p;
8030d343
EC
1686 int i;
1687 int ret;
bbb44e30
EC
1688
1689 /* get_zeroed_page returns page with ref count 1 */
32d6bd90 1690 p = (void *) get_zeroed_page(GFP_KERNEL);
bbb44e30
EC
1691 if (!p)
1692 return -ENOMEM;
1693 empty_page = virt_to_page(p);
1694
8030d343
EC
1695 ncpus = num_online_cpus();
1696
1697 iocq = kcalloc(ncpus, sizeof(struct iocq_ktio), GFP_KERNEL);
1698 if (!iocq)
1699 return -ENOMEM;
1700
1701 kts = kcalloc(ncpus, sizeof(struct ktstate), GFP_KERNEL);
1702 if (!kts) {
1703 ret = -ENOMEM;
1704 goto kts_fail;
1705 }
1706
1707 ktiowq = kcalloc(ncpus, sizeof(wait_queue_head_t), GFP_KERNEL);
1708 if (!ktiowq) {
1709 ret = -ENOMEM;
1710 goto ktiowq_fail;
1711 }
1712
1713 mutex_init(&ktio_spawn_lock);
1714
1715 for (i = 0; i < ncpus; i++) {
1716 INIT_LIST_HEAD(&iocq[i].head);
1717 spin_lock_init(&iocq[i].lock);
1718 init_waitqueue_head(&ktiowq[i]);
1719 snprintf(kts[i].name, sizeof(kts[i].name), "aoe_ktio%d", i);
1720 kts[i].fn = ktio;
1721 kts[i].waitq = &ktiowq[i];
1722 kts[i].lock = &iocq[i].lock;
1723 kts[i].id = i;
1724 kts[i].active = 0;
1725 }
1726 kts[0].active = 1;
1727 if (aoe_ktstart(&kts[0])) {
1728 ret = -ENOMEM;
1729 goto ktstart_fail;
1730 }
1731 return 0;
1732
1733ktstart_fail:
1734 kfree(ktiowq);
1735ktiowq_fail:
1736 kfree(kts);
1737kts_fail:
1738 kfree(iocq);
1739
1740 return ret;
896831f5
EC
1741}
1742
1743void
1744aoecmd_exit(void)
1745{
8030d343
EC
1746 int i;
1747
1748 for (i = 0; i < ncpus; i++)
1749 if (kts[i].active)
1750 aoe_ktstop(&kts[i]);
1751
69cf2d85 1752 aoe_flush_iocq();
bbb44e30 1753
8030d343
EC
1754 /* Free up the iocq and thread speicific configuration
1755 * allocated during startup.
1756 */
1757 kfree(iocq);
1758 kfree(kts);
1759 kfree(ktiowq);
1760
bbb44e30
EC
1761 free_page((unsigned long) page_address(empty_page));
1762 empty_page = NULL;
896831f5 1763}