rx.c 17.4 KB
Newer Older
1 2 3
/****************************************************************************
 * Driver for Solarflare Solarstorm network controllers and boards
 * Copyright 2005-2006 Fen Systems Ltd.
B
Ben Hutchings 已提交
4
 * Copyright 2005-2011 Solarflare Communications Inc.
5 6 7 8 9 10 11 12
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published
 * by the Free Software Foundation, incorporated herein by reference.
 */

#include <linux/socket.h>
#include <linux/in.h>
13
#include <linux/slab.h>
14 15 16
#include <linux/ip.h>
#include <linux/tcp.h>
#include <linux/udp.h>
17
#include <linux/prefetch.h>
18
#include <linux/moduleparam.h>
19 20 21 22
#include <net/ip.h>
#include <net/checksum.h>
#include "net_driver.h"
#include "efx.h"
B
Ben Hutchings 已提交
23
#include "nic.h"
24
#include "selftest.h"
25 26 27 28 29
#include "workarounds.h"

/* Number of RX descriptors pushed at once. */
#define EFX_RX_BATCH  8

30 31 32
/* Maximum length for an RX descriptor sharing a page */
#define EFX_RX_HALF_PAGE ((PAGE_SIZE >> 1) - sizeof(struct efx_rx_page_state) \
			  - EFX_PAGE_IP_ALIGN)
33

34 35 36 37 38 39
/* Size of buffer allocated for skb header area. */
#define EFX_SKB_HEADERS  64u

/* This is the percentage fill level below which new RX descriptors
 * will be added to the RX descriptor ring.
 */
40
static unsigned int rx_refill_threshold;
41 42 43 44 45

/*
 * RX maximum head room required.
 *
 * This must be at least 1 to prevent overflow and at least 2 to allow
46
 * pipelined receives.
47
 */
48
#define EFX_RXD_HEAD_ROOM 2
49

50 51 52
/* Offset of ethernet header within page */
static inline unsigned int efx_rx_buf_offset(struct efx_nic *efx,
					     struct efx_rx_buffer *buf)
53
{
54
	return buf->page_offset + efx->type->rx_buffer_hash_size;
55
}
56

57
static u8 *efx_rx_buf_eh(struct efx_nic *efx, struct efx_rx_buffer *buf)
58
{
59
	return page_address(buf->page) + efx_rx_buf_offset(efx, buf);
60 61 62 63 64
}

static inline u32 efx_rx_buf_hash(const u8 *eh)
{
	/* The ethernet header is always directly after any hash. */
65
#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) || NET_IP_ALIGN % 4 == 0
66
	return __le32_to_cpup((const __le32 *)(eh - 4));
67
#else
68
	const u8 *data = eh - 4;
69 70 71 72
	return (u32)data[0]	  |
	       (u32)data[1] << 8  |
	       (u32)data[2] << 16 |
	       (u32)data[3] << 24;
73 74 75
#endif
}

76
/**
77
 * efx_init_rx_buffers - create EFX_RX_BATCH page-based RX buffers
78 79 80
 *
 * @rx_queue:		Efx RX queue
 *
81 82 83 84
 * This allocates memory for EFX_RX_BATCH receive buffers, maps them for DMA,
 * and populates struct efx_rx_buffers for each one. Return a negative error
 * code or 0 on success. If a single page can be split between two buffers,
 * then the page will either be inserted fully, or not at at all.
85
 */
