aoe: use bio->bi_idx
[linux-2.6/sactl.git] / drivers / block / aoe / aoecmd.c
blob2d0bcdd96698d3c60bda0122754abdba650df637
1 /* Copyright (c) 2006 Coraid, Inc. See COPYING for GPL terms. */
2 /*
3 * aoecmd.c
4 * Filesystem request handling methods
5 */
7 #include <linux/hdreg.h>
8 #include <linux/blkdev.h>
9 #include <linux/skbuff.h>
10 #include <linux/netdevice.h>
11 #include <linux/genhd.h>
12 #include <asm/unaligned.h>
13 #include "aoe.h"
15 #define TIMERTICK (HZ / 10)
16 #define MINTIMER (2 * TIMERTICK)
17 #define MAXTIMER (HZ << 1)
19 static int aoe_deadsecs = 60 * 3;
20 module_param(aoe_deadsecs, int, 0644);
21 MODULE_PARM_DESC(aoe_deadsecs, "After aoe_deadsecs seconds, give up and fail dev.");
23 struct sk_buff *
24 new_skb(ulong len)
26 struct sk_buff *skb;
28 skb = alloc_skb(len, GFP_ATOMIC);
29 if (skb) {
30 skb->nh.raw = skb->mac.raw = skb->data;
31 skb->protocol = __constant_htons(ETH_P_AOE);
32 skb->priority = 0;
33 skb_put(skb, len);
34 memset(skb->head, 0, len);
35 skb->next = skb->prev = NULL;
37 /* tell the network layer not to perform IP checksums
38 * or to get the NIC to do it
40 skb->ip_summed = CHECKSUM_NONE;
42 return skb;
45 static struct frame *
46 getframe(struct aoedev *d, int tag)
48 struct frame *f, *e;
50 f = d->frames;
51 e = f + d->nframes;
52 for (; f<e; f++)
53 if (f->tag == tag)
54 return f;
55 return NULL;
59 * Leave the top bit clear so we have tagspace for userland.
60 * The bottom 16 bits are the xmit tick for rexmit/rttavg processing.
61 * This driver reserves tag -1 to mean "unused frame."
63 static int
64 newtag(struct aoedev *d)
66 register ulong n;
68 n = jiffies & 0xffff;
69 return n |= (++d->lasttag & 0x7fff) << 16;
72 static int
73 aoehdr_atainit(struct aoedev *d, struct aoe_hdr *h)
75 u32 host_tag = newtag(d);
77 memcpy(h->src, d->ifp->dev_addr, sizeof h->src);
78 memcpy(h->dst, d->addr, sizeof h->dst);
79 h->type = __constant_cpu_to_be16(ETH_P_AOE);
80 h->verfl = AOE_HVER;
81 h->major = cpu_to_be16(d->aoemajor);
82 h->minor = d->aoeminor;
83 h->cmd = AOECMD_ATA;
84 h->tag = cpu_to_be32(host_tag);
86 return host_tag;
89 static inline void
90 put_lba(struct aoe_atahdr *ah, sector_t lba)
92 ah->lba0 = lba;
93 ah->lba1 = lba >>= 8;
94 ah->lba2 = lba >>= 8;
95 ah->lba3 = lba >>= 8;
96 ah->lba4 = lba >>= 8;
97 ah->lba5 = lba >>= 8;
100 static void
101 aoecmd_ata_rw(struct aoedev *d, struct frame *f)
103 struct aoe_hdr *h;
104 struct aoe_atahdr *ah;
105 struct buf *buf;
106 struct sk_buff *skb;
107 ulong bcnt;
108 register sector_t sector;
109 char writebit, extbit;
111 writebit = 0x10;
112 extbit = 0x4;
114 buf = d->inprocess;
116 sector = buf->sector;
117 bcnt = buf->bv_resid;
118 if (bcnt > d->maxbcnt)
119 bcnt = d->maxbcnt;
121 /* initialize the headers & frame */
122 skb = f->skb;
123 h = (struct aoe_hdr *) skb->mac.raw;
124 ah = (struct aoe_atahdr *) (h+1);
125 skb->len = sizeof *h + sizeof *ah;
126 memset(h, 0, ETH_ZLEN);
127 f->tag = aoehdr_atainit(d, h);
128 f->waited = 0;
129 f->buf = buf;
130 f->bufaddr = buf->bufaddr;
131 f->bcnt = bcnt;
132 f->lba = sector;
134 /* set up ata header */
135 ah->scnt = bcnt >> 9;
136 put_lba(ah, sector);
137 if (d->flags & DEVFL_EXT) {
138 ah->aflags |= AOEAFL_EXT;
139 } else {
140 extbit = 0;
141 ah->lba3 &= 0x0f;
142 ah->lba3 |= 0xe0; /* LBA bit + obsolete 0xa0 */
145 if (bio_data_dir(buf->bio) == WRITE) {
146 skb_fill_page_desc(skb, 0, virt_to_page(f->bufaddr),
147 offset_in_page(f->bufaddr), bcnt);
148 ah->aflags |= AOEAFL_WRITE;
149 skb->len += bcnt;
150 skb->data_len = bcnt;
151 } else {
152 skb->len = ETH_ZLEN;
153 writebit = 0;
156 ah->cmdstat = WIN_READ | writebit | extbit;
158 /* mark all tracking fields and load out */
159 buf->nframesout += 1;
160 buf->bufaddr += bcnt;
161 buf->bv_resid -= bcnt;
162 /* dprintk("bv_resid=%ld\n", buf->bv_resid); */
163 buf->resid -= bcnt;
164 buf->sector += bcnt >> 9;
165 if (buf->resid == 0) {
166 d->inprocess = NULL;
167 } else if (buf->bv_resid == 0) {
168 buf->bv++;
169 WARN_ON(buf->bv->bv_len == 0);
170 buf->bv_resid = buf->bv->bv_len;
171 buf->bufaddr = page_address(buf->bv->bv_page) + buf->bv->bv_offset;
174 skb->dev = d->ifp;
175 skb = skb_clone(skb, GFP_ATOMIC);
176 if (skb == NULL)
177 return;
178 if (d->sendq_hd)
179 d->sendq_tl->next = skb;
180 else
181 d->sendq_hd = skb;
182 d->sendq_tl = skb;
185 /* some callers cannot sleep, and they can call this function,
186 * transmitting the packets later, when interrupts are on
188 static struct sk_buff *
189 aoecmd_cfg_pkts(ushort aoemajor, unsigned char aoeminor, struct sk_buff **tail)
191 struct aoe_hdr *h;
192 struct aoe_cfghdr *ch;
193 struct sk_buff *skb, *sl, *sl_tail;
194 struct net_device *ifp;
196 sl = sl_tail = NULL;
198 read_lock(&dev_base_lock);
199 for (ifp = dev_base; ifp; dev_put(ifp), ifp = ifp->next) {
200 dev_hold(ifp);
201 if (!is_aoe_netif(ifp))
202 continue;
204 skb = new_skb(sizeof *h + sizeof *ch);
205 if (skb == NULL) {
206 iprintk("skb alloc failure\n");
207 continue;
209 skb->dev = ifp;
210 if (sl_tail == NULL)
211 sl_tail = skb;
212 h = (struct aoe_hdr *) skb->mac.raw;
213 memset(h, 0, sizeof *h + sizeof *ch);
215 memset(h->dst, 0xff, sizeof h->dst);
216 memcpy(h->src, ifp->dev_addr, sizeof h->src);
217 h->type = __constant_cpu_to_be16(ETH_P_AOE);
218 h->verfl = AOE_HVER;
219 h->major = cpu_to_be16(aoemajor);
220 h->minor = aoeminor;
221 h->cmd = AOECMD_CFG;
223 skb->next = sl;
224 sl = skb;
226 read_unlock(&dev_base_lock);
228 if (tail != NULL)
229 *tail = sl_tail;
230 return sl;
233 static struct frame *
234 freeframe(struct aoedev *d)
236 struct frame *f, *e;
237 int n = 0;
239 f = d->frames;
240 e = f + d->nframes;
241 for (; f<e; f++) {
242 if (f->tag != FREETAG)
243 continue;
244 if (atomic_read(&skb_shinfo(f->skb)->dataref) == 1) {
245 skb_shinfo(f->skb)->nr_frags = f->skb->data_len = 0;
246 return f;
248 n++;
250 if (n == d->nframes) /* wait for network layer */
251 d->flags |= DEVFL_KICKME;
253 return NULL;
256 /* enters with d->lock held */
257 void
258 aoecmd_work(struct aoedev *d)
260 struct frame *f;
261 struct buf *buf;
263 if (d->flags & DEVFL_PAUSE) {
264 if (!aoedev_isbusy(d))
265 d->sendq_hd = aoecmd_cfg_pkts(d->aoemajor,
266 d->aoeminor, &d->sendq_tl);
267 return;
270 loop:
271 f = freeframe(d);
272 if (f == NULL)
273 return;
274 if (d->inprocess == NULL) {
275 if (list_empty(&d->bufq))
276 return;
277 buf = container_of(d->bufq.next, struct buf, bufs);
278 list_del(d->bufq.next);
279 /*dprintk("bi_size=%ld\n", buf->bio->bi_size); */
280 d->inprocess = buf;
282 aoecmd_ata_rw(d, f);
283 goto loop;
286 static void
287 rexmit(struct aoedev *d, struct frame *f)
289 struct sk_buff *skb;
290 struct aoe_hdr *h;
291 struct aoe_atahdr *ah;
292 char buf[128];
293 u32 n;
295 n = newtag(d);
297 snprintf(buf, sizeof buf,
298 "%15s e%ld.%ld oldtag=%08x@%08lx newtag=%08x\n",
299 "retransmit",
300 d->aoemajor, d->aoeminor, f->tag, jiffies, n);
301 aoechr_error(buf);
303 skb = f->skb;
304 h = (struct aoe_hdr *) skb->mac.raw;
305 ah = (struct aoe_atahdr *) (h+1);
306 f->tag = n;
307 h->tag = cpu_to_be32(n);
308 memcpy(h->dst, d->addr, sizeof h->dst);
309 memcpy(h->src, d->ifp->dev_addr, sizeof h->src);
311 n = DEFAULTBCNT / 512;
312 if (ah->scnt > n) {
313 ah->scnt = n;
314 if (ah->aflags & AOEAFL_WRITE) {
315 skb_fill_page_desc(skb, 0, virt_to_page(f->bufaddr),
316 offset_in_page(f->bufaddr), DEFAULTBCNT);
317 skb->len = sizeof *h + sizeof *ah + DEFAULTBCNT;
318 skb->data_len = DEFAULTBCNT;
320 if (++d->lostjumbo > (d->nframes << 1))
321 if (d->maxbcnt != DEFAULTBCNT) {
322 iprintk("e%ld.%ld: too many lost jumbo on %s - using 1KB frames.\n",
323 d->aoemajor, d->aoeminor, d->ifp->name);
324 d->maxbcnt = DEFAULTBCNT;
325 d->flags |= DEVFL_MAXBCNT;
329 skb->dev = d->ifp;
330 skb = skb_clone(skb, GFP_ATOMIC);
331 if (skb == NULL)
332 return;
333 if (d->sendq_hd)
334 d->sendq_tl->next = skb;
335 else
336 d->sendq_hd = skb;
337 d->sendq_tl = skb;
340 static int
341 tsince(int tag)
343 int n;
345 n = jiffies & 0xffff;
346 n -= tag & 0xffff;
347 if (n < 0)
348 n += 1<<16;
349 return n;
352 static void
353 rexmit_timer(ulong vp)
355 struct aoedev *d;
356 struct frame *f, *e;
357 struct sk_buff *sl;
358 register long timeout;
359 ulong flags, n;
361 d = (struct aoedev *) vp;
362 sl = NULL;
364 /* timeout is always ~150% of the moving average */
365 timeout = d->rttavg;
366 timeout += timeout >> 1;
368 spin_lock_irqsave(&d->lock, flags);
370 if (d->flags & DEVFL_TKILL) {
371 spin_unlock_irqrestore(&d->lock, flags);
372 return;
374 f = d->frames;
375 e = f + d->nframes;
376 for (; f<e; f++) {
377 if (f->tag != FREETAG && tsince(f->tag) >= timeout) {
378 n = f->waited += timeout;
379 n /= HZ;
380 if (n > aoe_deadsecs) { /* waited too long for response */
381 aoedev_downdev(d);
382 break;
384 rexmit(d, f);
387 if (d->flags & DEVFL_KICKME) {
388 d->flags &= ~DEVFL_KICKME;
389 aoecmd_work(d);
392 sl = d->sendq_hd;
393 d->sendq_hd = d->sendq_tl = NULL;
394 if (sl) {
395 n = d->rttavg <<= 1;
396 if (n > MAXTIMER)
397 d->rttavg = MAXTIMER;
400 d->timer.expires = jiffies + TIMERTICK;
401 add_timer(&d->timer);
403 spin_unlock_irqrestore(&d->lock, flags);
405 aoenet_xmit(sl);
408 /* this function performs work that has been deferred until sleeping is OK
410 void
411 aoecmd_sleepwork(void *vp)
413 struct aoedev *d = (struct aoedev *) vp;
415 if (d->flags & DEVFL_GDALLOC)
416 aoeblk_gdalloc(d);
418 if (d->flags & DEVFL_NEWSIZE) {
419 struct block_device *bd;
420 unsigned long flags;
421 u64 ssize;
423 ssize = d->gd->capacity;
424 bd = bdget_disk(d->gd, 0);
426 if (bd) {
427 mutex_lock(&bd->bd_inode->i_mutex);
428 i_size_write(bd->bd_inode, (loff_t)ssize<<9);
429 mutex_unlock(&bd->bd_inode->i_mutex);
430 bdput(bd);
432 spin_lock_irqsave(&d->lock, flags);
433 d->flags |= DEVFL_UP;
434 d->flags &= ~DEVFL_NEWSIZE;
435 spin_unlock_irqrestore(&d->lock, flags);
439 static void
440 ataid_complete(struct aoedev *d, unsigned char *id)
442 u64 ssize;
443 u16 n;
445 /* word 83: command set supported */
446 n = le16_to_cpu(get_unaligned((__le16 *) &id[83<<1]));
448 /* word 86: command set/feature enabled */
449 n |= le16_to_cpu(get_unaligned((__le16 *) &id[86<<1]));
451 if (n & (1<<10)) { /* bit 10: LBA 48 */
452 d->flags |= DEVFL_EXT;
454 /* word 100: number lba48 sectors */
455 ssize = le64_to_cpu(get_unaligned((__le64 *) &id[100<<1]));
457 /* set as in ide-disk.c:init_idedisk_capacity */
458 d->geo.cylinders = ssize;
459 d->geo.cylinders /= (255 * 63);
460 d->geo.heads = 255;
461 d->geo.sectors = 63;
462 } else {
463 d->flags &= ~DEVFL_EXT;
465 /* number lba28 sectors */
466 ssize = le32_to_cpu(get_unaligned((__le32 *) &id[60<<1]));
468 /* NOTE: obsolete in ATA 6 */
469 d->geo.cylinders = le16_to_cpu(get_unaligned((__le16 *) &id[54<<1]));
470 d->geo.heads = le16_to_cpu(get_unaligned((__le16 *) &id[55<<1]));
471 d->geo.sectors = le16_to_cpu(get_unaligned((__le16 *) &id[56<<1]));
474 if (d->ssize != ssize)
475 iprintk("%012llx e%lu.%lu v%04x has %llu sectors\n",
476 (unsigned long long)mac_addr(d->addr),
477 d->aoemajor, d->aoeminor,
478 d->fw_ver, (long long)ssize);
479 d->ssize = ssize;
480 d->geo.start = 0;
481 if (d->gd != NULL) {
482 d->gd->capacity = ssize;
483 d->flags |= DEVFL_NEWSIZE;
484 } else {
485 if (d->flags & DEVFL_GDALLOC) {
486 eprintk("can't schedule work for e%lu.%lu, %s\n",
487 d->aoemajor, d->aoeminor,
488 "it's already on! This shouldn't happen.\n");
489 return;
491 d->flags |= DEVFL_GDALLOC;
493 schedule_work(&d->work);
496 static void
497 calc_rttavg(struct aoedev *d, int rtt)
499 register long n;
501 n = rtt;
502 if (n < 0) {
503 n = -rtt;
504 if (n < MINTIMER)
505 n = MINTIMER;
506 else if (n > MAXTIMER)
507 n = MAXTIMER;
508 d->mintimer += (n - d->mintimer) >> 1;
509 } else if (n < d->mintimer)
510 n = d->mintimer;
511 else if (n > MAXTIMER)
512 n = MAXTIMER;
514 /* g == .25; cf. Congestion Avoidance and Control, Jacobson & Karels; 1988 */
515 n -= d->rttavg;
516 d->rttavg += n >> 2;
519 void
520 aoecmd_ata_rsp(struct sk_buff *skb)
522 struct aoedev *d;
523 struct aoe_hdr *hin, *hout;
524 struct aoe_atahdr *ahin, *ahout;
525 struct frame *f;
526 struct buf *buf;
527 struct sk_buff *sl;
528 register long n;
529 ulong flags;
530 char ebuf[128];
531 u16 aoemajor;
533 hin = (struct aoe_hdr *) skb->mac.raw;
534 aoemajor = be16_to_cpu(hin->major);
535 d = aoedev_by_aoeaddr(aoemajor, hin->minor);
536 if (d == NULL) {
537 snprintf(ebuf, sizeof ebuf, "aoecmd_ata_rsp: ata response "
538 "for unknown device %d.%d\n",
539 aoemajor, hin->minor);
540 aoechr_error(ebuf);
541 return;
544 spin_lock_irqsave(&d->lock, flags);
546 n = be32_to_cpu(hin->tag);
547 f = getframe(d, n);
548 if (f == NULL) {
549 calc_rttavg(d, -tsince(n));
550 spin_unlock_irqrestore(&d->lock, flags);
551 snprintf(ebuf, sizeof ebuf,
552 "%15s e%d.%d tag=%08x@%08lx\n",
553 "unexpected rsp",
554 be16_to_cpu(hin->major),
555 hin->minor,
556 be32_to_cpu(hin->tag),
557 jiffies);
558 aoechr_error(ebuf);
559 return;
562 calc_rttavg(d, tsince(f->tag));
564 ahin = (struct aoe_atahdr *) (hin+1);
565 hout = (struct aoe_hdr *) f->skb->mac.raw;
566 ahout = (struct aoe_atahdr *) (hout+1);
567 buf = f->buf;
569 if (ahout->cmdstat == WIN_IDENTIFY)
570 d->flags &= ~DEVFL_PAUSE;
571 if (ahin->cmdstat & 0xa9) { /* these bits cleared on success */
572 eprintk("ata error cmd=%2.2Xh stat=%2.2Xh from e%ld.%ld\n",
573 ahout->cmdstat, ahin->cmdstat,
574 d->aoemajor, d->aoeminor);
575 if (buf)
576 buf->flags |= BUFFL_FAIL;
577 } else {
578 n = ahout->scnt << 9;
579 switch (ahout->cmdstat) {
580 case WIN_READ:
581 case WIN_READ_EXT:
582 if (skb->len - sizeof *hin - sizeof *ahin < n) {
583 eprintk("runt data size in read. skb->len=%d\n",
584 skb->len);
585 /* fail frame f? just returning will rexmit. */
586 spin_unlock_irqrestore(&d->lock, flags);
587 return;
589 memcpy(f->bufaddr, ahin+1, n);
590 case WIN_WRITE:
591 case WIN_WRITE_EXT:
592 if (f->bcnt -= n) {
593 skb = f->skb;
594 f->bufaddr += n;
595 put_lba(ahout, f->lba += ahout->scnt);
596 n = f->bcnt;
597 if (n > DEFAULTBCNT)
598 n = DEFAULTBCNT;
599 ahout->scnt = n >> 9;
600 if (ahout->aflags & AOEAFL_WRITE) {
601 skb_fill_page_desc(skb, 0,
602 virt_to_page(f->bufaddr),
603 offset_in_page(f->bufaddr), n);
604 skb->len = sizeof *hout + sizeof *ahout + n;
605 skb->data_len = n;
607 f->tag = newtag(d);
608 hout->tag = cpu_to_be32(f->tag);
609 skb->dev = d->ifp;
610 skb = skb_clone(skb, GFP_ATOMIC);
611 spin_unlock_irqrestore(&d->lock, flags);
612 if (skb)
613 aoenet_xmit(skb);
614 return;
616 if (n > DEFAULTBCNT)
617 d->lostjumbo = 0;
618 break;
619 case WIN_IDENTIFY:
620 if (skb->len - sizeof *hin - sizeof *ahin < 512) {
621 iprintk("runt data size in ataid. skb->len=%d\n",
622 skb->len);
623 spin_unlock_irqrestore(&d->lock, flags);
624 return;
626 ataid_complete(d, (char *) (ahin+1));
627 break;
628 default:
629 iprintk("unrecognized ata command %2.2Xh for %d.%d\n",
630 ahout->cmdstat,
631 be16_to_cpu(hin->major),
632 hin->minor);
636 if (buf) {
637 buf->nframesout -= 1;
638 if (buf->nframesout == 0 && buf->resid == 0) {
639 unsigned long duration = jiffies - buf->start_time;
640 unsigned long n_sect = buf->bio->bi_size >> 9;
641 struct gendisk *disk = d->gd;
642 const int rw = bio_data_dir(buf->bio);
644 disk_stat_inc(disk, ios[rw]);
645 disk_stat_add(disk, ticks[rw], duration);
646 disk_stat_add(disk, sectors[rw], n_sect);
647 disk_stat_add(disk, io_ticks, duration);
648 n = (buf->flags & BUFFL_FAIL) ? -EIO : 0;
649 bio_endio(buf->bio, buf->bio->bi_size, n);
650 mempool_free(buf, d->bufpool);
654 f->buf = NULL;
655 f->tag = FREETAG;
657 aoecmd_work(d);
658 sl = d->sendq_hd;
659 d->sendq_hd = d->sendq_tl = NULL;
661 spin_unlock_irqrestore(&d->lock, flags);
662 aoenet_xmit(sl);
665 void
666 aoecmd_cfg(ushort aoemajor, unsigned char aoeminor)
668 struct sk_buff *sl;
670 sl = aoecmd_cfg_pkts(aoemajor, aoeminor, NULL);
672 aoenet_xmit(sl);
676 * Since we only call this in one place (and it only prepares one frame)
677 * we just return the skb. Usually we'd chain it up to the aoedev sendq.
679 static struct sk_buff *
680 aoecmd_ata_id(struct aoedev *d)
682 struct aoe_hdr *h;
683 struct aoe_atahdr *ah;
684 struct frame *f;
685 struct sk_buff *skb;
687 f = freeframe(d);
688 if (f == NULL) {
689 eprintk("can't get a frame. This shouldn't happen.\n");
690 return NULL;
693 /* initialize the headers & frame */
694 skb = f->skb;
695 h = (struct aoe_hdr *) skb->mac.raw;
696 ah = (struct aoe_atahdr *) (h+1);
697 skb->len = ETH_ZLEN;
698 memset(h, 0, ETH_ZLEN);
699 f->tag = aoehdr_atainit(d, h);
700 f->waited = 0;
702 /* set up ata header */
703 ah->scnt = 1;
704 ah->cmdstat = WIN_IDENTIFY;
705 ah->lba3 = 0xa0;
707 skb->dev = d->ifp;
709 d->rttavg = MAXTIMER;
710 d->timer.function = rexmit_timer;
712 return skb_clone(skb, GFP_ATOMIC);
715 void
716 aoecmd_cfg_rsp(struct sk_buff *skb)
718 struct aoedev *d;
719 struct aoe_hdr *h;
720 struct aoe_cfghdr *ch;
721 ulong flags, sysminor, aoemajor;
722 struct sk_buff *sl;
723 enum { MAXFRAMES = 16 };
724 u16 n;
726 h = (struct aoe_hdr *) skb->mac.raw;
727 ch = (struct aoe_cfghdr *) (h+1);
730 * Enough people have their dip switches set backwards to
731 * warrant a loud message for this special case.
733 aoemajor = be16_to_cpu(h->major);
734 if (aoemajor == 0xfff) {
735 eprintk("Warning: shelf address is all ones. "
736 "Check shelf dip switches.\n");
737 return;
740 sysminor = SYSMINOR(aoemajor, h->minor);
741 if (sysminor * AOE_PARTITIONS + AOE_PARTITIONS > MINORMASK) {
742 iprintk("e%ld.%d: minor number too large\n",
743 aoemajor, (int) h->minor);
744 return;
747 n = be16_to_cpu(ch->bufcnt);
748 if (n > MAXFRAMES) /* keep it reasonable */
749 n = MAXFRAMES;
751 d = aoedev_by_sysminor_m(sysminor, n);
752 if (d == NULL) {
753 iprintk("device sysminor_m failure\n");
754 return;
757 spin_lock_irqsave(&d->lock, flags);
759 /* permit device to migrate mac and network interface */
760 d->ifp = skb->dev;
761 memcpy(d->addr, h->src, sizeof d->addr);
762 if (!(d->flags & DEVFL_MAXBCNT)) {
763 n = d->ifp->mtu;
764 n -= sizeof (struct aoe_hdr) + sizeof (struct aoe_atahdr);
765 n /= 512;
766 if (n > ch->scnt)
767 n = ch->scnt;
768 n = n ? n * 512 : DEFAULTBCNT;
769 if (n != d->maxbcnt) {
770 iprintk("e%ld.%ld: setting %d byte data frames on %s\n",
771 d->aoemajor, d->aoeminor, n, d->ifp->name);
772 d->maxbcnt = n;
776 /* don't change users' perspective */
777 if (d->nopen && !(d->flags & DEVFL_PAUSE)) {
778 spin_unlock_irqrestore(&d->lock, flags);
779 return;
781 d->flags |= DEVFL_PAUSE; /* force pause */
782 d->mintimer = MINTIMER;
783 d->fw_ver = be16_to_cpu(ch->fwver);
785 /* check for already outstanding ataid */
786 sl = aoedev_isbusy(d) == 0 ? aoecmd_ata_id(d) : NULL;
788 spin_unlock_irqrestore(&d->lock, flags);
790 aoenet_xmit(sl);