xref: /openbmc/linux/drivers/block/aoe/aoecmd.c (revision 3582dd291788e9441c3ba9047e55089edb98da5c)
1ca47bbd9SEd Cashin /* Copyright (c) 2013 Coraid, Inc.  See COPYING for GPL terms. */
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  * aoecmd.c
41da177e4SLinus Torvalds  * Filesystem request handling methods
51da177e4SLinus Torvalds  */
61da177e4SLinus Torvalds 
704b3ab52SBartlomiej Zolnierkiewicz #include <linux/ata.h>
85a0e3ad6STejun Heo #include <linux/slab.h>
91da177e4SLinus Torvalds #include <linux/hdreg.h>
10*3582dd29SJens Axboe #include <linux/blk-mq.h>
111da177e4SLinus Torvalds #include <linux/skbuff.h>
121da177e4SLinus Torvalds #include <linux/netdevice.h>
133ae1c24eSEd L. Cashin #include <linux/genhd.h>
1468e0d42fSEd L. Cashin #include <linux/moduleparam.h>
15896831f5SEd Cashin #include <linux/workqueue.h>
16896831f5SEd Cashin #include <linux/kthread.h>
17881d966bSEric W. Biederman #include <net/net_namespace.h>
18475172fbSEd L. Cashin #include <asm/unaligned.h>
19896831f5SEd Cashin #include <linux/uio.h>
201da177e4SLinus Torvalds #include "aoe.h"
211da177e4SLinus Torvalds 
22896831f5SEd Cashin #define MAXIOC (8192)	/* default meant to avoid most soft lockups */
23896831f5SEd Cashin 
24896831f5SEd Cashin static void ktcomplete(struct frame *, struct sk_buff *);
25bbb44e30SEd Cashin static int count_targets(struct aoedev *d, int *untainted);
26896831f5SEd Cashin 
2769cf2d85SEd Cashin static struct buf *nextbuf(struct aoedev *);
2869cf2d85SEd Cashin 
29b751e8b6SEd L. Cashin static int aoe_deadsecs = 60 * 3;
30b751e8b6SEd L. Cashin module_param(aoe_deadsecs, int, 0644);
31b751e8b6SEd L. Cashin MODULE_PARM_DESC(aoe_deadsecs, "After aoe_deadsecs seconds, give up and fail dev.");
321da177e4SLinus Torvalds 
337b6ccc5fSEd Cashin static int aoe_maxout = 64;
347df620d8SEd L. Cashin module_param(aoe_maxout, int, 0644);
357df620d8SEd L. Cashin MODULE_PARM_DESC(aoe_maxout,
367df620d8SEd L. Cashin 	"Only aoe_maxout outstanding packets for every MAC on eX.Y.");
377df620d8SEd L. Cashin 
388030d343SEd Cashin /* The number of online cpus during module initialization gives us a
398030d343SEd Cashin  * convenient heuristic cap on the parallelism used for ktio threads
408030d343SEd Cashin  * doing I/O completion.  It is not important that the cap equal the
418030d343SEd Cashin  * actual number of running CPUs at any given time, but because of CPU
428030d343SEd Cashin  * hotplug, we take care to use ncpus instead of using
438030d343SEd Cashin  * num_online_cpus() after module initialization.
448030d343SEd Cashin  */
458030d343SEd Cashin static int ncpus;
468030d343SEd Cashin 
478030d343SEd Cashin /* mutex lock used for synchronization while thread spawning */
488030d343SEd Cashin static DEFINE_MUTEX(ktio_spawn_lock);
498030d343SEd Cashin 
508030d343SEd Cashin static wait_queue_head_t *ktiowq;
518030d343SEd Cashin static struct ktstate *kts;
52896831f5SEd Cashin 
53896831f5SEd Cashin /* io completion queue */
548030d343SEd Cashin struct iocq_ktio {
55896831f5SEd Cashin 	struct list_head head;
56896831f5SEd Cashin 	spinlock_t lock;
578030d343SEd Cashin };
588030d343SEd Cashin static struct iocq_ktio *iocq;
59896831f5SEd Cashin 
60bbb44e30SEd Cashin static struct page *empty_page;
61bbb44e30SEd Cashin 
6268e0d42fSEd L. Cashin static struct sk_buff *
63e407a7f6SEd L. Cashin new_skb(ulong len)
641da177e4SLinus Torvalds {
651da177e4SLinus Torvalds 	struct sk_buff *skb;
661da177e4SLinus Torvalds 
6791c57464SEric Dumazet 	skb = alloc_skb(len + MAX_HEADER, GFP_ATOMIC);
681da177e4SLinus Torvalds 	if (skb) {
6991c57464SEric Dumazet 		skb_reserve(skb, MAX_HEADER);
70459a98edSArnaldo Carvalho de Melo 		skb_reset_mac_header(skb);
71c1d2bbe1SArnaldo Carvalho de Melo 		skb_reset_network_header(skb);
721da177e4SLinus Torvalds 		skb->protocol = __constant_htons(ETH_P_AOE);
738babe8ccSEd Cashin 		skb_checksum_none_assert(skb);
741da177e4SLinus Torvalds 	}
751da177e4SLinus Torvalds 	return skb;
761da177e4SLinus Torvalds }
771da177e4SLinus Torvalds 
781da177e4SLinus Torvalds static struct frame *
793a0c40d2SEd Cashin getframe_deferred(struct aoedev *d, u32 tag)
803a0c40d2SEd Cashin {
813a0c40d2SEd Cashin 	struct list_head *head, *pos, *nx;
823a0c40d2SEd Cashin 	struct frame *f;
833a0c40d2SEd Cashin 
843a0c40d2SEd Cashin 	head = &d->rexmitq;
853a0c40d2SEd Cashin 	list_for_each_safe(pos, nx, head) {
863a0c40d2SEd Cashin 		f = list_entry(pos, struct frame, head);
873a0c40d2SEd Cashin 		if (f->tag == tag) {
883a0c40d2SEd Cashin 			list_del(pos);
893a0c40d2SEd Cashin 			return f;
903a0c40d2SEd Cashin 		}
913a0c40d2SEd Cashin 	}
923a0c40d2SEd Cashin 	return NULL;
933a0c40d2SEd Cashin }
943a0c40d2SEd Cashin 
953a0c40d2SEd Cashin static struct frame *
9664a80f5aSEd Cashin getframe(struct aoedev *d, u32 tag)
971da177e4SLinus Torvalds {
98896831f5SEd Cashin 	struct frame *f;
99896831f5SEd Cashin 	struct list_head *head, *pos, *nx;
100896831f5SEd Cashin 	u32 n;
1011da177e4SLinus Torvalds 
102896831f5SEd Cashin 	n = tag % NFACTIVE;
10364a80f5aSEd Cashin 	head = &d->factive[n];
104896831f5SEd Cashin 	list_for_each_safe(pos, nx, head) {
105896831f5SEd Cashin 		f = list_entry(pos, struct frame, head);
106896831f5SEd Cashin 		if (f->tag == tag) {
107896831f5SEd Cashin 			list_del(pos);
1081da177e4SLinus Torvalds 			return f;
109896831f5SEd Cashin 		}
110896831f5SEd Cashin 	}
1111da177e4SLinus Torvalds 	return NULL;
1121da177e4SLinus Torvalds }
1131da177e4SLinus Torvalds 
1141da177e4SLinus Torvalds /*
1151da177e4SLinus Torvalds  * Leave the top bit clear so we have tagspace for userland.
1161da177e4SLinus Torvalds  * The bottom 16 bits are the xmit tick for rexmit/rttavg processing.
1171da177e4SLinus Torvalds  * This driver reserves tag -1 to mean "unused frame."
1181da177e4SLinus Torvalds  */
1191da177e4SLinus Torvalds static int
12064a80f5aSEd Cashin newtag(struct aoedev *d)
1211da177e4SLinus Torvalds {
1221da177e4SLinus Torvalds 	register ulong n;
1231da177e4SLinus Torvalds 
1241da177e4SLinus Torvalds 	n = jiffies & 0xffff;
12564a80f5aSEd Cashin 	return n |= (++d->lasttag & 0x7fff) << 16;
1261da177e4SLinus Torvalds }
1271da177e4SLinus Torvalds 
128896831f5SEd Cashin static u32
12968e0d42fSEd L. Cashin aoehdr_atainit(struct aoedev *d, struct aoetgt *t, struct aoe_hdr *h)
1301da177e4SLinus Torvalds {
13164a80f5aSEd Cashin 	u32 host_tag = newtag(d);
1321da177e4SLinus Torvalds 
13368e0d42fSEd L. Cashin 	memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src);
13468e0d42fSEd L. Cashin 	memcpy(h->dst, t->addr, sizeof h->dst);
13563e9cc5dSecashin@coraid.com 	h->type = __constant_cpu_to_be16(ETH_P_AOE);
1361da177e4SLinus Torvalds 	h->verfl = AOE_HVER;
13763e9cc5dSecashin@coraid.com 	h->major = cpu_to_be16(d->aoemajor);
1381da177e4SLinus Torvalds 	h->minor = d->aoeminor;
1391da177e4SLinus Torvalds 	h->cmd = AOECMD_ATA;
14063e9cc5dSecashin@coraid.com 	h->tag = cpu_to_be32(host_tag);
1411da177e4SLinus Torvalds 
1421da177e4SLinus Torvalds 	return host_tag;
1431da177e4SLinus Torvalds }
1441da177e4SLinus Torvalds 
14519bf2635SEd L. Cashin static inline void
14619bf2635SEd L. Cashin put_lba(struct aoe_atahdr *ah, sector_t lba)
14719bf2635SEd L. Cashin {
14819bf2635SEd L. Cashin 	ah->lba0 = lba;
14919bf2635SEd L. Cashin 	ah->lba1 = lba >>= 8;
15019bf2635SEd L. Cashin 	ah->lba2 = lba >>= 8;
15119bf2635SEd L. Cashin 	ah->lba3 = lba >>= 8;
15219bf2635SEd L. Cashin 	ah->lba4 = lba >>= 8;
15319bf2635SEd L. Cashin 	ah->lba5 = lba >>= 8;
15419bf2635SEd L. Cashin }
15519bf2635SEd L. Cashin 
1563f0f0133SEd Cashin static struct aoeif *
15768e0d42fSEd L. Cashin ifrotate(struct aoetgt *t)
1581da177e4SLinus Torvalds {
1593f0f0133SEd Cashin 	struct aoeif *ifp;
1603f0f0133SEd Cashin 
1613f0f0133SEd Cashin 	ifp = t->ifp;
1623f0f0133SEd Cashin 	ifp++;
1633f0f0133SEd Cashin 	if (ifp >= &t->ifs[NAOEIFS] || ifp->nd == NULL)
1643f0f0133SEd Cashin 		ifp = t->ifs;
1653f0f0133SEd Cashin 	if (ifp->nd == NULL)
1663f0f0133SEd Cashin 		return NULL;
1673f0f0133SEd Cashin 	return t->ifp = ifp;
16868e0d42fSEd L. Cashin }
16968e0d42fSEd L. Cashin 
1709bb237b6SEd L. Cashin static void
1719bb237b6SEd L. Cashin skb_pool_put(struct aoedev *d, struct sk_buff *skb)
1729bb237b6SEd L. Cashin {
173e9bb8fb0SDavid S. Miller 	__skb_queue_tail(&d->skbpool, skb);
1749bb237b6SEd L. Cashin }
1759bb237b6SEd L. Cashin 
1769bb237b6SEd L. Cashin static struct sk_buff *
1779bb237b6SEd L. Cashin skb_pool_get(struct aoedev *d)
1789bb237b6SEd L. Cashin {
179e9bb8fb0SDavid S. Miller 	struct sk_buff *skb = skb_peek(&d->skbpool);
1809bb237b6SEd L. Cashin 
1819bb237b6SEd L. Cashin 	if (skb && atomic_read(&skb_shinfo(skb)->dataref) == 1) {
182e9bb8fb0SDavid S. Miller 		__skb_unlink(skb, &d->skbpool);
1839bb237b6SEd L. Cashin 		return skb;
1849bb237b6SEd L. Cashin 	}
185e9bb8fb0SDavid S. Miller 	if (skb_queue_len(&d->skbpool) < NSKBPOOLMAX &&
186e9bb8fb0SDavid S. Miller 	    (skb = new_skb(ETH_ZLEN)))
1879bb237b6SEd L. Cashin 		return skb;
188e9bb8fb0SDavid S. Miller 
1899bb237b6SEd L. Cashin 	return NULL;
1909bb237b6SEd L. Cashin }
1919bb237b6SEd L. Cashin 
192896831f5SEd Cashin void
193896831f5SEd Cashin aoe_freetframe(struct frame *f)
19468e0d42fSEd L. Cashin {
195896831f5SEd Cashin 	struct aoetgt *t;
196896831f5SEd Cashin 
197896831f5SEd Cashin 	t = f->t;
198896831f5SEd Cashin 	f->buf = NULL;
199feb261e2SKent Overstreet 	memset(&f->iter, 0, sizeof(f->iter));
200896831f5SEd Cashin 	f->r_skb = NULL;
201bbb44e30SEd Cashin 	f->flags = 0;
202896831f5SEd Cashin 	list_add(&f->head, &t->ffree);
203896831f5SEd Cashin }
204896831f5SEd Cashin 
205896831f5SEd Cashin static struct frame *
206896831f5SEd Cashin newtframe(struct aoedev *d, struct aoetgt *t)
207896831f5SEd Cashin {
208896831f5SEd Cashin 	struct frame *f;
2099bb237b6SEd L. Cashin 	struct sk_buff *skb;
210896831f5SEd Cashin 	struct list_head *pos;
211896831f5SEd Cashin 
212896831f5SEd Cashin 	if (list_empty(&t->ffree)) {
213896831f5SEd Cashin 		if (t->falloc >= NSKBPOOLMAX*2)
214896831f5SEd Cashin 			return NULL;
215896831f5SEd Cashin 		f = kcalloc(1, sizeof(*f), GFP_ATOMIC);
216896831f5SEd Cashin 		if (f == NULL)
217896831f5SEd Cashin 			return NULL;
218896831f5SEd Cashin 		t->falloc++;
219896831f5SEd Cashin 		f->t = t;
220896831f5SEd Cashin 	} else {
221896831f5SEd Cashin 		pos = t->ffree.next;
222896831f5SEd Cashin 		list_del(pos);
223896831f5SEd Cashin 		f = list_entry(pos, struct frame, head);
224896831f5SEd Cashin 	}
225896831f5SEd Cashin 
226896831f5SEd Cashin 	skb = f->skb;
227896831f5SEd Cashin 	if (skb == NULL) {
228896831f5SEd Cashin 		f->skb = skb = new_skb(ETH_ZLEN);
229896831f5SEd Cashin 		if (!skb) {
230896831f5SEd Cashin bail:			aoe_freetframe(f);
231896831f5SEd Cashin 			return NULL;
232896831f5SEd Cashin 		}
233896831f5SEd Cashin 	}
234896831f5SEd Cashin 
235896831f5SEd Cashin 	if (atomic_read(&skb_shinfo(skb)->dataref) != 1) {
236896831f5SEd Cashin 		skb = skb_pool_get(d);
237896831f5SEd Cashin 		if (skb == NULL)
238896831f5SEd Cashin 			goto bail;
239896831f5SEd Cashin 		skb_pool_put(d, f->skb);
240896831f5SEd Cashin 		f->skb = skb;
241896831f5SEd Cashin 	}
242896831f5SEd Cashin 
243896831f5SEd Cashin 	skb->truesize -= skb->data_len;
244896831f5SEd Cashin 	skb_shinfo(skb)->nr_frags = skb->data_len = 0;
245896831f5SEd Cashin 	skb_trim(skb, 0);
246896831f5SEd Cashin 	return f;
247896831f5SEd Cashin }
248896831f5SEd Cashin 
249896831f5SEd Cashin static struct frame *
250896831f5SEd Cashin newframe(struct aoedev *d)
251896831f5SEd Cashin {
252896831f5SEd Cashin 	struct frame *f;
253896831f5SEd Cashin 	struct aoetgt *t, **tt;
254896831f5SEd Cashin 	int totout = 0;
255bbb44e30SEd Cashin 	int use_tainted;
256bbb44e30SEd Cashin 	int has_untainted;
25768e0d42fSEd L. Cashin 
25871114ec4SEd Cashin 	if (!d->targets || !d->targets[0]) {
25968e0d42fSEd L. Cashin 		printk(KERN_ERR "aoe: NULL TARGETS!\n");
26068e0d42fSEd L. Cashin 		return NULL;
26168e0d42fSEd L. Cashin 	}
262896831f5SEd Cashin 	tt = d->tgt;	/* last used target */
263bbb44e30SEd Cashin 	for (use_tainted = 0, has_untainted = 0;;) {
264896831f5SEd Cashin 		tt++;
26571114ec4SEd Cashin 		if (tt >= &d->targets[d->ntargets] || !*tt)
266896831f5SEd Cashin 			tt = d->targets;
267896831f5SEd Cashin 		t = *tt;
268bbb44e30SEd Cashin 		if (!t->taint) {
269bbb44e30SEd Cashin 			has_untainted = 1;
270896831f5SEd Cashin 			totout += t->nout;
271bbb44e30SEd Cashin 		}
272896831f5SEd Cashin 		if (t->nout < t->maxout
273bbb44e30SEd Cashin 		&& (use_tainted || !t->taint)
274896831f5SEd Cashin 		&& t->ifp->nd) {
275896831f5SEd Cashin 			f = newtframe(d, t);
276896831f5SEd Cashin 			if (f) {
277896831f5SEd Cashin 				ifrotate(t);
2783f0f0133SEd Cashin 				d->tgt = tt;
27968e0d42fSEd L. Cashin 				return f;
28068e0d42fSEd L. Cashin 			}
2819bb237b6SEd L. Cashin 		}
282bbb44e30SEd Cashin 		if (tt == d->tgt) {	/* we've looped and found nada */
283bbb44e30SEd Cashin 			if (!use_tainted && !has_untainted)
284bbb44e30SEd Cashin 				use_tainted = 1;
285bbb44e30SEd Cashin 			else
2869bb237b6SEd L. Cashin 				break;
287896831f5SEd Cashin 		}
288bbb44e30SEd Cashin 	}
289896831f5SEd Cashin 	if (totout == 0) {
290896831f5SEd Cashin 		d->kicked++;
291896831f5SEd Cashin 		d->flags |= DEVFL_KICKME;
2929bb237b6SEd L. Cashin 	}
29368e0d42fSEd L. Cashin 	return NULL;
29468e0d42fSEd L. Cashin }
29568e0d42fSEd L. Cashin 
2963d5b0605SEd Cashin static void
297feb261e2SKent Overstreet skb_fillup(struct sk_buff *skb, struct bio *bio, struct bvec_iter iter)
2983d5b0605SEd Cashin {
2993d5b0605SEd Cashin 	int frag = 0;
300feb261e2SKent Overstreet 	struct bio_vec bv;
301feb261e2SKent Overstreet 
302feb261e2SKent Overstreet 	__bio_for_each_segment(bv, bio, iter, iter)
303feb261e2SKent Overstreet 		skb_fill_page_desc(skb, frag++, bv.bv_page,
304feb261e2SKent Overstreet 				   bv.bv_offset, bv.bv_len);
3053d5b0605SEd Cashin }
3063d5b0605SEd Cashin 
307896831f5SEd Cashin static void
308896831f5SEd Cashin fhash(struct frame *f)
309896831f5SEd Cashin {
31064a80f5aSEd Cashin 	struct aoedev *d = f->t->d;
311896831f5SEd Cashin 	u32 n;
312896831f5SEd Cashin 
313896831f5SEd Cashin 	n = f->tag % NFACTIVE;
31464a80f5aSEd Cashin 	list_add_tail(&f->head, &d->factive[n]);
315896831f5SEd Cashin }
316896831f5SEd Cashin 
317bbb44e30SEd Cashin static void
318bbb44e30SEd Cashin ata_rw_frameinit(struct frame *f)
319bbb44e30SEd Cashin {
320bbb44e30SEd Cashin 	struct aoetgt *t;
321bbb44e30SEd Cashin 	struct aoe_hdr *h;
322bbb44e30SEd Cashin 	struct aoe_atahdr *ah;
323bbb44e30SEd Cashin 	struct sk_buff *skb;
324bbb44e30SEd Cashin 	char writebit, extbit;
325bbb44e30SEd Cashin 
326bbb44e30SEd Cashin 	skb = f->skb;
327bbb44e30SEd Cashin 	h = (struct aoe_hdr *) skb_mac_header(skb);
328bbb44e30SEd Cashin 	ah = (struct aoe_atahdr *) (h + 1);
329bbb44e30SEd Cashin 	skb_put(skb, sizeof(*h) + sizeof(*ah));
330bbb44e30SEd Cashin 	memset(h, 0, skb->len);
331bbb44e30SEd Cashin 
332bbb44e30SEd Cashin 	writebit = 0x10;
333bbb44e30SEd Cashin 	extbit = 0x4;
334bbb44e30SEd Cashin 
335bbb44e30SEd Cashin 	t = f->t;
336bbb44e30SEd Cashin 	f->tag = aoehdr_atainit(t->d, t, h);
337bbb44e30SEd Cashin 	fhash(f);
338bbb44e30SEd Cashin 	t->nout++;
339bbb44e30SEd Cashin 	f->waited = 0;
340bbb44e30SEd Cashin 	f->waited_total = 0;
341bbb44e30SEd Cashin 
342bbb44e30SEd Cashin 	/* set up ata header */
343feb261e2SKent Overstreet 	ah->scnt = f->iter.bi_size >> 9;
344feb261e2SKent Overstreet 	put_lba(ah, f->iter.bi_sector);
345bbb44e30SEd Cashin 	if (t->d->flags & DEVFL_EXT) {
346bbb44e30SEd Cashin 		ah->aflags |= AOEAFL_EXT;
347bbb44e30SEd Cashin 	} else {
348bbb44e30SEd Cashin 		extbit = 0;
349bbb44e30SEd Cashin 		ah->lba3 &= 0x0f;
350bbb44e30SEd Cashin 		ah->lba3 |= 0xe0;	/* LBA bit + obsolete 0xa0 */
351bbb44e30SEd Cashin 	}
352bbb44e30SEd Cashin 	if (f->buf && bio_data_dir(f->buf->bio) == WRITE) {
353feb261e2SKent Overstreet 		skb_fillup(skb, f->buf->bio, f->iter);
354bbb44e30SEd Cashin 		ah->aflags |= AOEAFL_WRITE;
355feb261e2SKent Overstreet 		skb->len += f->iter.bi_size;
356feb261e2SKent Overstreet 		skb->data_len = f->iter.bi_size;
357feb261e2SKent Overstreet 		skb->truesize += f->iter.bi_size;
358bbb44e30SEd Cashin 		t->wpkts++;
359bbb44e30SEd Cashin 	} else {
360bbb44e30SEd Cashin 		t->rpkts++;
361bbb44e30SEd Cashin 		writebit = 0;
362bbb44e30SEd Cashin 	}
363bbb44e30SEd Cashin 
364bbb44e30SEd Cashin 	ah->cmdstat = ATA_CMD_PIO_READ | writebit | extbit;
365bbb44e30SEd Cashin 	skb->dev = t->ifp->nd;
366bbb44e30SEd Cashin }
367bbb44e30SEd Cashin 
36868e0d42fSEd L. Cashin static int
36968e0d42fSEd L. Cashin aoecmd_ata_rw(struct aoedev *d)
37068e0d42fSEd L. Cashin {
37168e0d42fSEd L. Cashin 	struct frame *f;
3721da177e4SLinus Torvalds 	struct buf *buf;
3731da177e4SLinus Torvalds 	struct sk_buff *skb;
37469cf2d85SEd Cashin 	struct sk_buff_head queue;
3751da177e4SLinus Torvalds 
37669cf2d85SEd Cashin 	buf = nextbuf(d);
37769cf2d85SEd Cashin 	if (buf == NULL)
37869cf2d85SEd Cashin 		return 0;
379896831f5SEd Cashin 	f = newframe(d);
38068e0d42fSEd L. Cashin 	if (f == NULL)
38168e0d42fSEd L. Cashin 		return 0;
3823d5b0605SEd Cashin 
3831da177e4SLinus Torvalds 	/* initialize the headers & frame */
3841da177e4SLinus Torvalds 	f->buf = buf;
385feb261e2SKent Overstreet 	f->iter = buf->iter;
386feb261e2SKent Overstreet 	f->iter.bi_size = min_t(unsigned long,
387feb261e2SKent Overstreet 				d->maxbcnt ?: DEFAULTBCNT,
388feb261e2SKent Overstreet 				f->iter.bi_size);
389feb261e2SKent Overstreet 	bio_advance_iter(buf->bio, &buf->iter, f->iter.bi_size);
390feb261e2SKent Overstreet 
391feb261e2SKent Overstreet 	if (!buf->iter.bi_size)
392feb261e2SKent Overstreet 		d->ip.buf = NULL;
3931da177e4SLinus Torvalds 
3941da177e4SLinus Torvalds 	/* mark all tracking fields and load out */
3951da177e4SLinus Torvalds 	buf->nframesout += 1;
396feb261e2SKent Overstreet 
397feb261e2SKent Overstreet 	ata_rw_frameinit(f);
3981da177e4SLinus Torvalds 
399bbb44e30SEd Cashin 	skb = skb_clone(f->skb, GFP_ATOMIC);
40069cf2d85SEd Cashin 	if (skb) {
40185cf955dSTina Ruchandani 		f->sent = ktime_get();
40269cf2d85SEd Cashin 		__skb_queue_head_init(&queue);
40369cf2d85SEd Cashin 		__skb_queue_tail(&queue, skb);
40469cf2d85SEd Cashin 		aoenet_xmit(&queue);
40569cf2d85SEd Cashin 	}
40668e0d42fSEd L. Cashin 	return 1;
40768e0d42fSEd L. Cashin }
4081da177e4SLinus Torvalds 
4093ae1c24eSEd L. Cashin /* some callers cannot sleep, and they can call this function,
4103ae1c24eSEd L. Cashin  * transmitting the packets later, when interrupts are on
4113ae1c24eSEd L. Cashin  */
412e9bb8fb0SDavid S. Miller static void
413e9bb8fb0SDavid S. Miller aoecmd_cfg_pkts(ushort aoemajor, unsigned char aoeminor, struct sk_buff_head *queue)
4143ae1c24eSEd L. Cashin {
4153ae1c24eSEd L. Cashin 	struct aoe_hdr *h;
4163ae1c24eSEd L. Cashin 	struct aoe_cfghdr *ch;
417e9bb8fb0SDavid S. Miller 	struct sk_buff *skb;
4183ae1c24eSEd L. Cashin 	struct net_device *ifp;
4193ae1c24eSEd L. Cashin 
420840a185dSEric Dumazet 	rcu_read_lock();
421840a185dSEric Dumazet 	for_each_netdev_rcu(&init_net, ifp) {
4223ae1c24eSEd L. Cashin 		dev_hold(ifp);
4233ae1c24eSEd L. Cashin 		if (!is_aoe_netif(ifp))
4247562f876SPavel Emelianov 			goto cont;
4253ae1c24eSEd L. Cashin 
426e407a7f6SEd L. Cashin 		skb = new_skb(sizeof *h + sizeof *ch);
4273ae1c24eSEd L. Cashin 		if (skb == NULL) {
428a12c93f0SEd L. Cashin 			printk(KERN_INFO "aoe: skb alloc failure\n");
4297562f876SPavel Emelianov 			goto cont;
4303ae1c24eSEd L. Cashin 		}
43119900cdeSEd L. Cashin 		skb_put(skb, sizeof *h + sizeof *ch);
432e407a7f6SEd L. Cashin 		skb->dev = ifp;
433e9bb8fb0SDavid S. Miller 		__skb_queue_tail(queue, skb);
434abdbf94dSEd L. Cashin 		h = (struct aoe_hdr *) skb_mac_header(skb);
4353ae1c24eSEd L. Cashin 		memset(h, 0, sizeof *h + sizeof *ch);
4363ae1c24eSEd L. Cashin 
4373ae1c24eSEd L. Cashin 		memset(h->dst, 0xff, sizeof h->dst);
4383ae1c24eSEd L. Cashin 		memcpy(h->src, ifp->dev_addr, sizeof h->src);
4393ae1c24eSEd L. Cashin 		h->type = __constant_cpu_to_be16(ETH_P_AOE);
4403ae1c24eSEd L. Cashin 		h->verfl = AOE_HVER;
4413ae1c24eSEd L. Cashin 		h->major = cpu_to_be16(aoemajor);
4423ae1c24eSEd L. Cashin 		h->minor = aoeminor;
4433ae1c24eSEd L. Cashin 		h->cmd = AOECMD_CFG;
4443ae1c24eSEd L. Cashin 
4457562f876SPavel Emelianov cont:
4467562f876SPavel Emelianov 		dev_put(ifp);
4473ae1c24eSEd L. Cashin 	}
448840a185dSEric Dumazet 	rcu_read_unlock();
4493ae1c24eSEd L. Cashin }
4503ae1c24eSEd L. Cashin 
4511da177e4SLinus Torvalds static void
452896831f5SEd Cashin resend(struct aoedev *d, struct frame *f)
4531da177e4SLinus Torvalds {
4541da177e4SLinus Torvalds 	struct sk_buff *skb;
45569cf2d85SEd Cashin 	struct sk_buff_head queue;
4561da177e4SLinus Torvalds 	struct aoe_hdr *h;
457896831f5SEd Cashin 	struct aoetgt *t;
4581da177e4SLinus Torvalds 	char buf[128];
4591da177e4SLinus Torvalds 	u32 n;
4601da177e4SLinus Torvalds 
461896831f5SEd Cashin 	t = f->t;
46264a80f5aSEd Cashin 	n = newtag(d);
463e407a7f6SEd L. Cashin 	skb = f->skb;
4643f0f0133SEd Cashin 	if (ifrotate(t) == NULL) {
4653f0f0133SEd Cashin 		/* probably can't happen, but set it up to fail anyway */
4663f0f0133SEd Cashin 		pr_info("aoe: resend: no interfaces to rotate to.\n");
4673f0f0133SEd Cashin 		ktcomplete(f, NULL);
4683f0f0133SEd Cashin 		return;
4693f0f0133SEd Cashin 	}
470abdbf94dSEd L. Cashin 	h = (struct aoe_hdr *) skb_mac_header(skb);
47168e0d42fSEd L. Cashin 
472bbb44e30SEd Cashin 	if (!(f->flags & FFL_PROBE)) {
473bbb44e30SEd Cashin 		snprintf(buf, sizeof(buf),
474411c41eeSHarvey Harrison 			"%15s e%ld.%d oldtag=%08x@%08lx newtag=%08x s=%pm d=%pm nout=%d\n",
475bbb44e30SEd Cashin 			"retransmit", d->aoemajor, d->aoeminor,
476bbb44e30SEd Cashin 			f->tag, jiffies, n,
477411c41eeSHarvey Harrison 			h->src, h->dst, t->nout);
47868e0d42fSEd L. Cashin 		aoechr_error(buf);
479bbb44e30SEd Cashin 	}
48068e0d42fSEd L. Cashin 
4811da177e4SLinus Torvalds 	f->tag = n;
482896831f5SEd Cashin 	fhash(f);
48363e9cc5dSecashin@coraid.com 	h->tag = cpu_to_be32(n);
48468e0d42fSEd L. Cashin 	memcpy(h->dst, t->addr, sizeof h->dst);
48568e0d42fSEd L. Cashin 	memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src);
4861da177e4SLinus Torvalds 
48768e0d42fSEd L. Cashin 	skb->dev = t->ifp->nd;
4884f51dc5eSEd L. Cashin 	skb = skb_clone(skb, GFP_ATOMIC);
4894f51dc5eSEd L. Cashin 	if (skb == NULL)
4904f51dc5eSEd L. Cashin 		return;
49185cf955dSTina Ruchandani 	f->sent = ktime_get();
49269cf2d85SEd Cashin 	__skb_queue_head_init(&queue);
49369cf2d85SEd Cashin 	__skb_queue_tail(&queue, skb);
49469cf2d85SEd Cashin 	aoenet_xmit(&queue);
4951da177e4SLinus Torvalds }
4961da177e4SLinus Torvalds 
4971da177e4SLinus Torvalds static int
4985f0c9c48SEd Cashin tsince_hr(struct frame *f)
4995f0c9c48SEd Cashin {
50085cf955dSTina Ruchandani 	u64 delta = ktime_to_ns(ktime_sub(ktime_get(), f->sent));
5015f0c9c48SEd Cashin 
50285cf955dSTina Ruchandani 	/* delta is normally under 4.2 seconds, avoid 64-bit division */
50385cf955dSTina Ruchandani 	if (likely(delta <= UINT_MAX))
50485cf955dSTina Ruchandani 		return (u32)delta / NSEC_PER_USEC;
5055f0c9c48SEd Cashin 
50685cf955dSTina Ruchandani 	/* avoid overflow after 71 minutes */
50785cf955dSTina Ruchandani 	if (delta > ((u64)INT_MAX * NSEC_PER_USEC))
50885cf955dSTina Ruchandani 		return INT_MAX;
5095f0c9c48SEd Cashin 
51085cf955dSTina Ruchandani 	return div_u64(delta, NSEC_PER_USEC);
5115f0c9c48SEd Cashin }
5125f0c9c48SEd Cashin 
5135f0c9c48SEd Cashin static int
514896831f5SEd Cashin tsince(u32 tag)
5151da177e4SLinus Torvalds {
5161da177e4SLinus Torvalds 	int n;
5171da177e4SLinus Torvalds 
5181da177e4SLinus Torvalds 	n = jiffies & 0xffff;
5191da177e4SLinus Torvalds 	n -= tag & 0xffff;
5201da177e4SLinus Torvalds 	if (n < 0)
5211da177e4SLinus Torvalds 		n += 1<<16;
5225f0c9c48SEd Cashin 	return jiffies_to_usecs(n + 1);
5231da177e4SLinus Torvalds }
5241da177e4SLinus Torvalds 
52568e0d42fSEd L. Cashin static struct aoeif *
52668e0d42fSEd L. Cashin getif(struct aoetgt *t, struct net_device *nd)
52768e0d42fSEd L. Cashin {
52868e0d42fSEd L. Cashin 	struct aoeif *p, *e;
52968e0d42fSEd L. Cashin 
53068e0d42fSEd L. Cashin 	p = t->ifs;
53168e0d42fSEd L. Cashin 	e = p + NAOEIFS;
53268e0d42fSEd L. Cashin 	for (; p < e; p++)
53368e0d42fSEd L. Cashin 		if (p->nd == nd)
53468e0d42fSEd L. Cashin 			return p;
53568e0d42fSEd L. Cashin 	return NULL;
53668e0d42fSEd L. Cashin }
53768e0d42fSEd L. Cashin 
53868e0d42fSEd L. Cashin static void
53968e0d42fSEd L. Cashin ejectif(struct aoetgt *t, struct aoeif *ifp)
54068e0d42fSEd L. Cashin {
54168e0d42fSEd L. Cashin 	struct aoeif *e;
5421b86fda9SEd Cashin 	struct net_device *nd;
54368e0d42fSEd L. Cashin 	ulong n;
54468e0d42fSEd L. Cashin 
5451b86fda9SEd Cashin 	nd = ifp->nd;
54668e0d42fSEd L. Cashin 	e = t->ifs + NAOEIFS - 1;
54768e0d42fSEd L. Cashin 	n = (e - ifp) * sizeof *ifp;
54868e0d42fSEd L. Cashin 	memmove(ifp, ifp+1, n);
54968e0d42fSEd L. Cashin 	e->nd = NULL;
5501b86fda9SEd Cashin 	dev_put(nd);
55168e0d42fSEd L. Cashin }
55268e0d42fSEd L. Cashin 
5533fc9b032SEd Cashin static struct frame *
554bbb44e30SEd Cashin reassign_frame(struct frame *f)
55568e0d42fSEd L. Cashin {
5563fc9b032SEd Cashin 	struct frame *nf;
55768e0d42fSEd L. Cashin 	struct sk_buff *skb;
55868e0d42fSEd L. Cashin 
5593fc9b032SEd Cashin 	nf = newframe(f->t->d);
56068e0d42fSEd L. Cashin 	if (!nf)
5613fc9b032SEd Cashin 		return NULL;
562bbb44e30SEd Cashin 	if (nf->t == f->t) {
563bbb44e30SEd Cashin 		aoe_freetframe(nf);
564bbb44e30SEd Cashin 		return NULL;
565bbb44e30SEd Cashin 	}
566896831f5SEd Cashin 
56768e0d42fSEd L. Cashin 	skb = nf->skb;
568896831f5SEd Cashin 	nf->skb = f->skb;
569896831f5SEd Cashin 	nf->buf = f->buf;
570feb261e2SKent Overstreet 	nf->iter = f->iter;
57168e0d42fSEd L. Cashin 	nf->waited = 0;
5723fc9b032SEd Cashin 	nf->waited_total = f->waited_total;
5733fc9b032SEd Cashin 	nf->sent = f->sent;
574896831f5SEd Cashin 	f->skb = skb;
5753fc9b032SEd Cashin 
5763fc9b032SEd Cashin 	return nf;
5773fc9b032SEd Cashin }
5783fc9b032SEd Cashin 
579bbb44e30SEd Cashin static void
580bbb44e30SEd Cashin probe(struct aoetgt *t)
5813fc9b032SEd Cashin {
582bbb44e30SEd Cashin 	struct aoedev *d;
583bbb44e30SEd Cashin 	struct frame *f;
584bbb44e30SEd Cashin 	struct sk_buff *skb;
585bbb44e30SEd Cashin 	struct sk_buff_head queue;
586bbb44e30SEd Cashin 	size_t n, m;
587bbb44e30SEd Cashin 	int frag;
5883fc9b032SEd Cashin 
589bbb44e30SEd Cashin 	d = t->d;
590bbb44e30SEd Cashin 	f = newtframe(d, t);
591bbb44e30SEd Cashin 	if (!f) {
592bbb44e30SEd Cashin 		pr_err("%s %pm for e%ld.%d: %s\n",
593bbb44e30SEd Cashin 			"aoe: cannot probe remote address",
594bbb44e30SEd Cashin 			t->addr,
595bbb44e30SEd Cashin 			(long) d->aoemajor, d->aoeminor,
596bbb44e30SEd Cashin 			"no frame available");
597bbb44e30SEd Cashin 		return;
598bbb44e30SEd Cashin 	}
599bbb44e30SEd Cashin 	f->flags |= FFL_PROBE;
600bbb44e30SEd Cashin 	ifrotate(t);
601feb261e2SKent Overstreet 	f->iter.bi_size = t->d->maxbcnt ? t->d->maxbcnt : DEFAULTBCNT;
602bbb44e30SEd Cashin 	ata_rw_frameinit(f);
603bbb44e30SEd Cashin 	skb = f->skb;
604feb261e2SKent Overstreet 	for (frag = 0, n = f->iter.bi_size; n > 0; ++frag, n -= m) {
605bbb44e30SEd Cashin 		if (n < PAGE_SIZE)
606bbb44e30SEd Cashin 			m = n;
607bbb44e30SEd Cashin 		else
608bbb44e30SEd Cashin 			m = PAGE_SIZE;
609bbb44e30SEd Cashin 		skb_fill_page_desc(skb, frag, empty_page, 0, m);
610bbb44e30SEd Cashin 	}
611feb261e2SKent Overstreet 	skb->len += f->iter.bi_size;
612feb261e2SKent Overstreet 	skb->data_len = f->iter.bi_size;
613feb261e2SKent Overstreet 	skb->truesize += f->iter.bi_size;
614bbb44e30SEd Cashin 
615bbb44e30SEd Cashin 	skb = skb_clone(f->skb, GFP_ATOMIC);
616bbb44e30SEd Cashin 	if (skb) {
61785cf955dSTina Ruchandani 		f->sent = ktime_get();
618bbb44e30SEd Cashin 		__skb_queue_head_init(&queue);
619bbb44e30SEd Cashin 		__skb_queue_tail(&queue, skb);
620bbb44e30SEd Cashin 		aoenet_xmit(&queue);
621896831f5SEd Cashin 	}
62268e0d42fSEd L. Cashin }
623bbb44e30SEd Cashin 
624bbb44e30SEd Cashin static long
625bbb44e30SEd Cashin rto(struct aoedev *d)
626bbb44e30SEd Cashin {
627bbb44e30SEd Cashin 	long t;
628bbb44e30SEd Cashin 
629bbb44e30SEd Cashin 	t = 2 * d->rttavg >> RTTSCALE;
630bbb44e30SEd Cashin 	t += 8 * d->rttdev >> RTTDSCALE;
631bbb44e30SEd Cashin 	if (t == 0)
632bbb44e30SEd Cashin 		t = 1;
633bbb44e30SEd Cashin 
634bbb44e30SEd Cashin 	return t;
63568e0d42fSEd L. Cashin }
63668e0d42fSEd L. Cashin 
6371da177e4SLinus Torvalds static void
6383a0c40d2SEd Cashin rexmit_deferred(struct aoedev *d)
6393a0c40d2SEd Cashin {
6403a0c40d2SEd Cashin 	struct aoetgt *t;
6413a0c40d2SEd Cashin 	struct frame *f;
642bbb44e30SEd Cashin 	struct frame *nf;
6433a0c40d2SEd Cashin 	struct list_head *pos, *nx, *head;
6443fc9b032SEd Cashin 	int since;
645bbb44e30SEd Cashin 	int untainted;
646bbb44e30SEd Cashin 
647bbb44e30SEd Cashin 	count_targets(d, &untainted);
6483a0c40d2SEd Cashin 
6493a0c40d2SEd Cashin 	head = &d->rexmitq;
6503a0c40d2SEd Cashin 	list_for_each_safe(pos, nx, head) {
6513a0c40d2SEd Cashin 		f = list_entry(pos, struct frame, head);
6523a0c40d2SEd Cashin 		t = f->t;
653bbb44e30SEd Cashin 		if (t->taint) {
654bbb44e30SEd Cashin 			if (!(f->flags & FFL_PROBE)) {
655bbb44e30SEd Cashin 				nf = reassign_frame(f);
656bbb44e30SEd Cashin 				if (nf) {
657bbb44e30SEd Cashin 					if (t->nout_probes == 0
658bbb44e30SEd Cashin 					&& untainted > 0) {
659bbb44e30SEd Cashin 						probe(t);
660bbb44e30SEd Cashin 						t->nout_probes++;
661bbb44e30SEd Cashin 					}
662bbb44e30SEd Cashin 					list_replace(&f->head, &nf->head);
663bbb44e30SEd Cashin 					pos = &nf->head;
664bbb44e30SEd Cashin 					aoe_freetframe(f);
665bbb44e30SEd Cashin 					f = nf;
666bbb44e30SEd Cashin 					t = f->t;
667bbb44e30SEd Cashin 				}
668bbb44e30SEd Cashin 			} else if (untainted < 1) {
669bbb44e30SEd Cashin 				/* don't probe w/o other untainted aoetgts */
670bbb44e30SEd Cashin 				goto stop_probe;
671bbb44e30SEd Cashin 			} else if (tsince_hr(f) < t->taint * rto(d)) {
672bbb44e30SEd Cashin 				/* reprobe slowly when taint is high */
673bbb44e30SEd Cashin 				continue;
674bbb44e30SEd Cashin 			}
675bbb44e30SEd Cashin 		} else if (f->flags & FFL_PROBE) {
676bbb44e30SEd Cashin stop_probe:		/* don't probe untainted aoetgts */
677bbb44e30SEd Cashin 			list_del(pos);
678bbb44e30SEd Cashin 			aoe_freetframe(f);
679bbb44e30SEd Cashin 			/* leaving d->kicked, because this is routine */
680bbb44e30SEd Cashin 			f->t->d->flags |= DEVFL_KICKME;
681bbb44e30SEd Cashin 			continue;
682bbb44e30SEd Cashin 		}
6833a0c40d2SEd Cashin 		if (t->nout >= t->maxout)
6843a0c40d2SEd Cashin 			continue;
6853a0c40d2SEd Cashin 		list_del(pos);
6863a0c40d2SEd Cashin 		t->nout++;
687bbb44e30SEd Cashin 		if (f->flags & FFL_PROBE)
688bbb44e30SEd Cashin 			t->nout_probes++;
6893fc9b032SEd Cashin 		since = tsince_hr(f);
6903fc9b032SEd Cashin 		f->waited += since;
6913fc9b032SEd Cashin 		f->waited_total += since;
6923a0c40d2SEd Cashin 		resend(d, f);
6933a0c40d2SEd Cashin 	}
6943a0c40d2SEd Cashin }
6953a0c40d2SEd Cashin 
696bbb44e30SEd Cashin /* An aoetgt accumulates demerits quickly, and successful
697bbb44e30SEd Cashin  * probing redeems the aoetgt slowly.
698bbb44e30SEd Cashin  */
699bbb44e30SEd Cashin static void
700bbb44e30SEd Cashin scorn(struct aoetgt *t)
701bbb44e30SEd Cashin {
702bbb44e30SEd Cashin 	int n;
703bbb44e30SEd Cashin 
704bbb44e30SEd Cashin 	n = t->taint++;
705bbb44e30SEd Cashin 	t->taint += t->taint * 2;
706bbb44e30SEd Cashin 	if (n > t->taint)
707bbb44e30SEd Cashin 		t->taint = n;
708bbb44e30SEd Cashin 	if (t->taint > MAX_TAINT)
709bbb44e30SEd Cashin 		t->taint = MAX_TAINT;
710bbb44e30SEd Cashin }
711bbb44e30SEd Cashin 
712bbb44e30SEd Cashin static int
713bbb44e30SEd Cashin count_targets(struct aoedev *d, int *untainted)
714bbb44e30SEd Cashin {
715bbb44e30SEd Cashin 	int i, good;
716bbb44e30SEd Cashin 
717bbb44e30SEd Cashin 	for (i = good = 0; i < d->ntargets && d->targets[i]; ++i)
718bbb44e30SEd Cashin 		if (d->targets[i]->taint == 0)
719bbb44e30SEd Cashin 			good++;
720bbb44e30SEd Cashin 
721bbb44e30SEd Cashin 	if (untainted)
722bbb44e30SEd Cashin 		*untainted = good;
723bbb44e30SEd Cashin 	return i;
724bbb44e30SEd Cashin }
725bbb44e30SEd Cashin 
7263a0c40d2SEd Cashin static void
7270e0cc9dfSKees Cook rexmit_timer(struct timer_list *timer)
7281da177e4SLinus Torvalds {
7291da177e4SLinus Torvalds 	struct aoedev *d;
7303a0c40d2SEd Cashin 	struct aoetgt *t;
73168e0d42fSEd L. Cashin 	struct aoeif *ifp;
732896831f5SEd Cashin 	struct frame *f;
733896831f5SEd Cashin 	struct list_head *head, *pos, *nx;
734896831f5SEd Cashin 	LIST_HEAD(flist);
7351da177e4SLinus Torvalds 	register long timeout;
7361da177e4SLinus Torvalds 	ulong flags, n;
737896831f5SEd Cashin 	int i;
738bbb44e30SEd Cashin 	int utgts;	/* number of aoetgt descriptors (not slots) */
7393fc9b032SEd Cashin 	int since;
7401da177e4SLinus Torvalds 
7410e0cc9dfSKees Cook 	d = from_timer(d, timer, timer);
7421da177e4SLinus Torvalds 
7430d555ecfSEd Cashin 	spin_lock_irqsave(&d->lock, flags);
7440d555ecfSEd Cashin 
7453a0c40d2SEd Cashin 	/* timeout based on observed timings and variations */
746bbb44e30SEd Cashin 	timeout = rto(d);
747bbb44e30SEd Cashin 
748bbb44e30SEd Cashin 	utgts = count_targets(d, NULL);
7491da177e4SLinus Torvalds 
7501da177e4SLinus Torvalds 	if (d->flags & DEVFL_TKILL) {
7511c6f3fcaSEd L. Cashin 		spin_unlock_irqrestore(&d->lock, flags);
7521da177e4SLinus Torvalds 		return;
7531da177e4SLinus Torvalds 	}
754896831f5SEd Cashin 
755896831f5SEd Cashin 	/* collect all frames to rexmit into flist */
756896831f5SEd Cashin 	for (i = 0; i < NFACTIVE; i++) {
75764a80f5aSEd Cashin 		head = &d->factive[i];
758896831f5SEd Cashin 		list_for_each_safe(pos, nx, head) {
759896831f5SEd Cashin 			f = list_entry(pos, struct frame, head);
7605f0c9c48SEd Cashin 			if (tsince_hr(f) < timeout)
76164a80f5aSEd Cashin 				break;	/* end of expired frames */
762896831f5SEd Cashin 			/* move to flist for later processing */
763896831f5SEd Cashin 			list_move_tail(pos, &flist);
764896831f5SEd Cashin 		}
765896831f5SEd Cashin 	}
76669cf2d85SEd Cashin 
767896831f5SEd Cashin 	/* process expired frames */
768896831f5SEd Cashin 	while (!list_empty(&flist)) {
769896831f5SEd Cashin 		pos = flist.next;
770896831f5SEd Cashin 		f = list_entry(pos, struct frame, head);
7713fc9b032SEd Cashin 		since = tsince_hr(f);
7723fc9b032SEd Cashin 		n = f->waited_total + since;
7735f0c9c48SEd Cashin 		n /= USEC_PER_SEC;
774c450ba0fSEd Cashin 		if (aoe_deadsecs
775c450ba0fSEd Cashin 		&& n > aoe_deadsecs
776c450ba0fSEd Cashin 		&& !(f->flags & FFL_PROBE)) {
777896831f5SEd Cashin 			/* Waited too long.  Device failure.
778896831f5SEd Cashin 			 * Hang all frames on first hash bucket for downdev
779896831f5SEd Cashin 			 * to clean up.
780896831f5SEd Cashin 			 */
78164a80f5aSEd Cashin 			list_splice(&flist, &d->factive[0]);
7821da177e4SLinus Torvalds 			aoedev_downdev(d);
7833a0c40d2SEd Cashin 			goto out;
7841da177e4SLinus Torvalds 		}
78568e0d42fSEd L. Cashin 
786896831f5SEd Cashin 		t = f->t;
787bbb44e30SEd Cashin 		n = f->waited + since;
788bbb44e30SEd Cashin 		n /= USEC_PER_SEC;
789bbb44e30SEd Cashin 		if (aoe_deadsecs && utgts > 0
790bbb44e30SEd Cashin 		&& (n > aoe_deadsecs / utgts || n > HARD_SCORN_SECS))
791bbb44e30SEd Cashin 			scorn(t); /* avoid this target */
792d54d35acSEd Cashin 
7933a0c40d2SEd Cashin 		if (t->maxout != 1) {
7943a0c40d2SEd Cashin 			t->ssthresh = t->maxout / 2;
7953a0c40d2SEd Cashin 			t->maxout = 1;
79668e0d42fSEd L. Cashin 		}
79768e0d42fSEd L. Cashin 
798bbb44e30SEd Cashin 		if (f->flags & FFL_PROBE) {
799bbb44e30SEd Cashin 			t->nout_probes--;
800bbb44e30SEd Cashin 		} else {
80168e0d42fSEd L. Cashin 			ifp = getif(t, f->skb->dev);
80268e0d42fSEd L. Cashin 			if (ifp && ++ifp->lost > (t->nframes << 1)
80368e0d42fSEd L. Cashin 			&& (ifp != t->ifs || t->ifs[1].nd)) {
80468e0d42fSEd L. Cashin 				ejectif(t, ifp);
80568e0d42fSEd L. Cashin 				ifp = NULL;
80668e0d42fSEd L. Cashin 			}
807bbb44e30SEd Cashin 		}
8083a0c40d2SEd Cashin 		list_move_tail(pos, &d->rexmitq);
8093a0c40d2SEd Cashin 		t->nout--;
8101da177e4SLinus Torvalds 	}
8113a0c40d2SEd Cashin 	rexmit_deferred(d);
81268e0d42fSEd L. Cashin 
8133a0c40d2SEd Cashin out:
814bbb44e30SEd Cashin 	if ((d->flags & DEVFL_KICKME) && d->blkq) {
8154f51dc5eSEd L. Cashin 		d->flags &= ~DEVFL_KICKME;
816*3582dd29SJens Axboe 		blk_mq_run_hw_queues(d->blkq, true);
8174f51dc5eSEd L. Cashin 	}
8181da177e4SLinus Torvalds 
8191da177e4SLinus Torvalds 	d->timer.expires = jiffies + TIMERTICK;
8201da177e4SLinus Torvalds 	add_timer(&d->timer);
8211da177e4SLinus Torvalds 
8221da177e4SLinus Torvalds 	spin_unlock_irqrestore(&d->lock, flags);
82369cf2d85SEd Cashin }
8241da177e4SLinus Torvalds 
82569cf2d85SEd Cashin static unsigned long
82669cf2d85SEd Cashin rqbiocnt(struct request *r)
82769cf2d85SEd Cashin {
82869cf2d85SEd Cashin 	struct bio *bio;
82969cf2d85SEd Cashin 	unsigned long n = 0;
83069cf2d85SEd Cashin 
83169cf2d85SEd Cashin 	__rq_for_each_bio(bio, r)
83269cf2d85SEd Cashin 		n++;
83369cf2d85SEd Cashin 	return n;
83469cf2d85SEd Cashin }
83569cf2d85SEd Cashin 
83669cf2d85SEd Cashin static void
83769cf2d85SEd Cashin bufinit(struct buf *buf, struct request *rq, struct bio *bio)
83869cf2d85SEd Cashin {
83969cf2d85SEd Cashin 	memset(buf, 0, sizeof(*buf));
84069cf2d85SEd Cashin 	buf->rq = rq;
84169cf2d85SEd Cashin 	buf->bio = bio;
842feb261e2SKent Overstreet 	buf->iter = bio->bi_iter;
84369cf2d85SEd Cashin }
84469cf2d85SEd Cashin 
84569cf2d85SEd Cashin static struct buf *
84669cf2d85SEd Cashin nextbuf(struct aoedev *d)
84769cf2d85SEd Cashin {
84869cf2d85SEd Cashin 	struct request *rq;
84969cf2d85SEd Cashin 	struct request_queue *q;
85069cf2d85SEd Cashin 	struct buf *buf;
85169cf2d85SEd Cashin 	struct bio *bio;
85269cf2d85SEd Cashin 
85369cf2d85SEd Cashin 	q = d->blkq;
85469cf2d85SEd Cashin 	if (q == NULL)
85569cf2d85SEd Cashin 		return NULL;	/* initializing */
85669cf2d85SEd Cashin 	if (d->ip.buf)
85769cf2d85SEd Cashin 		return d->ip.buf;
85869cf2d85SEd Cashin 	rq = d->ip.rq;
85969cf2d85SEd Cashin 	if (rq == NULL) {
860*3582dd29SJens Axboe 		rq = list_first_entry_or_null(&d->rq_list, struct request,
861*3582dd29SJens Axboe 						queuelist);
86269cf2d85SEd Cashin 		if (rq == NULL)
86369cf2d85SEd Cashin 			return NULL;
864*3582dd29SJens Axboe 		list_del_init(&rq->queuelist);
865*3582dd29SJens Axboe 		blk_mq_start_request(rq);
86669cf2d85SEd Cashin 		d->ip.rq = rq;
86769cf2d85SEd Cashin 		d->ip.nxbio = rq->bio;
86869cf2d85SEd Cashin 		rq->special = (void *) rqbiocnt(rq);
86969cf2d85SEd Cashin 	}
87069cf2d85SEd Cashin 	buf = mempool_alloc(d->bufpool, GFP_ATOMIC);
87169cf2d85SEd Cashin 	if (buf == NULL) {
87269cf2d85SEd Cashin 		pr_err("aoe: nextbuf: unable to mempool_alloc!\n");
87369cf2d85SEd Cashin 		return NULL;
87469cf2d85SEd Cashin 	}
87569cf2d85SEd Cashin 	bio = d->ip.nxbio;
87669cf2d85SEd Cashin 	bufinit(buf, rq, bio);
87769cf2d85SEd Cashin 	bio = bio->bi_next;
87869cf2d85SEd Cashin 	d->ip.nxbio = bio;
87969cf2d85SEd Cashin 	if (bio == NULL)
88069cf2d85SEd Cashin 		d->ip.rq = NULL;
88169cf2d85SEd Cashin 	return d->ip.buf = buf;
8821da177e4SLinus Torvalds }
8831da177e4SLinus Torvalds 
88468e0d42fSEd L. Cashin /* enters with d->lock held */
88568e0d42fSEd L. Cashin void
88668e0d42fSEd L. Cashin aoecmd_work(struct aoedev *d)
88768e0d42fSEd L. Cashin {
8883a0c40d2SEd Cashin 	rexmit_deferred(d);
88969cf2d85SEd Cashin 	while (aoecmd_ata_rw(d))
89069cf2d85SEd Cashin 		;
89168e0d42fSEd L. Cashin }
89268e0d42fSEd L. Cashin 
8933ae1c24eSEd L. Cashin /* this function performs work that has been deferred until sleeping is OK
8943ae1c24eSEd L. Cashin  */
8953ae1c24eSEd L. Cashin void
896c4028958SDavid Howells aoecmd_sleepwork(struct work_struct *work)
8973ae1c24eSEd L. Cashin {
898c4028958SDavid Howells 	struct aoedev *d = container_of(work, struct aoedev, work);
899b21faa25SEd Cashin 	struct block_device *bd;
900b21faa25SEd Cashin 	u64 ssize;
9013ae1c24eSEd L. Cashin 
9023ae1c24eSEd L. Cashin 	if (d->flags & DEVFL_GDALLOC)
9033ae1c24eSEd L. Cashin 		aoeblk_gdalloc(d);
9043ae1c24eSEd L. Cashin 
9053ae1c24eSEd L. Cashin 	if (d->flags & DEVFL_NEWSIZE) {
90680795aefSTejun Heo 		ssize = get_capacity(d->gd);
9073ae1c24eSEd L. Cashin 		bd = bdget_disk(d->gd, 0);
9083ae1c24eSEd L. Cashin 		if (bd) {
9095955102cSAl Viro 			inode_lock(bd->bd_inode);
9103ae1c24eSEd L. Cashin 			i_size_write(bd->bd_inode, (loff_t)ssize<<9);
9115955102cSAl Viro 			inode_unlock(bd->bd_inode);
9123ae1c24eSEd L. Cashin 			bdput(bd);
9133ae1c24eSEd L. Cashin 		}
914b21faa25SEd Cashin 		spin_lock_irq(&d->lock);
9153ae1c24eSEd L. Cashin 		d->flags |= DEVFL_UP;
9163ae1c24eSEd L. Cashin 		d->flags &= ~DEVFL_NEWSIZE;
917b21faa25SEd Cashin 		spin_unlock_irq(&d->lock);
9183ae1c24eSEd L. Cashin 	}
9193ae1c24eSEd L. Cashin }
9203ae1c24eSEd L. Cashin 
9211da177e4SLinus Torvalds static void
922667be1e7SEd Cashin ata_ident_fixstring(u16 *id, int ns)
923667be1e7SEd Cashin {
924667be1e7SEd Cashin 	u16 s;
925667be1e7SEd Cashin 
926667be1e7SEd Cashin 	while (ns-- > 0) {
927667be1e7SEd Cashin 		s = *id;
928667be1e7SEd Cashin 		*id++ = s >> 8 | s << 8;
929667be1e7SEd Cashin 	}
930667be1e7SEd Cashin }
931667be1e7SEd Cashin 
932667be1e7SEd Cashin static void
93368e0d42fSEd L. Cashin ataid_complete(struct aoedev *d, struct aoetgt *t, unsigned char *id)
9341da177e4SLinus Torvalds {
9351da177e4SLinus Torvalds 	u64 ssize;
9361da177e4SLinus Torvalds 	u16 n;
9371da177e4SLinus Torvalds 
9381da177e4SLinus Torvalds 	/* word 83: command set supported */
939f885f8d1SHarvey Harrison 	n = get_unaligned_le16(&id[83 << 1]);
9401da177e4SLinus Torvalds 
9411da177e4SLinus Torvalds 	/* word 86: command set/feature enabled */
942f885f8d1SHarvey Harrison 	n |= get_unaligned_le16(&id[86 << 1]);
9431da177e4SLinus Torvalds 
9441da177e4SLinus Torvalds 	if (n & (1<<10)) {	/* bit 10: LBA 48 */
9451da177e4SLinus Torvalds 		d->flags |= DEVFL_EXT;
9461da177e4SLinus Torvalds 
9471da177e4SLinus Torvalds 		/* word 100: number lba48 sectors */
948f885f8d1SHarvey Harrison 		ssize = get_unaligned_le64(&id[100 << 1]);
9491da177e4SLinus Torvalds 
9501da177e4SLinus Torvalds 		/* set as in ide-disk.c:init_idedisk_capacity */
9511da177e4SLinus Torvalds 		d->geo.cylinders = ssize;
9521da177e4SLinus Torvalds 		d->geo.cylinders /= (255 * 63);
9531da177e4SLinus Torvalds 		d->geo.heads = 255;
9541da177e4SLinus Torvalds 		d->geo.sectors = 63;
9551da177e4SLinus Torvalds 	} else {
9561da177e4SLinus Torvalds 		d->flags &= ~DEVFL_EXT;
9571da177e4SLinus Torvalds 
9581da177e4SLinus Torvalds 		/* number lba28 sectors */
959f885f8d1SHarvey Harrison 		ssize = get_unaligned_le32(&id[60 << 1]);
9601da177e4SLinus Torvalds 
9611da177e4SLinus Torvalds 		/* NOTE: obsolete in ATA 6 */
962f885f8d1SHarvey Harrison 		d->geo.cylinders = get_unaligned_le16(&id[54 << 1]);
963f885f8d1SHarvey Harrison 		d->geo.heads = get_unaligned_le16(&id[55 << 1]);
964f885f8d1SHarvey Harrison 		d->geo.sectors = get_unaligned_le16(&id[56 << 1]);
9651da177e4SLinus Torvalds 	}
9663ae1c24eSEd L. Cashin 
967667be1e7SEd Cashin 	ata_ident_fixstring((u16 *) &id[10<<1], 10);	/* serial */
968667be1e7SEd Cashin 	ata_ident_fixstring((u16 *) &id[23<<1], 4);	/* firmware */
969667be1e7SEd Cashin 	ata_ident_fixstring((u16 *) &id[27<<1], 20);	/* model */
970667be1e7SEd Cashin 	memcpy(d->ident, id, sizeof(d->ident));
971667be1e7SEd Cashin 
9723ae1c24eSEd L. Cashin 	if (d->ssize != ssize)
9731d75981aSEd L. Cashin 		printk(KERN_INFO
974411c41eeSHarvey Harrison 			"aoe: %pm e%ld.%d v%04x has %llu sectors\n",
975411c41eeSHarvey Harrison 			t->addr,
9763ae1c24eSEd L. Cashin 			d->aoemajor, d->aoeminor,
9773ae1c24eSEd L. Cashin 			d->fw_ver, (long long)ssize);
9781da177e4SLinus Torvalds 	d->ssize = ssize;
9791da177e4SLinus Torvalds 	d->geo.start = 0;
9806b9699bbSEd L. Cashin 	if (d->flags & (DEVFL_GDALLOC|DEVFL_NEWSIZE))
9816b9699bbSEd L. Cashin 		return;
9821da177e4SLinus Torvalds 	if (d->gd != NULL) {
98380795aefSTejun Heo 		set_capacity(d->gd, ssize);
9843ae1c24eSEd L. Cashin 		d->flags |= DEVFL_NEWSIZE;
98568e0d42fSEd L. Cashin 	} else
9863ae1c24eSEd L. Cashin 		d->flags |= DEVFL_GDALLOC;
9871da177e4SLinus Torvalds 	schedule_work(&d->work);
9881da177e4SLinus Torvalds }
9891da177e4SLinus Torvalds 
9901da177e4SLinus Torvalds static void
9913a0c40d2SEd Cashin calc_rttavg(struct aoedev *d, struct aoetgt *t, int rtt)
9921da177e4SLinus Torvalds {
9931da177e4SLinus Torvalds 	register long n;
9941da177e4SLinus Torvalds 
9951da177e4SLinus Torvalds 	n = rtt;
9961da177e4SLinus Torvalds 
9973a0c40d2SEd Cashin 	/* cf. Congestion Avoidance and Control, Jacobson & Karels, 1988 */
9983a0c40d2SEd Cashin 	n -= d->rttavg >> RTTSCALE;
9993a0c40d2SEd Cashin 	d->rttavg += n;
10003a0c40d2SEd Cashin 	if (n < 0)
10013a0c40d2SEd Cashin 		n = -n;
10023a0c40d2SEd Cashin 	n -= d->rttdev >> RTTDSCALE;
10033a0c40d2SEd Cashin 	d->rttdev += n;
10043a0c40d2SEd Cashin 
10053a0c40d2SEd Cashin 	if (!t || t->maxout >= t->nframes)
10063a0c40d2SEd Cashin 		return;
10073a0c40d2SEd Cashin 	if (t->maxout < t->ssthresh)
10083a0c40d2SEd Cashin 		t->maxout += 1;
10093a0c40d2SEd Cashin 	else if (t->nout == t->maxout && t->next_cwnd-- == 0) {
10103a0c40d2SEd Cashin 		t->maxout += 1;
10113a0c40d2SEd Cashin 		t->next_cwnd = t->maxout;
10123a0c40d2SEd Cashin 	}
10131da177e4SLinus Torvalds }
10141da177e4SLinus Torvalds 
101568e0d42fSEd L. Cashin static struct aoetgt *
101668e0d42fSEd L. Cashin gettgt(struct aoedev *d, char *addr)
101768e0d42fSEd L. Cashin {
101868e0d42fSEd L. Cashin 	struct aoetgt **t, **e;
101968e0d42fSEd L. Cashin 
102068e0d42fSEd L. Cashin 	t = d->targets;
102171114ec4SEd Cashin 	e = t + d->ntargets;
102268e0d42fSEd L. Cashin 	for (; t < e && *t; t++)
102368e0d42fSEd L. Cashin 		if (memcmp((*t)->addr, addr, sizeof((*t)->addr)) == 0)
102468e0d42fSEd L. Cashin 			return *t;
102568e0d42fSEd L. Cashin 	return NULL;
102668e0d42fSEd L. Cashin }
102768e0d42fSEd L. Cashin 
10283d5b0605SEd Cashin static void
1029feb261e2SKent Overstreet bvcpy(struct sk_buff *skb, struct bio *bio, struct bvec_iter iter, long cnt)
10303d5b0605SEd Cashin {
10313d5b0605SEd Cashin 	int soff = 0;
1032feb261e2SKent Overstreet 	struct bio_vec bv;
1033feb261e2SKent Overstreet 
1034feb261e2SKent Overstreet 	iter.bi_size = cnt;
1035feb261e2SKent Overstreet 
1036feb261e2SKent Overstreet 	__bio_for_each_segment(bv, bio, iter, iter) {
1037ad180f6fSChristoph Hellwig 		char *p = kmap_atomic(bv.bv_page) + bv.bv_offset;
1038feb261e2SKent Overstreet 		skb_copy_bits(skb, soff, p, bv.bv_len);
1039ad180f6fSChristoph Hellwig 		kunmap_atomic(p);
1040feb261e2SKent Overstreet 		soff += bv.bv_len;
1041feb261e2SKent Overstreet 	}
10423d5b0605SEd Cashin }
10433d5b0605SEd Cashin 
104469cf2d85SEd Cashin void
104569cf2d85SEd Cashin aoe_end_request(struct aoedev *d, struct request *rq, int fastfail)
104669cf2d85SEd Cashin {
104769cf2d85SEd Cashin 	struct bio *bio;
104869cf2d85SEd Cashin 	int bok;
104969cf2d85SEd Cashin 	struct request_queue *q;
1050*3582dd29SJens Axboe 	blk_status_t err = BLK_STS_OK;
105169cf2d85SEd Cashin 
105269cf2d85SEd Cashin 	q = d->blkq;
105369cf2d85SEd Cashin 	if (rq == d->ip.rq)
105469cf2d85SEd Cashin 		d->ip.rq = NULL;
105569cf2d85SEd Cashin 	do {
105669cf2d85SEd Cashin 		bio = rq->bio;
10574e4cbee9SChristoph Hellwig 		bok = !fastfail && !bio->bi_status;
1058*3582dd29SJens Axboe 		if (!bok)
1059*3582dd29SJens Axboe 			err = BLK_STS_IOERR;
1060*3582dd29SJens Axboe 	} while (blk_update_request(rq, bok ? BLK_STS_OK : BLK_STS_IOERR, bio->bi_iter.bi_size));
1061*3582dd29SJens Axboe 
1062*3582dd29SJens Axboe 	__blk_mq_end_request(rq, err);
106369cf2d85SEd Cashin 
106469cf2d85SEd Cashin 	/* cf. http://lkml.org/lkml/2006/10/31/28 */
106569cf2d85SEd Cashin 	if (!fastfail)
1066*3582dd29SJens Axboe 		blk_mq_run_hw_queues(q, true);
106769cf2d85SEd Cashin }
106869cf2d85SEd Cashin 
106969cf2d85SEd Cashin static void
107069cf2d85SEd Cashin aoe_end_buf(struct aoedev *d, struct buf *buf)
107169cf2d85SEd Cashin {
107269cf2d85SEd Cashin 	struct request *rq;
107369cf2d85SEd Cashin 	unsigned long n;
107469cf2d85SEd Cashin 
107569cf2d85SEd Cashin 	if (buf == d->ip.buf)
107669cf2d85SEd Cashin 		d->ip.buf = NULL;
107769cf2d85SEd Cashin 	rq = buf->rq;
107869cf2d85SEd Cashin 	mempool_free(buf, d->bufpool);
107969cf2d85SEd Cashin 	n = (unsigned long) rq->special;
108069cf2d85SEd Cashin 	rq->special = (void *) --n;
108169cf2d85SEd Cashin 	if (n == 0)
108269cf2d85SEd Cashin 		aoe_end_request(d, rq, 0);
108369cf2d85SEd Cashin }
108469cf2d85SEd Cashin 
10853d5b0605SEd Cashin static void
1086896831f5SEd Cashin ktiocomplete(struct frame *f)
10873d5b0605SEd Cashin {
1088ddec63e8SEd L. Cashin 	struct aoe_hdr *hin, *hout;
10891da177e4SLinus Torvalds 	struct aoe_atahdr *ahin, *ahout;
10901da177e4SLinus Torvalds 	struct buf *buf;
1091896831f5SEd Cashin 	struct sk_buff *skb;
109268e0d42fSEd L. Cashin 	struct aoetgt *t;
109368e0d42fSEd L. Cashin 	struct aoeif *ifp;
1094896831f5SEd Cashin 	struct aoedev *d;
1095896831f5SEd Cashin 	long n;
1096bbb44e30SEd Cashin 	int untainted;
1097896831f5SEd Cashin 
1098896831f5SEd Cashin 	if (f == NULL)
1099896831f5SEd Cashin 		return;
1100896831f5SEd Cashin 
1101896831f5SEd Cashin 	t = f->t;
1102896831f5SEd Cashin 	d = t->d;
1103bbb44e30SEd Cashin 	skb = f->r_skb;
1104bbb44e30SEd Cashin 	buf = f->buf;
1105bbb44e30SEd Cashin 	if (f->flags & FFL_PROBE)
1106bbb44e30SEd Cashin 		goto out;
1107bbb44e30SEd Cashin 	if (!skb)		/* just fail the buf. */
1108bbb44e30SEd Cashin 		goto noskb;
1109896831f5SEd Cashin 
1110896831f5SEd Cashin 	hout = (struct aoe_hdr *) skb_mac_header(f->skb);
1111896831f5SEd Cashin 	ahout = (struct aoe_atahdr *) (hout+1);
1112896831f5SEd Cashin 
1113896831f5SEd Cashin 	hin = (struct aoe_hdr *) skb->data;
1114896831f5SEd Cashin 	skb_pull(skb, sizeof(*hin));
1115896831f5SEd Cashin 	ahin = (struct aoe_atahdr *) skb->data;
1116896831f5SEd Cashin 	skb_pull(skb, sizeof(*ahin));
1117896831f5SEd Cashin 	if (ahin->cmdstat & 0xa9) {	/* these bits cleared on success */
1118896831f5SEd Cashin 		pr_err("aoe: ata error cmd=%2.2Xh stat=%2.2Xh from e%ld.%d\n",
1119896831f5SEd Cashin 			ahout->cmdstat, ahin->cmdstat,
1120896831f5SEd Cashin 			d->aoemajor, d->aoeminor);
1121896831f5SEd Cashin noskb:		if (buf)
11224e4cbee9SChristoph Hellwig 			buf->bio->bi_status = BLK_STS_IOERR;
1123bbb44e30SEd Cashin 		goto out;
1124896831f5SEd Cashin 	}
1125896831f5SEd Cashin 
1126896831f5SEd Cashin 	n = ahout->scnt << 9;
1127896831f5SEd Cashin 	switch (ahout->cmdstat) {
1128896831f5SEd Cashin 	case ATA_CMD_PIO_READ:
1129896831f5SEd Cashin 	case ATA_CMD_PIO_READ_EXT:
1130896831f5SEd Cashin 		if (skb->len < n) {
1131bf29754aSEd Cashin 			pr_err("%s e%ld.%d.  skb->len=%d need=%ld\n",
1132bf29754aSEd Cashin 				"aoe: runt data size in read from",
1133bf29754aSEd Cashin 				(long) d->aoemajor, d->aoeminor,
1134896831f5SEd Cashin 			       skb->len, n);
11354e4cbee9SChristoph Hellwig 			buf->bio->bi_status = BLK_STS_IOERR;
1136896831f5SEd Cashin 			break;
1137896831f5SEd Cashin 		}
1138feb261e2SKent Overstreet 		if (n > f->iter.bi_size) {
1139feb261e2SKent Overstreet 			pr_err_ratelimited("%s e%ld.%d.  bytes=%ld need=%u\n",
1140feb261e2SKent Overstreet 				"aoe: too-large data size in read from",
1141feb261e2SKent Overstreet 				(long) d->aoemajor, d->aoeminor,
1142feb261e2SKent Overstreet 				n, f->iter.bi_size);
11434e4cbee9SChristoph Hellwig 			buf->bio->bi_status = BLK_STS_IOERR;
1144feb261e2SKent Overstreet 			break;
1145feb261e2SKent Overstreet 		}
1146feb261e2SKent Overstreet 		bvcpy(skb, f->buf->bio, f->iter, n);
114799972f17SGustavo A. R. Silva 		/* fall through */
1148896831f5SEd Cashin 	case ATA_CMD_PIO_WRITE:
1149896831f5SEd Cashin 	case ATA_CMD_PIO_WRITE_EXT:
1150896831f5SEd Cashin 		spin_lock_irq(&d->lock);
1151896831f5SEd Cashin 		ifp = getif(t, skb->dev);
11523f0f0133SEd Cashin 		if (ifp)
1153896831f5SEd Cashin 			ifp->lost = 0;
1154896831f5SEd Cashin 		spin_unlock_irq(&d->lock);
1155896831f5SEd Cashin 		break;
1156896831f5SEd Cashin 	case ATA_CMD_ID_ATA:
1157896831f5SEd Cashin 		if (skb->len < 512) {
1158bf29754aSEd Cashin 			pr_info("%s e%ld.%d.  skb->len=%d need=512\n",
1159bf29754aSEd Cashin 				"aoe: runt data size in ataid from",
1160bf29754aSEd Cashin 				(long) d->aoemajor, d->aoeminor,
1161896831f5SEd Cashin 				skb->len);
1162896831f5SEd Cashin 			break;
1163896831f5SEd Cashin 		}
1164896831f5SEd Cashin 		if (skb_linearize(skb))
1165896831f5SEd Cashin 			break;
1166896831f5SEd Cashin 		spin_lock_irq(&d->lock);
1167896831f5SEd Cashin 		ataid_complete(d, t, skb->data);
1168896831f5SEd Cashin 		spin_unlock_irq(&d->lock);
1169896831f5SEd Cashin 		break;
1170896831f5SEd Cashin 	default:
1171896831f5SEd Cashin 		pr_info("aoe: unrecognized ata command %2.2Xh for %d.%d\n",
1172896831f5SEd Cashin 			ahout->cmdstat,
1173896831f5SEd Cashin 			be16_to_cpu(get_unaligned(&hin->major)),
1174896831f5SEd Cashin 			hin->minor);
1175896831f5SEd Cashin 	}
1176bbb44e30SEd Cashin out:
1177896831f5SEd Cashin 	spin_lock_irq(&d->lock);
1178bbb44e30SEd Cashin 	if (t->taint > 0
1179bbb44e30SEd Cashin 	&& --t->taint > 0
1180bbb44e30SEd Cashin 	&& t->nout_probes == 0) {
1181bbb44e30SEd Cashin 		count_targets(d, &untainted);
1182bbb44e30SEd Cashin 		if (untainted > 0) {
1183bbb44e30SEd Cashin 			probe(t);
1184bbb44e30SEd Cashin 			t->nout_probes++;
1185bbb44e30SEd Cashin 		}
1186bbb44e30SEd Cashin 	}
1187896831f5SEd Cashin 
1188896831f5SEd Cashin 	aoe_freetframe(f);
1189896831f5SEd Cashin 
1190feb261e2SKent Overstreet 	if (buf && --buf->nframesout == 0 && buf->iter.bi_size == 0)
119169cf2d85SEd Cashin 		aoe_end_buf(d, buf);
1192896831f5SEd Cashin 
1193896831f5SEd Cashin 	spin_unlock_irq(&d->lock);
119469cf2d85SEd Cashin 	aoedev_put(d);
1195896831f5SEd Cashin 	dev_kfree_skb(skb);
1196896831f5SEd Cashin }
1197896831f5SEd Cashin 
1198896831f5SEd Cashin /* Enters with iocq.lock held.
1199896831f5SEd Cashin  * Returns true iff responses needing processing remain.
1200896831f5SEd Cashin  */
1201896831f5SEd Cashin static int
12028030d343SEd Cashin ktio(int id)
1203896831f5SEd Cashin {
1204896831f5SEd Cashin 	struct frame *f;
1205896831f5SEd Cashin 	struct list_head *pos;
1206896831f5SEd Cashin 	int i;
12078030d343SEd Cashin 	int actual_id;
1208896831f5SEd Cashin 
1209896831f5SEd Cashin 	for (i = 0; ; ++i) {
1210896831f5SEd Cashin 		if (i == MAXIOC)
1211896831f5SEd Cashin 			return 1;
12128030d343SEd Cashin 		if (list_empty(&iocq[id].head))
1213896831f5SEd Cashin 			return 0;
12148030d343SEd Cashin 		pos = iocq[id].head.next;
1215896831f5SEd Cashin 		list_del(pos);
1216896831f5SEd Cashin 		f = list_entry(pos, struct frame, head);
12178030d343SEd Cashin 		spin_unlock_irq(&iocq[id].lock);
1218896831f5SEd Cashin 		ktiocomplete(f);
12198030d343SEd Cashin 
12208030d343SEd Cashin 		/* Figure out if extra threads are required. */
12218030d343SEd Cashin 		actual_id = f->t->d->aoeminor % ncpus;
12228030d343SEd Cashin 
12238030d343SEd Cashin 		if (!kts[actual_id].active) {
12248030d343SEd Cashin 			BUG_ON(id != 0);
12258030d343SEd Cashin 			mutex_lock(&ktio_spawn_lock);
12268030d343SEd Cashin 			if (!kts[actual_id].active
12278030d343SEd Cashin 				&& aoe_ktstart(&kts[actual_id]) == 0)
12288030d343SEd Cashin 				kts[actual_id].active = 1;
12298030d343SEd Cashin 			mutex_unlock(&ktio_spawn_lock);
12308030d343SEd Cashin 		}
12318030d343SEd Cashin 		spin_lock_irq(&iocq[id].lock);
1232896831f5SEd Cashin 	}
1233896831f5SEd Cashin }
1234896831f5SEd Cashin 
1235896831f5SEd Cashin static int
1236896831f5SEd Cashin kthread(void *vp)
1237896831f5SEd Cashin {
1238896831f5SEd Cashin 	struct ktstate *k;
1239896831f5SEd Cashin 	DECLARE_WAITQUEUE(wait, current);
1240896831f5SEd Cashin 	int more;
1241896831f5SEd Cashin 
1242896831f5SEd Cashin 	k = vp;
1243896831f5SEd Cashin 	current->flags |= PF_NOFREEZE;
1244896831f5SEd Cashin 	set_user_nice(current, -10);
1245896831f5SEd Cashin 	complete(&k->rendez);	/* tell spawner we're running */
1246896831f5SEd Cashin 	do {
1247896831f5SEd Cashin 		spin_lock_irq(k->lock);
12488030d343SEd Cashin 		more = k->fn(k->id);
1249896831f5SEd Cashin 		if (!more) {
1250896831f5SEd Cashin 			add_wait_queue(k->waitq, &wait);
1251896831f5SEd Cashin 			__set_current_state(TASK_INTERRUPTIBLE);
1252896831f5SEd Cashin 		}
1253896831f5SEd Cashin 		spin_unlock_irq(k->lock);
1254896831f5SEd Cashin 		if (!more) {
1255896831f5SEd Cashin 			schedule();
1256896831f5SEd Cashin 			remove_wait_queue(k->waitq, &wait);
1257896831f5SEd Cashin 		} else
1258896831f5SEd Cashin 			cond_resched();
1259896831f5SEd Cashin 	} while (!kthread_should_stop());
1260896831f5SEd Cashin 	complete(&k->rendez);	/* tell spawner we're stopping */
1261896831f5SEd Cashin 	return 0;
1262896831f5SEd Cashin }
1263896831f5SEd Cashin 
1264eb086ec5SEd Cashin void
1265896831f5SEd Cashin aoe_ktstop(struct ktstate *k)
1266896831f5SEd Cashin {
1267896831f5SEd Cashin 	kthread_stop(k->task);
1268896831f5SEd Cashin 	wait_for_completion(&k->rendez);
1269896831f5SEd Cashin }
1270896831f5SEd Cashin 
1271eb086ec5SEd Cashin int
1272896831f5SEd Cashin aoe_ktstart(struct ktstate *k)
1273896831f5SEd Cashin {
1274896831f5SEd Cashin 	struct task_struct *task;
1275896831f5SEd Cashin 
1276896831f5SEd Cashin 	init_completion(&k->rendez);
1277f170168bSKees Cook 	task = kthread_run(kthread, k, "%s", k->name);
1278896831f5SEd Cashin 	if (task == NULL || IS_ERR(task))
1279896831f5SEd Cashin 		return -ENOMEM;
1280896831f5SEd Cashin 	k->task = task;
1281896831f5SEd Cashin 	wait_for_completion(&k->rendez); /* allow kthread to start */
1282896831f5SEd Cashin 	init_completion(&k->rendez);	/* for waiting for exit later */
1283896831f5SEd Cashin 	return 0;
1284896831f5SEd Cashin }
1285896831f5SEd Cashin 
1286896831f5SEd Cashin /* pass it off to kthreads for processing */
1287896831f5SEd Cashin static void
1288896831f5SEd Cashin ktcomplete(struct frame *f, struct sk_buff *skb)
1289896831f5SEd Cashin {
12908030d343SEd Cashin 	int id;
1291896831f5SEd Cashin 	ulong flags;
1292896831f5SEd Cashin 
1293896831f5SEd Cashin 	f->r_skb = skb;
12948030d343SEd Cashin 	id = f->t->d->aoeminor % ncpus;
12958030d343SEd Cashin 	spin_lock_irqsave(&iocq[id].lock, flags);
12968030d343SEd Cashin 	if (!kts[id].active) {
12978030d343SEd Cashin 		spin_unlock_irqrestore(&iocq[id].lock, flags);
12988030d343SEd Cashin 		/* The thread with id has not been spawned yet,
12998030d343SEd Cashin 		 * so delegate the work to the main thread and
13008030d343SEd Cashin 		 * try spawning a new thread.
13018030d343SEd Cashin 		 */
13028030d343SEd Cashin 		id = 0;
13038030d343SEd Cashin 		spin_lock_irqsave(&iocq[id].lock, flags);
13048030d343SEd Cashin 	}
13058030d343SEd Cashin 	list_add_tail(&f->head, &iocq[id].head);
13068030d343SEd Cashin 	spin_unlock_irqrestore(&iocq[id].lock, flags);
13078030d343SEd Cashin 	wake_up(&ktiowq[id]);
1308896831f5SEd Cashin }
1309896831f5SEd Cashin 
1310896831f5SEd Cashin struct sk_buff *
1311896831f5SEd Cashin aoecmd_ata_rsp(struct sk_buff *skb)
1312896831f5SEd Cashin {
1313896831f5SEd Cashin 	struct aoedev *d;
1314896831f5SEd Cashin 	struct aoe_hdr *h;
1315896831f5SEd Cashin 	struct frame *f;
1316896831f5SEd Cashin 	u32 n;
13171da177e4SLinus Torvalds 	ulong flags;
13181da177e4SLinus Torvalds 	char ebuf[128];
131932465c65Secashin@coraid.com 	u16 aoemajor;
13201da177e4SLinus Torvalds 
1321896831f5SEd Cashin 	h = (struct aoe_hdr *) skb->data;
1322896831f5SEd Cashin 	aoemajor = be16_to_cpu(get_unaligned(&h->major));
13230c966214SEd Cashin 	d = aoedev_by_aoeaddr(aoemajor, h->minor, 0);
13241da177e4SLinus Torvalds 	if (d == NULL) {
13251da177e4SLinus Torvalds 		snprintf(ebuf, sizeof ebuf, "aoecmd_ata_rsp: ata response "
13261da177e4SLinus Torvalds 			"for unknown device %d.%d\n",
1327896831f5SEd Cashin 			aoemajor, h->minor);
13281da177e4SLinus Torvalds 		aoechr_error(ebuf);
1329896831f5SEd Cashin 		return skb;
13301da177e4SLinus Torvalds 	}
13311da177e4SLinus Torvalds 
13321da177e4SLinus Torvalds 	spin_lock_irqsave(&d->lock, flags);
13331da177e4SLinus Torvalds 
1334896831f5SEd Cashin 	n = be32_to_cpu(get_unaligned(&h->tag));
133564a80f5aSEd Cashin 	f = getframe(d, n);
13363a0c40d2SEd Cashin 	if (f) {
13375f0c9c48SEd Cashin 		calc_rttavg(d, f->t, tsince_hr(f));
13383a0c40d2SEd Cashin 		f->t->nout--;
1339bbb44e30SEd Cashin 		if (f->flags & FFL_PROBE)
1340bbb44e30SEd Cashin 			f->t->nout_probes--;
13413a0c40d2SEd Cashin 	} else {
13423a0c40d2SEd Cashin 		f = getframe_deferred(d, n);
13433a0c40d2SEd Cashin 		if (f) {
13445f0c9c48SEd Cashin 			calc_rttavg(d, NULL, tsince_hr(f));
13453a0c40d2SEd Cashin 		} else {
13463a0c40d2SEd Cashin 			calc_rttavg(d, NULL, tsince(n));
13471da177e4SLinus Torvalds 			spin_unlock_irqrestore(&d->lock, flags);
134869cf2d85SEd Cashin 			aoedev_put(d);
13493a0c40d2SEd Cashin 			snprintf(ebuf, sizeof(ebuf),
13502292a7e1SEd Cashin 				 "%15s e%d.%d    tag=%08x@%08lx s=%pm d=%pm\n",
13511da177e4SLinus Torvalds 				 "unexpected rsp",
1352896831f5SEd Cashin 				 get_unaligned_be16(&h->major),
1353896831f5SEd Cashin 				 h->minor,
1354896831f5SEd Cashin 				 get_unaligned_be32(&h->tag),
13552292a7e1SEd Cashin 				 jiffies,
13562292a7e1SEd Cashin 				 h->src,
13572292a7e1SEd Cashin 				 h->dst);
13581da177e4SLinus Torvalds 			aoechr_error(ebuf);
1359896831f5SEd Cashin 			return skb;
13601da177e4SLinus Torvalds 		}
13613a0c40d2SEd Cashin 	}
13621da177e4SLinus Torvalds 	aoecmd_work(d);
13631da177e4SLinus Torvalds 
13641da177e4SLinus Torvalds 	spin_unlock_irqrestore(&d->lock, flags);
1365896831f5SEd Cashin 
1366896831f5SEd Cashin 	ktcomplete(f, skb);
1367896831f5SEd Cashin 
1368896831f5SEd Cashin 	/*
1369896831f5SEd Cashin 	 * Note here that we do not perform an aoedev_put, as we are
1370896831f5SEd Cashin 	 * leaving this reference for the ktio to release.
1371896831f5SEd Cashin 	 */
1372896831f5SEd Cashin 	return NULL;
13731da177e4SLinus Torvalds }
13741da177e4SLinus Torvalds 
13751da177e4SLinus Torvalds void
13761da177e4SLinus Torvalds aoecmd_cfg(ushort aoemajor, unsigned char aoeminor)
13771da177e4SLinus Torvalds {
1378e9bb8fb0SDavid S. Miller 	struct sk_buff_head queue;
13791da177e4SLinus Torvalds 
1380e9bb8fb0SDavid S. Miller 	__skb_queue_head_init(&queue);
1381e9bb8fb0SDavid S. Miller 	aoecmd_cfg_pkts(aoemajor, aoeminor, &queue);
1382e9bb8fb0SDavid S. Miller 	aoenet_xmit(&queue);
13831da177e4SLinus Torvalds }
13841da177e4SLinus Torvalds 
138568e0d42fSEd L. Cashin struct sk_buff *
13861da177e4SLinus Torvalds aoecmd_ata_id(struct aoedev *d)
13871da177e4SLinus Torvalds {
13881da177e4SLinus Torvalds 	struct aoe_hdr *h;
13891da177e4SLinus Torvalds 	struct aoe_atahdr *ah;
13901da177e4SLinus Torvalds 	struct frame *f;
13911da177e4SLinus Torvalds 	struct sk_buff *skb;
139268e0d42fSEd L. Cashin 	struct aoetgt *t;
13931da177e4SLinus Torvalds 
1394896831f5SEd Cashin 	f = newframe(d);
139568e0d42fSEd L. Cashin 	if (f == NULL)
13961da177e4SLinus Torvalds 		return NULL;
139768e0d42fSEd L. Cashin 
139868e0d42fSEd L. Cashin 	t = *d->tgt;
13991da177e4SLinus Torvalds 
14001da177e4SLinus Torvalds 	/* initialize the headers & frame */
1401e407a7f6SEd L. Cashin 	skb = f->skb;
1402abdbf94dSEd L. Cashin 	h = (struct aoe_hdr *) skb_mac_header(skb);
14031da177e4SLinus Torvalds 	ah = (struct aoe_atahdr *) (h+1);
140419900cdeSEd L. Cashin 	skb_put(skb, sizeof *h + sizeof *ah);
140519900cdeSEd L. Cashin 	memset(h, 0, skb->len);
140668e0d42fSEd L. Cashin 	f->tag = aoehdr_atainit(d, t, h);
1407896831f5SEd Cashin 	fhash(f);
140868e0d42fSEd L. Cashin 	t->nout++;
14091da177e4SLinus Torvalds 	f->waited = 0;
14103fc9b032SEd Cashin 	f->waited_total = 0;
14111da177e4SLinus Torvalds 
14121da177e4SLinus Torvalds 	/* set up ata header */
14131da177e4SLinus Torvalds 	ah->scnt = 1;
141404b3ab52SBartlomiej Zolnierkiewicz 	ah->cmdstat = ATA_CMD_ID_ATA;
14151da177e4SLinus Torvalds 	ah->lba3 = 0xa0;
14161da177e4SLinus Torvalds 
141768e0d42fSEd L. Cashin 	skb->dev = t->ifp->nd;
14181da177e4SLinus Torvalds 
14193a0c40d2SEd Cashin 	d->rttavg = RTTAVG_INIT;
14203a0c40d2SEd Cashin 	d->rttdev = RTTDEV_INIT;
1421841b86f3SKees Cook 	d->timer.function = rexmit_timer;
14221da177e4SLinus Torvalds 
14235f0c9c48SEd Cashin 	skb = skb_clone(skb, GFP_ATOMIC);
142485cf955dSTina Ruchandani 	if (skb)
142585cf955dSTina Ruchandani 		f->sent = ktime_get();
14265f0c9c48SEd Cashin 
14275f0c9c48SEd Cashin 	return skb;
14281da177e4SLinus Torvalds }
14291da177e4SLinus Torvalds 
143071114ec4SEd Cashin static struct aoetgt **
143171114ec4SEd Cashin grow_targets(struct aoedev *d)
143271114ec4SEd Cashin {
143371114ec4SEd Cashin 	ulong oldn, newn;
143471114ec4SEd Cashin 	struct aoetgt **tt;
143571114ec4SEd Cashin 
143671114ec4SEd Cashin 	oldn = d->ntargets;
143771114ec4SEd Cashin 	newn = oldn * 2;
143871114ec4SEd Cashin 	tt = kcalloc(newn, sizeof(*d->targets), GFP_ATOMIC);
143971114ec4SEd Cashin 	if (!tt)
144071114ec4SEd Cashin 		return NULL;
144171114ec4SEd Cashin 	memmove(tt, d->targets, sizeof(*d->targets) * oldn);
144271114ec4SEd Cashin 	d->tgt = tt + (d->tgt - d->targets);
144371114ec4SEd Cashin 	kfree(d->targets);
144471114ec4SEd Cashin 	d->targets = tt;
144571114ec4SEd Cashin 	d->ntargets = newn;
144671114ec4SEd Cashin 
144771114ec4SEd Cashin 	return &d->targets[oldn];
144871114ec4SEd Cashin }
144971114ec4SEd Cashin 
145068e0d42fSEd L. Cashin static struct aoetgt *
145168e0d42fSEd L. Cashin addtgt(struct aoedev *d, char *addr, ulong nframes)
145268e0d42fSEd L. Cashin {
145368e0d42fSEd L. Cashin 	struct aoetgt *t, **tt, **te;
145468e0d42fSEd L. Cashin 
145568e0d42fSEd L. Cashin 	tt = d->targets;
145671114ec4SEd Cashin 	te = tt + d->ntargets;
145768e0d42fSEd L. Cashin 	for (; tt < te && *tt; tt++)
145868e0d42fSEd L. Cashin 		;
145968e0d42fSEd L. Cashin 
1460578c4aa0SEd L. Cashin 	if (tt == te) {
146171114ec4SEd Cashin 		tt = grow_targets(d);
146271114ec4SEd Cashin 		if (!tt)
146371114ec4SEd Cashin 			goto nomem;
1464578c4aa0SEd L. Cashin 	}
1465896831f5SEd Cashin 	t = kzalloc(sizeof(*t), GFP_ATOMIC);
146671114ec4SEd Cashin 	if (!t)
146771114ec4SEd Cashin 		goto nomem;
146868e0d42fSEd L. Cashin 	t->nframes = nframes;
1469896831f5SEd Cashin 	t->d = d;
147068e0d42fSEd L. Cashin 	memcpy(t->addr, addr, sizeof t->addr);
147168e0d42fSEd L. Cashin 	t->ifp = t->ifs;
14723a0c40d2SEd Cashin 	aoecmd_wreset(t);
1473bbb44e30SEd Cashin 	t->maxout = t->nframes / 2;
1474896831f5SEd Cashin 	INIT_LIST_HEAD(&t->ffree);
147568e0d42fSEd L. Cashin 	return *tt = t;
147671114ec4SEd Cashin 
147771114ec4SEd Cashin  nomem:
147871114ec4SEd Cashin 	pr_info("aoe: cannot allocate memory to add target\n");
147971114ec4SEd Cashin 	return NULL;
148068e0d42fSEd L. Cashin }
148168e0d42fSEd L. Cashin 
14823f0f0133SEd Cashin static void
14833f0f0133SEd Cashin setdbcnt(struct aoedev *d)
14843f0f0133SEd Cashin {
14853f0f0133SEd Cashin 	struct aoetgt **t, **e;
14863f0f0133SEd Cashin 	int bcnt = 0;
14873f0f0133SEd Cashin 
14883f0f0133SEd Cashin 	t = d->targets;
148971114ec4SEd Cashin 	e = t + d->ntargets;
14903f0f0133SEd Cashin 	for (; t < e && *t; t++)
14913f0f0133SEd Cashin 		if (bcnt == 0 || bcnt > (*t)->minbcnt)
14923f0f0133SEd Cashin 			bcnt = (*t)->minbcnt;
14933f0f0133SEd Cashin 	if (bcnt != d->maxbcnt) {
14943f0f0133SEd Cashin 		d->maxbcnt = bcnt;
14953f0f0133SEd Cashin 		pr_info("aoe: e%ld.%d: setting %d byte data frames\n",
14963f0f0133SEd Cashin 			d->aoemajor, d->aoeminor, bcnt);
14973f0f0133SEd Cashin 	}
14983f0f0133SEd Cashin }
14993f0f0133SEd Cashin 
15003f0f0133SEd Cashin static void
15013f0f0133SEd Cashin setifbcnt(struct aoetgt *t, struct net_device *nd, int bcnt)
15023f0f0133SEd Cashin {
15033f0f0133SEd Cashin 	struct aoedev *d;
15043f0f0133SEd Cashin 	struct aoeif *p, *e;
15053f0f0133SEd Cashin 	int minbcnt;
15063f0f0133SEd Cashin 
15073f0f0133SEd Cashin 	d = t->d;
15083f0f0133SEd Cashin 	minbcnt = bcnt;
15093f0f0133SEd Cashin 	p = t->ifs;
15103f0f0133SEd Cashin 	e = p + NAOEIFS;
15113f0f0133SEd Cashin 	for (; p < e; p++) {
15123f0f0133SEd Cashin 		if (p->nd == NULL)
15133f0f0133SEd Cashin 			break;		/* end of the valid interfaces */
15143f0f0133SEd Cashin 		if (p->nd == nd) {
15153f0f0133SEd Cashin 			p->bcnt = bcnt;	/* we're updating */
15163f0f0133SEd Cashin 			nd = NULL;
15173f0f0133SEd Cashin 		} else if (minbcnt > p->bcnt)
15183f0f0133SEd Cashin 			minbcnt = p->bcnt; /* find the min interface */
15193f0f0133SEd Cashin 	}
15203f0f0133SEd Cashin 	if (nd) {
15213f0f0133SEd Cashin 		if (p == e) {
15223f0f0133SEd Cashin 			pr_err("aoe: device setifbcnt failure; too many interfaces.\n");
15233f0f0133SEd Cashin 			return;
15243f0f0133SEd Cashin 		}
15251b86fda9SEd Cashin 		dev_hold(nd);
15263f0f0133SEd Cashin 		p->nd = nd;
15273f0f0133SEd Cashin 		p->bcnt = bcnt;
15283f0f0133SEd Cashin 	}
15293f0f0133SEd Cashin 	t->minbcnt = minbcnt;
15303f0f0133SEd Cashin 	setdbcnt(d);
15313f0f0133SEd Cashin }
15323f0f0133SEd Cashin 
15331da177e4SLinus Torvalds void
15341da177e4SLinus Torvalds aoecmd_cfg_rsp(struct sk_buff *skb)
15351da177e4SLinus Torvalds {
15361da177e4SLinus Torvalds 	struct aoedev *d;
15371da177e4SLinus Torvalds 	struct aoe_hdr *h;
15381da177e4SLinus Torvalds 	struct aoe_cfghdr *ch;
153968e0d42fSEd L. Cashin 	struct aoetgt *t;
15400c966214SEd Cashin 	ulong flags, aoemajor;
15411da177e4SLinus Torvalds 	struct sk_buff *sl;
154269cf2d85SEd Cashin 	struct sk_buff_head queue;
154319bf2635SEd L. Cashin 	u16 n;
15441da177e4SLinus Torvalds 
154569cf2d85SEd Cashin 	sl = NULL;
1546abdbf94dSEd L. Cashin 	h = (struct aoe_hdr *) skb_mac_header(skb);
15471da177e4SLinus Torvalds 	ch = (struct aoe_cfghdr *) (h+1);
15481da177e4SLinus Torvalds 
15491da177e4SLinus Torvalds 	/*
15501da177e4SLinus Torvalds 	 * Enough people have their dip switches set backwards to
15511da177e4SLinus Torvalds 	 * warrant a loud message for this special case.
15521da177e4SLinus Torvalds 	 */
1553823ed72eSHarvey Harrison 	aoemajor = get_unaligned_be16(&h->major);
15541da177e4SLinus Torvalds 	if (aoemajor == 0xfff) {
1555a12c93f0SEd L. Cashin 		printk(KERN_ERR "aoe: Warning: shelf address is all ones.  "
15566bb6285fSEd L. Cashin 			"Check shelf dip switches.\n");
15571da177e4SLinus Torvalds 		return;
15581da177e4SLinus Torvalds 	}
15597159e969SEd Cashin 	if (aoemajor == 0xffff) {
15607159e969SEd Cashin 		pr_info("aoe: e%ld.%d: broadcast shelf number invalid\n",
15610c966214SEd Cashin 			aoemajor, (int) h->minor);
15626583303cSEd Cashin 		return;
15636583303cSEd Cashin 	}
15647159e969SEd Cashin 	if (h->minor == 0xff) {
15657159e969SEd Cashin 		pr_info("aoe: e%ld.%d: broadcast slot number invalid\n",
15667159e969SEd Cashin 			aoemajor, (int) h->minor);
15671da177e4SLinus Torvalds 		return;
15681da177e4SLinus Torvalds 	}
15691da177e4SLinus Torvalds 
157019bf2635SEd L. Cashin 	n = be16_to_cpu(ch->bufcnt);
15717df620d8SEd L. Cashin 	if (n > aoe_maxout)	/* keep it reasonable */
15727df620d8SEd L. Cashin 		n = aoe_maxout;
15731da177e4SLinus Torvalds 
15747159e969SEd Cashin 	d = aoedev_by_aoeaddr(aoemajor, h->minor, 1);
15757159e969SEd Cashin 	if (d == NULL) {
15767159e969SEd Cashin 		pr_info("aoe: device allocation failure\n");
15777159e969SEd Cashin 		return;
15787159e969SEd Cashin 	}
15797159e969SEd Cashin 
15801da177e4SLinus Torvalds 	spin_lock_irqsave(&d->lock, flags);
15811da177e4SLinus Torvalds 
158268e0d42fSEd L. Cashin 	t = gettgt(d, h->src);
15831b8a1636SEd Cashin 	if (t) {
15841b8a1636SEd Cashin 		t->nframes = n;
15851b8a1636SEd Cashin 		if (n < t->maxout)
15863a0c40d2SEd Cashin 			aoecmd_wreset(t);
15871b8a1636SEd Cashin 	} else {
158868e0d42fSEd L. Cashin 		t = addtgt(d, h->src, n);
158969cf2d85SEd Cashin 		if (!t)
159069cf2d85SEd Cashin 			goto bail;
159168e0d42fSEd L. Cashin 	}
15923f0f0133SEd Cashin 	n = skb->dev->mtu;
159319bf2635SEd L. Cashin 	n -= sizeof(struct aoe_hdr) + sizeof(struct aoe_atahdr);
159419bf2635SEd L. Cashin 	n /= 512;
159519bf2635SEd L. Cashin 	if (n > ch->scnt)
159619bf2635SEd L. Cashin 		n = ch->scnt;
15974f51dc5eSEd L. Cashin 	n = n ? n * 512 : DEFAULTBCNT;
15983f0f0133SEd Cashin 	setifbcnt(t, skb->dev, n);
15993ae1c24eSEd L. Cashin 
16003ae1c24eSEd L. Cashin 	/* don't change users' perspective */
160169cf2d85SEd Cashin 	if (d->nopen == 0) {
160263e9cc5dSecashin@coraid.com 		d->fw_ver = be16_to_cpu(ch->fwver);
160368e0d42fSEd L. Cashin 		sl = aoecmd_ata_id(d);
160469cf2d85SEd Cashin 	}
160569cf2d85SEd Cashin bail:
16061da177e4SLinus Torvalds 	spin_unlock_irqrestore(&d->lock, flags);
160769cf2d85SEd Cashin 	aoedev_put(d);
1608e9bb8fb0SDavid S. Miller 	if (sl) {
1609e9bb8fb0SDavid S. Miller 		__skb_queue_head_init(&queue);
1610e9bb8fb0SDavid S. Miller 		__skb_queue_tail(&queue, sl);
1611e9bb8fb0SDavid S. Miller 		aoenet_xmit(&queue);
1612e9bb8fb0SDavid S. Miller 	}
16131da177e4SLinus Torvalds }
16141da177e4SLinus Torvalds 
161568e0d42fSEd L. Cashin void
16163a0c40d2SEd Cashin aoecmd_wreset(struct aoetgt *t)
16173a0c40d2SEd Cashin {
16183a0c40d2SEd Cashin 	t->maxout = 1;
16193a0c40d2SEd Cashin 	t->ssthresh = t->nframes / 2;
16203a0c40d2SEd Cashin 	t->next_cwnd = t->nframes;
16213a0c40d2SEd Cashin }
16223a0c40d2SEd Cashin 
16233a0c40d2SEd Cashin void
162468e0d42fSEd L. Cashin aoecmd_cleanslate(struct aoedev *d)
162568e0d42fSEd L. Cashin {
162668e0d42fSEd L. Cashin 	struct aoetgt **t, **te;
162768e0d42fSEd L. Cashin 
16283a0c40d2SEd Cashin 	d->rttavg = RTTAVG_INIT;
16293a0c40d2SEd Cashin 	d->rttdev = RTTDEV_INIT;
16303f0f0133SEd Cashin 	d->maxbcnt = 0;
163168e0d42fSEd L. Cashin 
163268e0d42fSEd L. Cashin 	t = d->targets;
163371114ec4SEd Cashin 	te = t + d->ntargets;
16343f0f0133SEd Cashin 	for (; t < te && *t; t++)
16353a0c40d2SEd Cashin 		aoecmd_wreset(*t);
163668e0d42fSEd L. Cashin }
1637896831f5SEd Cashin 
163869cf2d85SEd Cashin void
163969cf2d85SEd Cashin aoe_failbuf(struct aoedev *d, struct buf *buf)
164069cf2d85SEd Cashin {
164169cf2d85SEd Cashin 	if (buf == NULL)
164269cf2d85SEd Cashin 		return;
1643feb261e2SKent Overstreet 	buf->iter.bi_size = 0;
16444e4cbee9SChristoph Hellwig 	buf->bio->bi_status = BLK_STS_IOERR;
164569cf2d85SEd Cashin 	if (buf->nframesout == 0)
164669cf2d85SEd Cashin 		aoe_end_buf(d, buf);
164769cf2d85SEd Cashin }
164869cf2d85SEd Cashin 
164969cf2d85SEd Cashin void
165069cf2d85SEd Cashin aoe_flush_iocq(void)
1651896831f5SEd Cashin {
16528030d343SEd Cashin 	int i;
16538030d343SEd Cashin 
16548030d343SEd Cashin 	for (i = 0; i < ncpus; i++) {
16558030d343SEd Cashin 		if (kts[i].active)
16568030d343SEd Cashin 			aoe_flush_iocq_by_index(i);
16578030d343SEd Cashin 	}
16588030d343SEd Cashin }
16598030d343SEd Cashin 
16608030d343SEd Cashin void
16618030d343SEd Cashin aoe_flush_iocq_by_index(int id)
16628030d343SEd Cashin {
1663896831f5SEd Cashin 	struct frame *f;
1664896831f5SEd Cashin 	struct aoedev *d;
1665896831f5SEd Cashin 	LIST_HEAD(flist);
1666896831f5SEd Cashin 	struct list_head *pos;
1667896831f5SEd Cashin 	struct sk_buff *skb;
1668896831f5SEd Cashin 	ulong flags;
1669896831f5SEd Cashin 
16708030d343SEd Cashin 	spin_lock_irqsave(&iocq[id].lock, flags);
16718030d343SEd Cashin 	list_splice_init(&iocq[id].head, &flist);
16728030d343SEd Cashin 	spin_unlock_irqrestore(&iocq[id].lock, flags);
1673896831f5SEd Cashin 	while (!list_empty(&flist)) {
1674896831f5SEd Cashin 		pos = flist.next;
1675896831f5SEd Cashin 		list_del(pos);
1676896831f5SEd Cashin 		f = list_entry(pos, struct frame, head);
1677896831f5SEd Cashin 		d = f->t->d;
1678896831f5SEd Cashin 		skb = f->r_skb;
1679896831f5SEd Cashin 		spin_lock_irqsave(&d->lock, flags);
1680896831f5SEd Cashin 		if (f->buf) {
1681896831f5SEd Cashin 			f->buf->nframesout--;
1682896831f5SEd Cashin 			aoe_failbuf(d, f->buf);
1683896831f5SEd Cashin 		}
1684896831f5SEd Cashin 		aoe_freetframe(f);
1685896831f5SEd Cashin 		spin_unlock_irqrestore(&d->lock, flags);
1686896831f5SEd Cashin 		dev_kfree_skb(skb);
168769cf2d85SEd Cashin 		aoedev_put(d);
1688896831f5SEd Cashin 	}
1689896831f5SEd Cashin }
1690896831f5SEd Cashin 
1691896831f5SEd Cashin int __init
1692896831f5SEd Cashin aoecmd_init(void)
1693896831f5SEd Cashin {
1694bbb44e30SEd Cashin 	void *p;
16958030d343SEd Cashin 	int i;
16968030d343SEd Cashin 	int ret;
1697bbb44e30SEd Cashin 
1698bbb44e30SEd Cashin 	/* get_zeroed_page returns page with ref count 1 */
169932d6bd90SMichal Hocko 	p = (void *) get_zeroed_page(GFP_KERNEL);
1700bbb44e30SEd Cashin 	if (!p)
1701bbb44e30SEd Cashin 		return -ENOMEM;
1702bbb44e30SEd Cashin 	empty_page = virt_to_page(p);
1703bbb44e30SEd Cashin 
17048030d343SEd Cashin 	ncpus = num_online_cpus();
17058030d343SEd Cashin 
17068030d343SEd Cashin 	iocq = kcalloc(ncpus, sizeof(struct iocq_ktio), GFP_KERNEL);
17078030d343SEd Cashin 	if (!iocq)
17088030d343SEd Cashin 		return -ENOMEM;
17098030d343SEd Cashin 
17108030d343SEd Cashin 	kts = kcalloc(ncpus, sizeof(struct ktstate), GFP_KERNEL);
17118030d343SEd Cashin 	if (!kts) {
17128030d343SEd Cashin 		ret = -ENOMEM;
17138030d343SEd Cashin 		goto kts_fail;
17148030d343SEd Cashin 	}
17158030d343SEd Cashin 
17168030d343SEd Cashin 	ktiowq = kcalloc(ncpus, sizeof(wait_queue_head_t), GFP_KERNEL);
17178030d343SEd Cashin 	if (!ktiowq) {
17188030d343SEd Cashin 		ret = -ENOMEM;
17198030d343SEd Cashin 		goto ktiowq_fail;
17208030d343SEd Cashin 	}
17218030d343SEd Cashin 
17228030d343SEd Cashin 	mutex_init(&ktio_spawn_lock);
17238030d343SEd Cashin 
17248030d343SEd Cashin 	for (i = 0; i < ncpus; i++) {
17258030d343SEd Cashin 		INIT_LIST_HEAD(&iocq[i].head);
17268030d343SEd Cashin 		spin_lock_init(&iocq[i].lock);
17278030d343SEd Cashin 		init_waitqueue_head(&ktiowq[i]);
17288030d343SEd Cashin 		snprintf(kts[i].name, sizeof(kts[i].name), "aoe_ktio%d", i);
17298030d343SEd Cashin 		kts[i].fn = ktio;
17308030d343SEd Cashin 		kts[i].waitq = &ktiowq[i];
17318030d343SEd Cashin 		kts[i].lock = &iocq[i].lock;
17328030d343SEd Cashin 		kts[i].id = i;
17338030d343SEd Cashin 		kts[i].active = 0;
17348030d343SEd Cashin 	}
17358030d343SEd Cashin 	kts[0].active = 1;
17368030d343SEd Cashin 	if (aoe_ktstart(&kts[0])) {
17378030d343SEd Cashin 		ret = -ENOMEM;
17388030d343SEd Cashin 		goto ktstart_fail;
17398030d343SEd Cashin 	}
17408030d343SEd Cashin 	return 0;
17418030d343SEd Cashin 
17428030d343SEd Cashin ktstart_fail:
17438030d343SEd Cashin 	kfree(ktiowq);
17448030d343SEd Cashin ktiowq_fail:
17458030d343SEd Cashin 	kfree(kts);
17468030d343SEd Cashin kts_fail:
17478030d343SEd Cashin 	kfree(iocq);
17488030d343SEd Cashin 
17498030d343SEd Cashin 	return ret;
1750896831f5SEd Cashin }
1751896831f5SEd Cashin 
1752896831f5SEd Cashin void
1753896831f5SEd Cashin aoecmd_exit(void)
1754896831f5SEd Cashin {
17558030d343SEd Cashin 	int i;
17568030d343SEd Cashin 
17578030d343SEd Cashin 	for (i = 0; i < ncpus; i++)
17588030d343SEd Cashin 		if (kts[i].active)
17598030d343SEd Cashin 			aoe_ktstop(&kts[i]);
17608030d343SEd Cashin 
176169cf2d85SEd Cashin 	aoe_flush_iocq();
1762bbb44e30SEd Cashin 
17638030d343SEd Cashin 	/* Free up the iocq and thread speicific configuration
17648030d343SEd Cashin 	* allocated during startup.
17658030d343SEd Cashin 	*/
17668030d343SEd Cashin 	kfree(iocq);
17678030d343SEd Cashin 	kfree(kts);
17688030d343SEd Cashin 	kfree(ktiowq);
17698030d343SEd Cashin 
1770bbb44e30SEd Cashin 	free_page((unsigned long) page_address(empty_page));
1771bbb44e30SEd Cashin 	empty_page = NULL;
1772896831f5SEd Cashin }
1773