86
static int efx_init_rx_buffers(struct efx_rx_queue *rx_queue)
87 88
{
	struct efx_nic *efx = rx_queue->efx;
89 90
	struct efx_rx_buffer *rx_buf;
	struct page *page;
91
	unsigned int page_offset;
92
	struct efx_rx_page_state *state;
93 94 95 96 97 98 99 100 101 102
	dma_addr_t dma_addr;
	unsigned index, count;

	/* We can split a page between two buffers */
	BUILD_BUG_ON(EFX_RX_BATCH & 1);

	for (count = 0; count < EFX_RX_BATCH; ++count) {
		page = alloc_pages(__GFP_COLD | __GFP_COMP | GFP_ATOMIC,
				   efx->rx_buffer_order);
		if (unlikely(page == NULL))
103
			return -ENOMEM;
104
		dma_addr = dma_map_page(&efx->pci_dev->dev, page, 0,
105
					PAGE_SIZE << efx->rx_buffer_order,
106 107
					DMA_FROM_DEVICE);
		if (unlikely(dma_mapping_error(&efx->pci_dev->dev, dma_addr))) {
108
			__free_pages(page, efx->rx_buffer_order);
109 110
			return -EIO;
		}
111
		state = page_address(page);
112 113 114 115
		state->refcnt = 0;
		state->dma_addr = dma_addr;

		dma_addr += sizeof(struct efx_rx_page_state);
116
		page_offset = sizeof(struct efx_rx_page_state);
117 118

	split:
119
		index = rx_queue->added_count & rx_queue->ptr_mask;
120
		rx_buf = efx_rx_buffer(rx_queue, index);
121
		rx_buf->dma_addr = dma_addr + EFX_PAGE_IP_ALIGN;
122
		rx_buf->page = page;
123
		rx_buf->page_offset = page_offset + EFX_PAGE_IP_ALIGN;
124
		rx_buf->len = efx->rx_dma_len;
125
		rx_buf->flags = 0;
126
		++rx_queue->added_count;
127
		++state->refcnt;
128

129
		if ((~count & 1) && (efx->rx_dma_len <= EFX_RX_HALF_PAGE)) {
130 131 132
			/* Use the second half of the page */
			get_page(page);
			dma_addr += (PAGE_SIZE >> 1);
133
			page_offset += (PAGE_SIZE >> 1);
134 135
			++count;
			goto split;
136 137 138 139 140 141
		}
	}

	return 0;
}

142
static void efx_unmap_rx_buffer(struct efx_nic *efx,
143 144
				struct efx_rx_buffer *rx_buf,
				unsigned int used_len)
145
{
146
	if (rx_buf->page) {
147 148
		struct efx_rx_page_state *state;

149
		state = page_address(rx_buf->page);
150
		if (--state->refcnt == 0) {
151
			dma_unmap_page(&efx->pci_dev->dev,
152
				       state->dma_addr,
153
				       PAGE_SIZE << efx->rx_buffer_order,
154
				       DMA_FROM_DEVICE);
155 156 157 158
		} else if (used_len) {
			dma_sync_single_for_cpu(&efx->pci_dev->dev,
						rx_buf->dma_addr, used_len,
						DMA_FROM_DEVICE);
159 160 161 162
		}
	}
}

163 164
static void efx_free_rx_buffer(struct efx_nic *efx,
			       struct efx_rx_buffer *rx_buf)
165
{
166 167 168
	if (rx_buf->page) {
		__free_pages(rx_buf->page, efx->rx_buffer_order);
		rx_buf->page = NULL;
169 170 171
	}
}

172 173
static void efx_fini_rx_buffer(struct efx_rx_queue *rx_queue,
			       struct efx_rx_buffer *rx_buf)
174
{
175
	efx_unmap_rx_buffer(rx_queue->efx, rx_buf, 0);
176 177 178
	efx_free_rx_buffer(rx_queue->efx, rx_buf);
}

179 180 181 182 183
/* Attempt to resurrect the other receive buffer that used to share this page,
 * which had previously been passed up to the kernel and freed. */
static void efx_resurrect_rx_buffer(struct efx_rx_queue *rx_queue,
				    struct efx_rx_buffer *rx_buf)
{
184
	struct efx_rx_page_state *state = page_address(rx_buf->page);
185
	struct efx_rx_buffer *new_buf;
186 187 188 189 190 191
	unsigned fill_level, index;

	/* +1 because efx_rx_packet() incremented removed_count. +1 because
	 * we'd like to insert an additional descriptor whilst leaving
	 * EFX_RXD_HEAD_ROOM for the non-recycle path */
	fill_level = (rx_queue->added_count - rx_queue->removed_count + 2);
192
	if (unlikely(fill_level > rx_queue->max_fill)) {
193 194 195 196
		/* We could place "state" on a list, and drain the list in
		 * efx_fast_push_rx_descriptors(). For now, this will do. */
		return;
	}
197

198
	++state->refcnt;
199
	get_page(rx_buf->page);
200

201
	index = rx_queue->added_count & rx_queue->ptr_mask;
202
	new_buf = efx_rx_buffer(rx_queue, index);
203
	new_buf->dma_addr = rx_buf->dma_addr ^ (PAGE_SIZE >> 1);
204
	new_buf->page = rx_buf->page;
205 206 207 208 209 210 211 212 213 214
	new_buf->len = rx_buf->len;
	++rx_queue->added_count;
}

