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