/* Recycle the given rx buffer directly back into the rx_queue. There is
 * always room to add this buffer, because we've just popped a buffer. */
static void efx_recycle_rx_buffer(struct efx_channel *channel,
				  struct efx_rx_buffer *rx_buf)
{
	struct efx_nic *efx = channel->efx;
215
	struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
216 217 218
	struct efx_rx_buffer *new_buf;
	unsigned index;

219
	rx_buf->flags = 0;
220

221
	if (efx->rx_dma_len <= EFX_RX_HALF_PAGE &&
222
	    page_count(rx_buf->page) == 1)
223
		efx_resurrect_rx_buffer(rx_queue, rx_buf);
224

225
	index = rx_queue->added_count & rx_queue->ptr_mask;
226 227 228
	new_buf = efx_rx_buffer(rx_queue, index);

	memcpy(new_buf, rx_buf, sizeof(*new_buf));
229
	rx_buf->page = NULL;
230 231 232
	++rx_queue->added_count;
}

233 234 235
/**
 * efx_fast_push_rx_descriptors - push new RX descriptors quickly
 * @rx_queue:		RX descriptor queue
236
 *
237
 * This will aim to fill the RX descriptor queue up to
238
 * @rx_queue->@max_fill. If there is insufficient atomic
239 240 241 242 243
 * memory to do so, a slow fill will be scheduled.
 *
 * The caller must provide serialisation (none is used here). In practise,
 * this means this function must run from the NAPI handler, or be called
 * when NAPI is disabled.
244
 */
245
void efx_fast_push_rx_descriptors(struct efx_rx_queue *rx_queue)
246
{
247 248
	unsigned fill_level;
	int space, rc = 0;
249

250
	/* Calculate current fill level, and exit if we don't need to fill */
251
	fill_level = (rx_queue->added_count - rx_queue->removed_count);
252
	EFX_BUG_ON_PARANOID(fill_level > rx_queue->efx->rxq_entries);
253
	if (fill_level >= rx_queue->fast_fill_trigger)
254
		goto out;
255 256

	/* Record minimum fill level */
257
	if (unlikely(fill_level < rx_queue->min_fill)) {
258 259
		if (fill_level)
			rx_queue->min_fill = fill_level;
260
	}
261

262
	space = rx_queue->max_fill - fill_level;
263
	EFX_BUG_ON_PARANOID(space < EFX_RX_BATCH);
264

265 266
	netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev,
		   "RX queue %d fast-filling descriptor ring from"
267
		   " level %d to level %d\n",
268
		   efx_rx_queue_index(rx_queue), fill_level,
269 270
		   rx_queue->max_fill);

271 272

	do {
273
		rc = efx_init_rx_buffers(rx_queue);
274 275 276 277 278
		if (unlikely(rc)) {
			/* Ensure that we don't leave the rx queue empty */
			if (rx_queue->added_count == rx_queue->removed_count)
				efx_schedule_slow_fill(rx_queue);
			goto out;
279 280 281
		}
	} while ((space -= EFX_RX_BATCH) >= EFX_RX_BATCH);

282 283
	netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev,
		   "RX queue %d fast-filled descriptor ring "
284
		   "to level %d\n", efx_rx_queue_index(rx_queue),
285
		   rx_queue->added_count - rx_queue->removed_count);
286 287

 out:
288 289
	if (rx_queue->notified_count != rx_queue->added_count)
		efx_nic_notify_rx_desc(rx_queue);
290 291
}

292
void efx_rx_slow_fill(unsigned long context)
293
{
294
	struct efx_rx_queue *rx_queue = (struct efx_rx_queue *)context;
295

296
	/* Post an event to cause NAPI to run and refill the queue */
297
	efx_nic_generate_fill_event(rx_queue);
298 299 300
	++rx_queue->slow_fill_count;
}

301 302
static void efx_rx_packet__check_len(struct efx_rx_queue *rx_queue,
				     struct efx_rx_buffer *rx_buf,
303
				     int len)
304 305 306 307 308 309 310 311 312 313
{
	struct efx_nic *efx = rx_queue->efx;
	unsigned max_len = rx_buf->len - efx->type->rx_buffer_padding;

	if (likely(len <= max_len))
		return;

	/* The packet must be discarded, but this is only a fatal error
	 * if the caller indicated it was
	 */
314
	rx_buf->flags |= EFX_RX_PKT_DISCARD;
315 316

	if ((len > rx_buf->len) && EFX_WORKAROUND_8071(efx)) {
317 318 319 320
		if (net_ratelimit())
			netif_err(efx, rx_err, efx->net_dev,
				  " RX queue %d seriously overlength "
				  "RX event (0x%x > 0x%x+0x%x). Leaking\n",
321
				  efx_rx_queue_index(rx_queue), len, max_len,
322
				  efx->type->rx_buffer_padding);
323 324
		efx_schedule_reset(efx, RESET_TYPE_RX_RECOVERY);
	} else {
325 326 327 328
		if (net_ratelimit())
			netif_err(efx, rx_err, efx->net_dev,
				  " RX queue %d overlength RX event "
				  "(0x%x > 0x%x)\n",
329
				  efx_rx_queue_index(rx_queue), len, max_len);
330 331
	}

332
	efx_rx_queue_channel(rx_queue)->n_rx_overlength++;
333 334
}

335 336
/* Pass a received packet up through GRO.  GRO can handle pages
 * regardless of checksum state and skbs with a good checksum.
337
 */
338
static void efx_rx_packet_gro(struct efx_channel *channel,
339
			      struct efx_rx_buffer *rx_buf,
340
			      const u8 *eh)
341
{
H
Herbert Xu 已提交
342
	struct napi_struct *napi = &channel->napi_str;
343
	gro_result_t gro_result;
344 345 346
	struct efx_nic *efx = channel->efx;
	struct page *page = rx_buf->page;
	struct sk_buff *skb;
347

348
	rx_buf->page = NULL;
349

350 351 352 353 354
	skb = napi_get_frags(napi);
	if (!skb) {
		put_page(page);
		return;
	}
355

356 357
	if (efx->net_dev->features & NETIF_F_RXHASH)
		skb->rxhash = efx_rx_buf_hash(eh);
358

359 360
	skb_fill_page_desc(skb, 0, page,
			   efx_rx_buf_offset(efx, rx_buf), rx_buf->len);
361

362 363 364 365 366
	skb->len = rx_buf->len;
	skb->data_len = rx_buf->len;
	skb->truesize += rx_buf->len;
	skb->ip_summed = ((rx_buf->flags & EFX_RX_PKT_CSUMMED) ?
			  CHECKSUM_UNNECESSARY : CHECKSUM_NONE);
367

368
	skb_record_rx_queue(skb, channel->rx_queue.core_index);
369

370
		gro_result = napi_gro_frags(napi);
371

372 373 374
	if (gro_result != GRO_DROP)
		channel->irq_mod_score += 2;
}
375

376 377 378 379 380 381 382
/* Allocate and construct an SKB around a struct page.*/
static struct sk_buff *efx_rx_mk_skb(struct efx_channel *channel,
				     struct efx_rx_buffer *rx_buf,
				     u8 *eh, int hdr_len)
{
	struct efx_nic *efx = channel->efx;
	struct sk_buff *skb;
383

384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
	/* Allocate an SKB to store the headers */
	skb = netdev_alloc_skb(efx->net_dev, hdr_len + EFX_PAGE_SKB_ALIGN);
	if (unlikely(skb == NULL))
		return NULL;

	EFX_BUG_ON_PARANOID(rx_buf->len < hdr_len);

	skb_reserve(skb, EFX_PAGE_SKB_ALIGN);

	skb->len = rx_buf->len;
	skb->truesize = rx_buf->len + sizeof(struct sk_buff);
	memcpy(skb->data, eh, hdr_len);
	skb->tail += hdr_len;

	/* Append the remaining page onto the frag list */
	if (rx_buf->len > hdr_len) {
		skb->data_len = skb->len - hdr_len;
		skb_fill_page_desc(skb, 0, rx_buf->page,
				   efx_rx_buf_offset(efx, rx_buf) + hdr_len,
				   skb->data_len);
	} else {
		__free_pages(rx_buf->page, efx->rx_buffer_order);
		skb->data_len = 0;
407
	}
408 409 410 411 412 413 414 415

	/* Ownership has transferred from the rx_buf to skb */
	rx_buf->page = NULL;

	/* Move past the ethernet header */
	skb->protocol = eth_type_trans(skb, efx->net_dev);

	return skb;
416 417 418
}

void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index,
419
		   unsigned int len, u16 flags)
420 421
{
	struct efx_nic *efx = rx_queue->efx;
422
	struct efx_channel *channel = efx_rx_queue_channel(rx_queue);
423 424 425
	struct efx_rx_buffer *rx_buf;

	rx_buf = efx_rx_buffer(rx_queue, index);
426
	rx_buf->flags |= flags;
427 428 429 430 431 432 433 434

	/* This allows the refill path to post another buffer.
	 * EFX_RXD_HEAD_ROOM ensures that the slot we are using
	 * isn't overwritten yet.
	 */
	rx_queue->removed_count++;

	/* Validate the length encoded in the event vs the descriptor pushed */
435
	efx_rx_packet__check_len(rx_queue, rx_buf, len);
436

437 438
	netif_vdbg(efx, rx_status, efx->net_dev,
		   "RX queue %d received id %x at %llx+%x %s%s\n",
439
		   efx_rx_queue_index(rx_queue), index,
440
		   (unsigned long long)rx_buf->dma_addr, len,
441 442
		   (rx_buf->flags & EFX_RX_PKT_CSUMMED) ? " [SUMMED]" : "",
		   (rx_buf->flags & EFX_RX_PKT_DISCARD) ? " [DISCARD]" : "");
443 444

	/* Discard packet, if instructed to do so */
445
	if (unlikely(rx_buf->flags & EFX_RX_PKT_DISCARD)) {
446
		efx_recycle_rx_buffer(channel, rx_buf);
447 448 449 450

		/* Don't hold off the previous receive */
		rx_buf = NULL;
		goto out;
451 452
	}

453 454
	/* Release and/or sync DMA mapping - assumes all RX buffers
	 * consumed in-order per RX queue
455
	 */
456
	efx_unmap_rx_buffer(efx, rx_buf, len);
457 458 459 460

	/* Prefetch nice and early so data will (hopefully) be in cache by
	 * the time we look at it.
	 */
461
	prefetch(efx_rx_buf_eh(efx, rx_buf));
462 463 464 465

	/* Pipeline receives so that we give time for packet headers to be
	 * prefetched into cache.
	 */
466
	rx_buf->len = len - efx->type->rx_buffer_hash_size;
467
out:
468
	if (channel->rx_pkt)
469
		__efx_rx_packet(channel, channel->rx_pkt);
470
	channel->rx_pkt = rx_buf;
471 472
}

473
static void efx_rx_deliver(struct efx_channel *channel, u8 *eh,
474 475 476
			   struct efx_rx_buffer *rx_buf)
{
	struct sk_buff *skb;
477
	u16 hdr_len = min_t(u16, rx_buf->len, EFX_SKB_HEADERS);
478

479 480 481 482 483 484
	skb = efx_rx_mk_skb(channel, rx_buf, eh, hdr_len);
	if (unlikely(skb == NULL)) {
		efx_free_rx_buffer(channel->efx, rx_buf);
		return;
	}
	skb_record_rx_queue(skb, channel->rx_queue.core_index);
485 486 487 488

	/* Set the SKB flags */
	skb_checksum_none_assert(skb);

489
	if (channel->type->receive_skb)
490
		if (channel->type->receive_skb(channel, skb))
491
			return;
492 493 494

	/* Pass the packet up */
	netif_receive_skb(skb);
495 496
}

497
/* Handle a received packet.  Second half: Touches packet payload. */
498
void __efx_rx_packet(struct efx_channel *channel, struct efx_rx_buffer *rx_buf)
499 500
{
	struct efx_nic *efx = channel->efx;
501
	u8 *eh = efx_rx_buf_eh(efx, rx_buf);
502

503 504 505 506
	/* If we're in loopback test, then pass the packet directly to the
	 * loopback layer, and free the rx_buf here
	 */
	if (unlikely(efx->loopback_selftest)) {
507
		efx_loopback_rx_packet(efx, eh, rx_buf->len);
508
		efx_free_rx_buffer(efx, rx_buf);
509
		return;
510 511
	}

512
	if (unlikely(!(efx->net_dev->features & NETIF_F_RXCSUM)))
513
		rx_buf->flags &= ~EFX_RX_PKT_CSUMMED;
514

515
	if (!channel->type->receive_skb)
516
		efx_rx_packet_gro(channel, rx_buf, eh);
517
	else
518
		efx_rx_deliver(channel, eh, rx_buf);
519 520 521 522 523
}

int efx_probe_rx_queue(struct efx_rx_queue *rx_queue)
{
	struct efx_nic *efx = rx_queue->efx;
524
	unsigned int entries;
525 526
	int rc;

527 528 529 530 531
	/* Create the smallest power-of-two aligned ring */
	entries = max(roundup_pow_of_two(efx->rxq_entries), EFX_MIN_DMAQ_SIZE);
	EFX_BUG_ON_PARANOID(entries > EFX_MAX_DMAQ_SIZE);
	rx_queue->ptr_mask = entries - 1;

532
	netif_dbg(efx, probe, efx->net_dev,
533 534 535
		  "creating RX queue %d size %#x mask %#x\n",
		  efx_rx_queue_index(rx_queue), efx->rxq_entries,
		  rx_queue->ptr_mask);
536 537

	/* Allocate RX buffers */
538
	rx_queue->buffer = kcalloc(entries, sizeof(*rx_queue->buffer),
539
				   GFP_KERNEL);
540 541
	if (!rx_queue->buffer)
		return -ENOMEM;
542

543
	rc = efx_nic_probe_rx(rx_queue);
544 545 546 547
	if (rc) {
		kfree(rx_queue->buffer);
		rx_queue->buffer = NULL;
	}
548 549 550
	return rc;
}

551
void efx_init_rx_queue(struct efx_rx_queue *rx_queue)
552
{
553
	struct efx_nic *efx = rx_queue->efx;
554
	unsigned int max_fill, trigger, max_trigger;
555

556
	netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
557
		  "initialising RX queue %d\n", efx_rx_queue_index(rx_queue));
558 559 560 561 562 563 564 565

	/* Initialise ptr fields */
	rx_queue->added_count = 0;
	rx_queue->notified_count = 0;
	rx_queue->removed_count = 0;
	rx_queue->min_fill = -1U;

	/* Initialise limit fields */
566
	max_fill = efx->rxq_entries - EFX_RXD_HEAD_ROOM;
567 568 569 570 571 572 573 574
	max_trigger = max_fill - EFX_RX_BATCH;
	if (rx_refill_threshold != 0) {
		trigger = max_fill * min(rx_refill_threshold, 100U) / 100U;
		if (trigger > max_trigger)
			trigger = max_trigger;
	} else {
		trigger = max_trigger;
	}
575 576 577 578 579

	rx_queue->max_fill = max_fill;
	rx_queue->fast_fill_trigger = trigger;

	/* Set up RX descriptor ring */
580
	rx_queue->enabled = true;
581
	efx_nic_init_rx(rx_queue);
582 583 584 585 586 587 588
}

void efx_fini_rx_queue(struct efx_rx_queue *rx_queue)
{
	int i;
	struct efx_rx_buffer *rx_buf;

589
	netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
590
		  "shutting down RX queue %d\n", efx_rx_queue_index(rx_queue));
591

592 593 594
	/* A flush failure might have left rx_queue->enabled */
	rx_queue->enabled = false;

595
	del_timer_sync(&rx_queue->slow_fill);
596
	efx_nic_fini_rx(rx_queue);
597 598 599

	/* Release RX buffers NB start at index 0 not current HW ptr */
	if (rx_queue->buffer) {
600
		for (i = 0; i <= rx_queue->ptr_mask; i++) {
601 602 603 604 605 606 607 608
			rx_buf = efx_rx_buffer(rx_queue, i);
			efx_fini_rx_buffer(rx_queue, rx_buf);
		}
	}
}

void efx_remove_rx_queue(struct efx_rx_queue *rx_queue)
{
609
	netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
610
		  "destroying RX queue %d\n", efx_rx_queue_index(rx_queue));
611

612
	efx_nic_remove_rx(rx_queue);
613 614 615 616 617 618 619 620

	kfree(rx_queue->buffer);
	rx_queue->buffer = NULL;
}


module_param(rx_refill_threshold, uint, 0444);
MODULE_PARM_DESC(rx_refill_threshold,
621
		 "RX descriptor ring refill threshold (%)");
622