1d48523cbSMartin Habets // SPDX-License-Identifier: GPL-2.0-only
2d48523cbSMartin Habets /****************************************************************************
3d48523cbSMartin Habets * Driver for Solarflare network controllers and boards
4d48523cbSMartin Habets * Copyright 2018 Solarflare Communications Inc.
5d48523cbSMartin Habets *
6d48523cbSMartin Habets * This program is free software; you can redistribute it and/or modify it
7d48523cbSMartin Habets * under the terms of the GNU General Public License version 2 as published
8d48523cbSMartin Habets * by the Free Software Foundation, incorporated herein by reference.
9d48523cbSMartin Habets */
10d48523cbSMartin Habets
11d48523cbSMartin Habets #include "net_driver.h"
12d48523cbSMartin Habets #include <linux/module.h>
13d48523cbSMartin Habets #include <linux/iommu.h>
14d48523cbSMartin Habets #include "efx.h"
15d48523cbSMartin Habets #include "nic.h"
16d48523cbSMartin Habets #include "rx_common.h"
17d48523cbSMartin Habets
18d48523cbSMartin Habets /* This is the percentage fill level below which new RX descriptors
19d48523cbSMartin Habets * will be added to the RX descriptor ring.
20d48523cbSMartin Habets */
21d48523cbSMartin Habets static unsigned int rx_refill_threshold;
22d48523cbSMartin Habets module_param(rx_refill_threshold, uint, 0444);
23d48523cbSMartin Habets MODULE_PARM_DESC(rx_refill_threshold,
24d48523cbSMartin Habets "RX descriptor ring refill threshold (%)");
25d48523cbSMartin Habets
26d48523cbSMartin Habets /* RX maximum head room required.
27d48523cbSMartin Habets *
28d48523cbSMartin Habets * This must be at least 1 to prevent overflow, plus one packet-worth
29d48523cbSMartin Habets * to allow pipelined receives.
30d48523cbSMartin Habets */
31d48523cbSMartin Habets #define EFX_RXD_HEAD_ROOM (1 + EFX_RX_MAX_FRAGS)
32d48523cbSMartin Habets
33*7f9e4b2aSMartin Habets static void efx_unmap_rx_buffer(struct efx_nic *efx,
34*7f9e4b2aSMartin Habets struct efx_rx_buffer *rx_buf);
35*7f9e4b2aSMartin Habets
36d48523cbSMartin Habets /* Check the RX page recycle ring for a page that can be reused. */
efx_reuse_page(struct efx_rx_queue * rx_queue)37d48523cbSMartin Habets static struct page *efx_reuse_page(struct efx_rx_queue *rx_queue)
38d48523cbSMartin Habets {
39d48523cbSMartin Habets struct efx_nic *efx = rx_queue->efx;
40d48523cbSMartin Habets struct efx_rx_page_state *state;
41d48523cbSMartin Habets unsigned int index;
42d48523cbSMartin Habets struct page *page;
43d48523cbSMartin Habets
44d48523cbSMartin Habets if (unlikely(!rx_queue->page_ring))
45d48523cbSMartin Habets return NULL;
46d48523cbSMartin Habets index = rx_queue->page_remove & rx_queue->page_ptr_mask;
47d48523cbSMartin Habets page = rx_queue->page_ring[index];
48d48523cbSMartin Habets if (page == NULL)
49d48523cbSMartin Habets return NULL;
50d48523cbSMartin Habets
51d48523cbSMartin Habets rx_queue->page_ring[index] = NULL;
52d48523cbSMartin Habets /* page_remove cannot exceed page_add. */
53d48523cbSMartin Habets if (rx_queue->page_remove != rx_queue->page_add)
54d48523cbSMartin Habets ++rx_queue->page_remove;
55d48523cbSMartin Habets
56d48523cbSMartin Habets /* If page_count is 1 then we hold the only reference to this page. */
57d48523cbSMartin Habets if (page_count(page) == 1) {
58d48523cbSMartin Habets ++rx_queue->page_recycle_count;
59d48523cbSMartin Habets return page;
60d48523cbSMartin Habets } else {
61d48523cbSMartin Habets state = page_address(page);
62d48523cbSMartin Habets dma_unmap_page(&efx->pci_dev->dev, state->dma_addr,
63d48523cbSMartin Habets PAGE_SIZE << efx->rx_buffer_order,
64d48523cbSMartin Habets DMA_FROM_DEVICE);
65d48523cbSMartin Habets put_page(page);
66d48523cbSMartin Habets ++rx_queue->page_recycle_failed;
67d48523cbSMartin Habets }
68d48523cbSMartin Habets
69d48523cbSMartin Habets return NULL;
70d48523cbSMartin Habets }
71d48523cbSMartin Habets
72d48523cbSMartin Habets /* Attempt to recycle the page if there is an RX recycle ring; the page can
73d48523cbSMartin Habets * only be added if this is the final RX buffer, to prevent pages being used in
74d48523cbSMartin Habets * the descriptor ring and appearing in the recycle ring simultaneously.
75d48523cbSMartin Habets */
efx_recycle_rx_page(struct efx_channel * channel,struct efx_rx_buffer * rx_buf)76d48523cbSMartin Habets static void efx_recycle_rx_page(struct efx_channel *channel,
77d48523cbSMartin Habets struct efx_rx_buffer *rx_buf)
78d48523cbSMartin Habets {
79d48523cbSMartin Habets struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
80d48523cbSMartin Habets struct efx_nic *efx = rx_queue->efx;
81d48523cbSMartin Habets struct page *page = rx_buf->page;
82d48523cbSMartin Habets unsigned int index;
83d48523cbSMartin Habets
84d48523cbSMartin Habets /* Only recycle the page after processing the final buffer. */
85d48523cbSMartin Habets if (!(rx_buf->flags & EFX_RX_BUF_LAST_IN_PAGE))
86d48523cbSMartin Habets return;
87d48523cbSMartin Habets
88d48523cbSMartin Habets index = rx_queue->page_add & rx_queue->page_ptr_mask;
89d48523cbSMartin Habets if (rx_queue->page_ring[index] == NULL) {
90d48523cbSMartin Habets unsigned int read_index = rx_queue->page_remove &
91d48523cbSMartin Habets rx_queue->page_ptr_mask;
92d48523cbSMartin Habets
93d48523cbSMartin Habets /* The next slot in the recycle ring is available, but
94d48523cbSMartin Habets * increment page_remove if the read pointer currently
95d48523cbSMartin Habets * points here.
96d48523cbSMartin Habets */
97d48523cbSMartin Habets if (read_index == index)
98d48523cbSMartin Habets ++rx_queue->page_remove;
99d48523cbSMartin Habets rx_queue->page_ring[index] = page;
100d48523cbSMartin Habets ++rx_queue->page_add;
101d48523cbSMartin Habets return;
102d48523cbSMartin Habets }
103d48523cbSMartin Habets ++rx_queue->page_recycle_full;
104d48523cbSMartin Habets efx_unmap_rx_buffer(efx, rx_buf);
105d48523cbSMartin Habets put_page(rx_buf->page);
106d48523cbSMartin Habets }
107d48523cbSMartin Habets
108d48523cbSMartin Habets /* Recycle the pages that are used by buffers that have just been received. */
efx_siena_recycle_rx_pages(struct efx_channel * channel,struct efx_rx_buffer * rx_buf,unsigned int n_frags)109*7f9e4b2aSMartin Habets void efx_siena_recycle_rx_pages(struct efx_channel *channel,
110d48523cbSMartin Habets struct efx_rx_buffer *rx_buf,
111d48523cbSMartin Habets unsigned int n_frags)
112d48523cbSMartin Habets {
113d48523cbSMartin Habets struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
114d48523cbSMartin Habets
115d48523cbSMartin Habets if (unlikely(!rx_queue->page_ring))
116d48523cbSMartin Habets return;
117d48523cbSMartin Habets
118d48523cbSMartin Habets do {
119d48523cbSMartin Habets efx_recycle_rx_page(channel, rx_buf);
120d48523cbSMartin Habets rx_buf = efx_rx_buf_next(rx_queue, rx_buf);
121d48523cbSMartin Habets } while (--n_frags);
122d48523cbSMartin Habets }
123d48523cbSMartin Habets
efx_siena_discard_rx_packet(struct efx_channel * channel,struct efx_rx_buffer * rx_buf,unsigned int n_frags)124*7f9e4b2aSMartin Habets void efx_siena_discard_rx_packet(struct efx_channel *channel,
125d48523cbSMartin Habets struct efx_rx_buffer *rx_buf,
126d48523cbSMartin Habets unsigned int n_frags)
127d48523cbSMartin Habets {
128d48523cbSMartin Habets struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
129d48523cbSMartin Habets
130*7f9e4b2aSMartin Habets efx_siena_recycle_rx_pages(channel, rx_buf, n_frags);
131d48523cbSMartin Habets
132*7f9e4b2aSMartin Habets efx_siena_free_rx_buffers(rx_queue, rx_buf, n_frags);
133d48523cbSMartin Habets }
134d48523cbSMartin Habets
efx_init_rx_recycle_ring(struct efx_rx_queue * rx_queue)135d48523cbSMartin Habets static void efx_init_rx_recycle_ring(struct efx_rx_queue *rx_queue)
136d48523cbSMartin Habets {
137d48523cbSMartin Habets unsigned int bufs_in_recycle_ring, page_ring_size;
138d48523cbSMartin Habets struct efx_nic *efx = rx_queue->efx;
139d48523cbSMartin Habets
140d48523cbSMartin Habets bufs_in_recycle_ring = efx_rx_recycle_ring_size(efx);
141d48523cbSMartin Habets page_ring_size = roundup_pow_of_two(bufs_in_recycle_ring /
142d48523cbSMartin Habets efx->rx_bufs_per_page);
143d48523cbSMartin Habets rx_queue->page_ring = kcalloc(page_ring_size,
144d48523cbSMartin Habets sizeof(*rx_queue->page_ring), GFP_KERNEL);
145d48523cbSMartin Habets if (!rx_queue->page_ring)
146d48523cbSMartin Habets rx_queue->page_ptr_mask = 0;
147d48523cbSMartin Habets else
148d48523cbSMartin Habets rx_queue->page_ptr_mask = page_ring_size - 1;
149d48523cbSMartin Habets }
150d48523cbSMartin Habets
efx_fini_rx_recycle_ring(struct efx_rx_queue * rx_queue)151d48523cbSMartin Habets static void efx_fini_rx_recycle_ring(struct efx_rx_queue *rx_queue)
152d48523cbSMartin Habets {
153d48523cbSMartin Habets struct efx_nic *efx = rx_queue->efx;
154d48523cbSMartin Habets int i;
155d48523cbSMartin Habets
156d48523cbSMartin Habets if (unlikely(!rx_queue->page_ring))
157d48523cbSMartin Habets return;
158d48523cbSMartin Habets
159d48523cbSMartin Habets /* Unmap and release the pages in the recycle ring. Remove the ring. */
160d48523cbSMartin Habets for (i = 0; i <= rx_queue->page_ptr_mask; i++) {
161d48523cbSMartin Habets struct page *page = rx_queue->page_ring[i];
162d48523cbSMartin Habets struct efx_rx_page_state *state;
163d48523cbSMartin Habets
164d48523cbSMartin Habets if (page == NULL)
165d48523cbSMartin Habets continue;
166d48523cbSMartin Habets
167d48523cbSMartin Habets state = page_address(page);
168d48523cbSMartin Habets dma_unmap_page(&efx->pci_dev->dev, state->dma_addr,
169d48523cbSMartin Habets PAGE_SIZE << efx->rx_buffer_order,
170d48523cbSMartin Habets DMA_FROM_DEVICE);
171d48523cbSMartin Habets put_page(page);
172d48523cbSMartin Habets }
173d48523cbSMartin Habets kfree(rx_queue->page_ring);
174d48523cbSMartin Habets rx_queue->page_ring = NULL;
175d48523cbSMartin Habets }
176d48523cbSMartin Habets
efx_fini_rx_buffer(struct efx_rx_queue * rx_queue,struct efx_rx_buffer * rx_buf)177d48523cbSMartin Habets static void efx_fini_rx_buffer(struct efx_rx_queue *rx_queue,
178d48523cbSMartin Habets struct efx_rx_buffer *rx_buf)
179d48523cbSMartin Habets {
180d48523cbSMartin Habets /* Release the page reference we hold for the buffer. */
181d48523cbSMartin Habets if (rx_buf->page)
182d48523cbSMartin Habets put_page(rx_buf->page);
183d48523cbSMartin Habets
184d48523cbSMartin Habets /* If this is the last buffer in a page, unmap and free it. */
185d48523cbSMartin Habets if (rx_buf->flags & EFX_RX_BUF_LAST_IN_PAGE) {
186d48523cbSMartin Habets efx_unmap_rx_buffer(rx_queue->efx, rx_buf);
187*7f9e4b2aSMartin Habets efx_siena_free_rx_buffers(rx_queue, rx_buf, 1);
188d48523cbSMartin Habets }
189d48523cbSMartin Habets rx_buf->page = NULL;
190d48523cbSMartin Habets }
191d48523cbSMartin Habets
efx_siena_probe_rx_queue(struct efx_rx_queue * rx_queue)192*7f9e4b2aSMartin Habets int efx_siena_probe_rx_queue(struct efx_rx_queue *rx_queue)
193d48523cbSMartin Habets {
194d48523cbSMartin Habets struct efx_nic *efx = rx_queue->efx;
195d48523cbSMartin Habets unsigned int entries;
196d48523cbSMartin Habets int rc;
197d48523cbSMartin Habets
198d48523cbSMartin Habets /* Create the smallest power-of-two aligned ring */
199d48523cbSMartin Habets entries = max(roundup_pow_of_two(efx->rxq_entries), EFX_MIN_DMAQ_SIZE);
200d48523cbSMartin Habets EFX_WARN_ON_PARANOID(entries > EFX_MAX_DMAQ_SIZE);
201d48523cbSMartin Habets rx_queue->ptr_mask = entries - 1;
202d48523cbSMartin Habets
203d48523cbSMartin Habets netif_dbg(efx, probe, efx->net_dev,
204d48523cbSMartin Habets "creating RX queue %d size %#x mask %#x\n",
205d48523cbSMartin Habets efx_rx_queue_index(rx_queue), efx->rxq_entries,
206d48523cbSMartin Habets rx_queue->ptr_mask);
207d48523cbSMartin Habets
208d48523cbSMartin Habets /* Allocate RX buffers */
209d48523cbSMartin Habets rx_queue->buffer = kcalloc(entries, sizeof(*rx_queue->buffer),
210d48523cbSMartin Habets GFP_KERNEL);
211d48523cbSMartin Habets if (!rx_queue->buffer)
212d48523cbSMartin Habets return -ENOMEM;
213d48523cbSMartin Habets
214d48523cbSMartin Habets rc = efx_nic_probe_rx(rx_queue);
215d48523cbSMartin Habets if (rc) {
216d48523cbSMartin Habets kfree(rx_queue->buffer);
217d48523cbSMartin Habets rx_queue->buffer = NULL;
218d48523cbSMartin Habets }
219d48523cbSMartin Habets
220d48523cbSMartin Habets return rc;
221d48523cbSMartin Habets }
222d48523cbSMartin Habets
efx_siena_init_rx_queue(struct efx_rx_queue * rx_queue)223*7f9e4b2aSMartin Habets void efx_siena_init_rx_queue(struct efx_rx_queue *rx_queue)
224d48523cbSMartin Habets {
225d48523cbSMartin Habets unsigned int max_fill, trigger, max_trigger;
226d48523cbSMartin Habets struct efx_nic *efx = rx_queue->efx;
227d48523cbSMartin Habets int rc = 0;
228d48523cbSMartin Habets
229d48523cbSMartin Habets netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
230d48523cbSMartin Habets "initialising RX queue %d\n", efx_rx_queue_index(rx_queue));
231d48523cbSMartin Habets
232d48523cbSMartin Habets /* Initialise ptr fields */
233d48523cbSMartin Habets rx_queue->added_count = 0;
234d48523cbSMartin Habets rx_queue->notified_count = 0;
235d48523cbSMartin Habets rx_queue->removed_count = 0;
236d48523cbSMartin Habets rx_queue->min_fill = -1U;
237d48523cbSMartin Habets efx_init_rx_recycle_ring(rx_queue);
238d48523cbSMartin Habets
239d48523cbSMartin Habets rx_queue->page_remove = 0;
240d48523cbSMartin Habets rx_queue->page_add = rx_queue->page_ptr_mask + 1;
241d48523cbSMartin Habets rx_queue->page_recycle_count = 0;
242d48523cbSMartin Habets rx_queue->page_recycle_failed = 0;
243d48523cbSMartin Habets rx_queue->page_recycle_full = 0;
244d48523cbSMartin Habets
245d48523cbSMartin Habets /* Initialise limit fields */
246d48523cbSMartin Habets max_fill = efx->rxq_entries - EFX_RXD_HEAD_ROOM;
247d48523cbSMartin Habets max_trigger =
248d48523cbSMartin Habets max_fill - efx->rx_pages_per_batch * efx->rx_bufs_per_page;
249d48523cbSMartin Habets if (rx_refill_threshold != 0) {
250d48523cbSMartin Habets trigger = max_fill * min(rx_refill_threshold, 100U) / 100U;
251d48523cbSMartin Habets if (trigger > max_trigger)
252d48523cbSMartin Habets trigger = max_trigger;
253d48523cbSMartin Habets } else {
254d48523cbSMartin Habets trigger = max_trigger;
255d48523cbSMartin Habets }
256d48523cbSMartin Habets
257d48523cbSMartin Habets rx_queue->max_fill = max_fill;
258d48523cbSMartin Habets rx_queue->fast_fill_trigger = trigger;
259d48523cbSMartin Habets rx_queue->refill_enabled = true;
260d48523cbSMartin Habets
261d48523cbSMartin Habets /* Initialise XDP queue information */
262d48523cbSMartin Habets rc = xdp_rxq_info_reg(&rx_queue->xdp_rxq_info, efx->net_dev,
263d48523cbSMartin Habets rx_queue->core_index, 0);
264d48523cbSMartin Habets
265d48523cbSMartin Habets if (rc) {
266d48523cbSMartin Habets netif_err(efx, rx_err, efx->net_dev,
267d48523cbSMartin Habets "Failure to initialise XDP queue information rc=%d\n",
268d48523cbSMartin Habets rc);
269d48523cbSMartin Habets efx->xdp_rxq_info_failed = true;
270d48523cbSMartin Habets } else {
271d48523cbSMartin Habets rx_queue->xdp_rxq_info_valid = true;
272d48523cbSMartin Habets }
273d48523cbSMartin Habets
274d48523cbSMartin Habets /* Set up RX descriptor ring */
275d48523cbSMartin Habets efx_nic_init_rx(rx_queue);
276d48523cbSMartin Habets }
277d48523cbSMartin Habets
efx_siena_fini_rx_queue(struct efx_rx_queue * rx_queue)278*7f9e4b2aSMartin Habets void efx_siena_fini_rx_queue(struct efx_rx_queue *rx_queue)
279d48523cbSMartin Habets {
280d48523cbSMartin Habets struct efx_rx_buffer *rx_buf;
281d48523cbSMartin Habets int i;
282d48523cbSMartin Habets
283d48523cbSMartin Habets netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
284d48523cbSMartin Habets "shutting down RX queue %d\n", efx_rx_queue_index(rx_queue));
285d48523cbSMartin Habets
286d48523cbSMartin Habets del_timer_sync(&rx_queue->slow_fill);
287d48523cbSMartin Habets
288d48523cbSMartin Habets /* Release RX buffers from the current read ptr to the write ptr */
289d48523cbSMartin Habets if (rx_queue->buffer) {
290d48523cbSMartin Habets for (i = rx_queue->removed_count; i < rx_queue->added_count;
291d48523cbSMartin Habets i++) {
292d48523cbSMartin Habets unsigned int index = i & rx_queue->ptr_mask;
293d48523cbSMartin Habets
294d48523cbSMartin Habets rx_buf = efx_rx_buffer(rx_queue, index);
295d48523cbSMartin Habets efx_fini_rx_buffer(rx_queue, rx_buf);
296d48523cbSMartin Habets }
297d48523cbSMartin Habets }
298d48523cbSMartin Habets
299d48523cbSMartin Habets efx_fini_rx_recycle_ring(rx_queue);
300d48523cbSMartin Habets
301d48523cbSMartin Habets if (rx_queue->xdp_rxq_info_valid)
302d48523cbSMartin Habets xdp_rxq_info_unreg(&rx_queue->xdp_rxq_info);
303d48523cbSMartin Habets
304d48523cbSMartin Habets rx_queue->xdp_rxq_info_valid = false;
305d48523cbSMartin Habets }
306d48523cbSMartin Habets
efx_siena_remove_rx_queue(struct efx_rx_queue * rx_queue)307*7f9e4b2aSMartin Habets void efx_siena_remove_rx_queue(struct efx_rx_queue *rx_queue)
308d48523cbSMartin Habets {
309d48523cbSMartin Habets netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
310d48523cbSMartin Habets "destroying RX queue %d\n", efx_rx_queue_index(rx_queue));
311d48523cbSMartin Habets
312d48523cbSMartin Habets efx_nic_remove_rx(rx_queue);
313d48523cbSMartin Habets
314d48523cbSMartin Habets kfree(rx_queue->buffer);
315d48523cbSMartin Habets rx_queue->buffer = NULL;
316d48523cbSMartin Habets }
317d48523cbSMartin Habets
318d48523cbSMartin Habets /* Unmap a DMA-mapped page. This function is only called for the final RX
319d48523cbSMartin Habets * buffer in a page.
320d48523cbSMartin Habets */
efx_unmap_rx_buffer(struct efx_nic * efx,struct efx_rx_buffer * rx_buf)321*7f9e4b2aSMartin Habets static void efx_unmap_rx_buffer(struct efx_nic *efx,
322d48523cbSMartin Habets struct efx_rx_buffer *rx_buf)
323d48523cbSMartin Habets {
324d48523cbSMartin Habets struct page *page = rx_buf->page;
325d48523cbSMartin Habets
326d48523cbSMartin Habets if (page) {
327d48523cbSMartin Habets struct efx_rx_page_state *state = page_address(page);
328d48523cbSMartin Habets
329d48523cbSMartin Habets dma_unmap_page(&efx->pci_dev->dev,
330d48523cbSMartin Habets state->dma_addr,
331d48523cbSMartin Habets PAGE_SIZE << efx->rx_buffer_order,
332d48523cbSMartin Habets DMA_FROM_DEVICE);
333d48523cbSMartin Habets }
334d48523cbSMartin Habets }
335d48523cbSMartin Habets
efx_siena_free_rx_buffers(struct efx_rx_queue * rx_queue,struct efx_rx_buffer * rx_buf,unsigned int num_bufs)336*7f9e4b2aSMartin Habets void efx_siena_free_rx_buffers(struct efx_rx_queue *rx_queue,
337d48523cbSMartin Habets struct efx_rx_buffer *rx_buf,
338d48523cbSMartin Habets unsigned int num_bufs)
339d48523cbSMartin Habets {
340d48523cbSMartin Habets do {
341d48523cbSMartin Habets if (rx_buf->page) {
342d48523cbSMartin Habets put_page(rx_buf->page);
343d48523cbSMartin Habets rx_buf->page = NULL;
344d48523cbSMartin Habets }
345d48523cbSMartin Habets rx_buf = efx_rx_buf_next(rx_queue, rx_buf);
346d48523cbSMartin Habets } while (--num_bufs);
347d48523cbSMartin Habets }
348d48523cbSMartin Habets
efx_siena_rx_slow_fill(struct timer_list * t)349*7f9e4b2aSMartin Habets void efx_siena_rx_slow_fill(struct timer_list *t)
350d48523cbSMartin Habets {
351d48523cbSMartin Habets struct efx_rx_queue *rx_queue = from_timer(rx_queue, t, slow_fill);
352d48523cbSMartin Habets
353d48523cbSMartin Habets /* Post an event to cause NAPI to run and refill the queue */
354d48523cbSMartin Habets efx_nic_generate_fill_event(rx_queue);
355d48523cbSMartin Habets ++rx_queue->slow_fill_count;
356d48523cbSMartin Habets }
357d48523cbSMartin Habets
efx_schedule_slow_fill(struct efx_rx_queue * rx_queue)358*7f9e4b2aSMartin Habets static void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
359d48523cbSMartin Habets {
360d48523cbSMartin Habets mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(10));
361d48523cbSMartin Habets }
362d48523cbSMartin Habets
363d48523cbSMartin Habets /* efx_init_rx_buffers - create EFX_RX_BATCH page-based RX buffers
364d48523cbSMartin Habets *
365d48523cbSMartin Habets * @rx_queue: Efx RX queue
366d48523cbSMartin Habets *
367d48523cbSMartin Habets * This allocates a batch of pages, maps them for DMA, and populates
368d48523cbSMartin Habets * struct efx_rx_buffers for each one. Return a negative error code or
369d48523cbSMartin Habets * 0 on success. If a single page can be used for multiple buffers,
370d48523cbSMartin Habets * then the page will either be inserted fully, or not at all.
371d48523cbSMartin Habets */
efx_init_rx_buffers(struct efx_rx_queue * rx_queue,bool atomic)372d48523cbSMartin Habets static int efx_init_rx_buffers(struct efx_rx_queue *rx_queue, bool atomic)
373d48523cbSMartin Habets {
374d48523cbSMartin Habets unsigned int page_offset, index, count;
375d48523cbSMartin Habets struct efx_nic *efx = rx_queue->efx;
376d48523cbSMartin Habets struct efx_rx_page_state *state;
377d48523cbSMartin Habets struct efx_rx_buffer *rx_buf;
378d48523cbSMartin Habets dma_addr_t dma_addr;
379d48523cbSMartin Habets struct page *page;
380d48523cbSMartin Habets
381d48523cbSMartin Habets count = 0;
382d48523cbSMartin Habets do {
383d48523cbSMartin Habets page = efx_reuse_page(rx_queue);
384d48523cbSMartin Habets if (page == NULL) {
385d48523cbSMartin Habets page = alloc_pages(__GFP_COMP |
386d48523cbSMartin Habets (atomic ? GFP_ATOMIC : GFP_KERNEL),
387d48523cbSMartin Habets efx->rx_buffer_order);
388d48523cbSMartin Habets if (unlikely(page == NULL))
389d48523cbSMartin Habets return -ENOMEM;
390d48523cbSMartin Habets dma_addr =
391d48523cbSMartin Habets dma_map_page(&efx->pci_dev->dev, page, 0,
392d48523cbSMartin Habets PAGE_SIZE << efx->rx_buffer_order,
393d48523cbSMartin Habets DMA_FROM_DEVICE);
394d48523cbSMartin Habets if (unlikely(dma_mapping_error(&efx->pci_dev->dev,
395d48523cbSMartin Habets dma_addr))) {
396d48523cbSMartin Habets __free_pages(page, efx->rx_buffer_order);
397d48523cbSMartin Habets return -EIO;
398d48523cbSMartin Habets }
399d48523cbSMartin Habets state = page_address(page);
400d48523cbSMartin Habets state->dma_addr = dma_addr;
401d48523cbSMartin Habets } else {
402d48523cbSMartin Habets state = page_address(page);
403d48523cbSMartin Habets dma_addr = state->dma_addr;
404d48523cbSMartin Habets }
405d48523cbSMartin Habets
406d48523cbSMartin Habets dma_addr += sizeof(struct efx_rx_page_state);
407d48523cbSMartin Habets page_offset = sizeof(struct efx_rx_page_state);
408d48523cbSMartin Habets
409d48523cbSMartin Habets do {
410d48523cbSMartin Habets index = rx_queue->added_count & rx_queue->ptr_mask;
411d48523cbSMartin Habets rx_buf = efx_rx_buffer(rx_queue, index);
412d48523cbSMartin Habets rx_buf->dma_addr = dma_addr + efx->rx_ip_align +
413d48523cbSMartin Habets EFX_XDP_HEADROOM;
414d48523cbSMartin Habets rx_buf->page = page;
415d48523cbSMartin Habets rx_buf->page_offset = page_offset + efx->rx_ip_align +
416d48523cbSMartin Habets EFX_XDP_HEADROOM;
417d48523cbSMartin Habets rx_buf->len = efx->rx_dma_len;
418d48523cbSMartin Habets rx_buf->flags = 0;
419d48523cbSMartin Habets ++rx_queue->added_count;
420d48523cbSMartin Habets get_page(page);
421d48523cbSMartin Habets dma_addr += efx->rx_page_buf_step;
422d48523cbSMartin Habets page_offset += efx->rx_page_buf_step;
423d48523cbSMartin Habets } while (page_offset + efx->rx_page_buf_step <= PAGE_SIZE);
424d48523cbSMartin Habets
425d48523cbSMartin Habets rx_buf->flags = EFX_RX_BUF_LAST_IN_PAGE;
426d48523cbSMartin Habets } while (++count < efx->rx_pages_per_batch);
427d48523cbSMartin Habets
428d48523cbSMartin Habets return 0;
429d48523cbSMartin Habets }
430d48523cbSMartin Habets
efx_siena_rx_config_page_split(struct efx_nic * efx)431*7f9e4b2aSMartin Habets void efx_siena_rx_config_page_split(struct efx_nic *efx)
432d48523cbSMartin Habets {
433d48523cbSMartin Habets efx->rx_page_buf_step = ALIGN(efx->rx_dma_len + efx->rx_ip_align +
434d48523cbSMartin Habets EFX_XDP_HEADROOM + EFX_XDP_TAILROOM,
435d48523cbSMartin Habets EFX_RX_BUF_ALIGNMENT);
436d48523cbSMartin Habets efx->rx_bufs_per_page = efx->rx_buffer_order ? 1 :
437d48523cbSMartin Habets ((PAGE_SIZE - sizeof(struct efx_rx_page_state)) /
438d48523cbSMartin Habets efx->rx_page_buf_step);
439d48523cbSMartin Habets efx->rx_buffer_truesize = (PAGE_SIZE << efx->rx_buffer_order) /
440d48523cbSMartin Habets efx->rx_bufs_per_page;
441d48523cbSMartin Habets efx->rx_pages_per_batch = DIV_ROUND_UP(EFX_RX_PREFERRED_BATCH,
442d48523cbSMartin Habets efx->rx_bufs_per_page);
443d48523cbSMartin Habets }
444d48523cbSMartin Habets
445*7f9e4b2aSMartin Habets /* efx_siena_fast_push_rx_descriptors - push new RX descriptors quickly
446d48523cbSMartin Habets * @rx_queue: RX descriptor queue
447d48523cbSMartin Habets *
448d48523cbSMartin Habets * This will aim to fill the RX descriptor queue up to
449d48523cbSMartin Habets * @rx_queue->@max_fill. If there is insufficient atomic
450d48523cbSMartin Habets * memory to do so, a slow fill will be scheduled.
451d48523cbSMartin Habets *
452d48523cbSMartin Habets * The caller must provide serialisation (none is used here). In practise,
453d48523cbSMartin Habets * this means this function must run from the NAPI handler, or be called
454d48523cbSMartin Habets * when NAPI is disabled.
455d48523cbSMartin Habets */
efx_siena_fast_push_rx_descriptors(struct efx_rx_queue * rx_queue,bool atomic)456*7f9e4b2aSMartin Habets void efx_siena_fast_push_rx_descriptors(struct efx_rx_queue *rx_queue,
457*7f9e4b2aSMartin Habets bool atomic)
458d48523cbSMartin Habets {
459d48523cbSMartin Habets struct efx_nic *efx = rx_queue->efx;
460d48523cbSMartin Habets unsigned int fill_level, batch_size;
461d48523cbSMartin Habets int space, rc = 0;
462d48523cbSMartin Habets
463d48523cbSMartin Habets if (!rx_queue->refill_enabled)
464d48523cbSMartin Habets return;
465d48523cbSMartin Habets
466d48523cbSMartin Habets /* Calculate current fill level, and exit if we don't need to fill */
467d48523cbSMartin Habets fill_level = (rx_queue->added_count - rx_queue->removed_count);
468d48523cbSMartin Habets EFX_WARN_ON_ONCE_PARANOID(fill_level > rx_queue->efx->rxq_entries);
469d48523cbSMartin Habets if (fill_level >= rx_queue->fast_fill_trigger)
470d48523cbSMartin Habets goto out;
471d48523cbSMartin Habets
472d48523cbSMartin Habets /* Record minimum fill level */
473d48523cbSMartin Habets if (unlikely(fill_level < rx_queue->min_fill)) {
474d48523cbSMartin Habets if (fill_level)
475d48523cbSMartin Habets rx_queue->min_fill = fill_level;
476d48523cbSMartin Habets }
477d48523cbSMartin Habets
478d48523cbSMartin Habets batch_size = efx->rx_pages_per_batch * efx->rx_bufs_per_page;
479d48523cbSMartin Habets space = rx_queue->max_fill - fill_level;
480d48523cbSMartin Habets EFX_WARN_ON_ONCE_PARANOID(space < batch_size);
481d48523cbSMartin Habets
482d48523cbSMartin Habets netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev,
483d48523cbSMartin Habets "RX queue %d fast-filling descriptor ring from"
484d48523cbSMartin Habets " level %d to level %d\n",
485d48523cbSMartin Habets efx_rx_queue_index(rx_queue), fill_level,
486d48523cbSMartin Habets rx_queue->max_fill);
487d48523cbSMartin Habets
488d48523cbSMartin Habets do {
489d48523cbSMartin Habets rc = efx_init_rx_buffers(rx_queue, atomic);
490d48523cbSMartin Habets if (unlikely(rc)) {
491d48523cbSMartin Habets /* Ensure that we don't leave the rx queue empty */
492d48523cbSMartin Habets efx_schedule_slow_fill(rx_queue);
493d48523cbSMartin Habets goto out;
494d48523cbSMartin Habets }
495d48523cbSMartin Habets } while ((space -= batch_size) >= batch_size);
496d48523cbSMartin Habets
497d48523cbSMartin Habets netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev,
498d48523cbSMartin Habets "RX queue %d fast-filled descriptor ring "
499d48523cbSMartin Habets "to level %d\n", efx_rx_queue_index(rx_queue),
500d48523cbSMartin Habets rx_queue->added_count - rx_queue->removed_count);
501d48523cbSMartin Habets
502d48523cbSMartin Habets out:
503d48523cbSMartin Habets if (rx_queue->notified_count != rx_queue->added_count)
504d48523cbSMartin Habets efx_nic_notify_rx_desc(rx_queue);
505d48523cbSMartin Habets }
506d48523cbSMartin Habets
507d48523cbSMartin Habets /* Pass a received packet up through GRO. GRO can handle pages
508d48523cbSMartin Habets * regardless of checksum state and skbs with a good checksum.
509d48523cbSMartin Habets */
510d48523cbSMartin Habets void
efx_siena_rx_packet_gro(struct efx_channel * channel,struct efx_rx_buffer * rx_buf,unsigned int n_frags,u8 * eh,__wsum csum)51171ad88f6SMartin Habets efx_siena_rx_packet_gro(struct efx_channel *channel,
51271ad88f6SMartin Habets struct efx_rx_buffer *rx_buf,
513d48523cbSMartin Habets unsigned int n_frags, u8 *eh, __wsum csum)
514d48523cbSMartin Habets {
515d48523cbSMartin Habets struct napi_struct *napi = &channel->napi_str;
516d48523cbSMartin Habets struct efx_nic *efx = channel->efx;
517d48523cbSMartin Habets struct sk_buff *skb;
518d48523cbSMartin Habets
519d48523cbSMartin Habets skb = napi_get_frags(napi);
520d48523cbSMartin Habets if (unlikely(!skb)) {
521d48523cbSMartin Habets struct efx_rx_queue *rx_queue;
522d48523cbSMartin Habets
523d48523cbSMartin Habets rx_queue = efx_channel_get_rx_queue(channel);
524*7f9e4b2aSMartin Habets efx_siena_free_rx_buffers(rx_queue, rx_buf, n_frags);
525d48523cbSMartin Habets return;
526d48523cbSMartin Habets }
527d48523cbSMartin Habets
52871ad88f6SMartin Habets if (efx->net_dev->features & NETIF_F_RXHASH)
529d48523cbSMartin Habets skb_set_hash(skb, efx_rx_buf_hash(efx, eh),
530d48523cbSMartin Habets PKT_HASH_TYPE_L3);
531d48523cbSMartin Habets if (csum) {
532d48523cbSMartin Habets skb->csum = csum;
533d48523cbSMartin Habets skb->ip_summed = CHECKSUM_COMPLETE;
534d48523cbSMartin Habets } else {
535d48523cbSMartin Habets skb->ip_summed = ((rx_buf->flags & EFX_RX_PKT_CSUMMED) ?
536d48523cbSMartin Habets CHECKSUM_UNNECESSARY : CHECKSUM_NONE);
537d48523cbSMartin Habets }
538d48523cbSMartin Habets skb->csum_level = !!(rx_buf->flags & EFX_RX_PKT_CSUM_LEVEL);
539d48523cbSMartin Habets
540d48523cbSMartin Habets for (;;) {
541d48523cbSMartin Habets skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
542d48523cbSMartin Habets rx_buf->page, rx_buf->page_offset,
543d48523cbSMartin Habets rx_buf->len);
544d48523cbSMartin Habets rx_buf->page = NULL;
545d48523cbSMartin Habets skb->len += rx_buf->len;
546d48523cbSMartin Habets if (skb_shinfo(skb)->nr_frags == n_frags)
547d48523cbSMartin Habets break;
548d48523cbSMartin Habets
549d48523cbSMartin Habets rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf);
550d48523cbSMartin Habets }
551d48523cbSMartin Habets
552d48523cbSMartin Habets skb->data_len = skb->len;
553d48523cbSMartin Habets skb->truesize += n_frags * efx->rx_buffer_truesize;
554d48523cbSMartin Habets
555d48523cbSMartin Habets skb_record_rx_queue(skb, channel->rx_queue.core_index);
556d48523cbSMartin Habets
557d48523cbSMartin Habets napi_gro_frags(napi);
558d48523cbSMartin Habets }
559d48523cbSMartin Habets
560d48523cbSMartin Habets /* RSS contexts. We're using linked lists and crappy O(n) algorithms, because
561d48523cbSMartin Habets * (a) this is an infrequent control-plane operation and (b) n is small (max 64)
562d48523cbSMartin Habets */
efx_siena_alloc_rss_context_entry(struct efx_nic * efx)563*7f9e4b2aSMartin Habets struct efx_rss_context *efx_siena_alloc_rss_context_entry(struct efx_nic *efx)
564d48523cbSMartin Habets {
565d48523cbSMartin Habets struct list_head *head = &efx->rss_context.list;
566d48523cbSMartin Habets struct efx_rss_context *ctx, *new;
567d48523cbSMartin Habets u32 id = 1; /* Don't use zero, that refers to the master RSS context */
568d48523cbSMartin Habets
569d48523cbSMartin Habets WARN_ON(!mutex_is_locked(&efx->rss_lock));
570d48523cbSMartin Habets
571d48523cbSMartin Habets /* Search for first gap in the numbering */
572d48523cbSMartin Habets list_for_each_entry(ctx, head, list) {
573d48523cbSMartin Habets if (ctx->user_id != id)
574d48523cbSMartin Habets break;
575d48523cbSMartin Habets id++;
576d48523cbSMartin Habets /* Check for wrap. If this happens, we have nearly 2^32
577d48523cbSMartin Habets * allocated RSS contexts, which seems unlikely.
578d48523cbSMartin Habets */
579d48523cbSMartin Habets if (WARN_ON_ONCE(!id))
580d48523cbSMartin Habets return NULL;
581d48523cbSMartin Habets }
582d48523cbSMartin Habets
583d48523cbSMartin Habets /* Create the new entry */
584d48523cbSMartin Habets new = kmalloc(sizeof(*new), GFP_KERNEL);
585d48523cbSMartin Habets if (!new)
586d48523cbSMartin Habets return NULL;
587d48523cbSMartin Habets new->context_id = EFX_MCDI_RSS_CONTEXT_INVALID;
588d48523cbSMartin Habets new->rx_hash_udp_4tuple = false;
589d48523cbSMartin Habets
590d48523cbSMartin Habets /* Insert the new entry into the gap */
591d48523cbSMartin Habets new->user_id = id;
592d48523cbSMartin Habets list_add_tail(&new->list, &ctx->list);
593d48523cbSMartin Habets return new;
594d48523cbSMartin Habets }
595d48523cbSMartin Habets
efx_siena_find_rss_context_entry(struct efx_nic * efx,u32 id)596*7f9e4b2aSMartin Habets struct efx_rss_context *efx_siena_find_rss_context_entry(struct efx_nic *efx,
597*7f9e4b2aSMartin Habets u32 id)
598d48523cbSMartin Habets {
599d48523cbSMartin Habets struct list_head *head = &efx->rss_context.list;
600d48523cbSMartin Habets struct efx_rss_context *ctx;
601d48523cbSMartin Habets
602d48523cbSMartin Habets WARN_ON(!mutex_is_locked(&efx->rss_lock));
603d48523cbSMartin Habets
604d48523cbSMartin Habets list_for_each_entry(ctx, head, list)
605d48523cbSMartin Habets if (ctx->user_id == id)
606d48523cbSMartin Habets return ctx;
607d48523cbSMartin Habets return NULL;
608d48523cbSMartin Habets }
609d48523cbSMartin Habets
efx_siena_free_rss_context_entry(struct efx_rss_context * ctx)610*7f9e4b2aSMartin Habets void efx_siena_free_rss_context_entry(struct efx_rss_context *ctx)
611d48523cbSMartin Habets {
612d48523cbSMartin Habets list_del(&ctx->list);
613d48523cbSMartin Habets kfree(ctx);
614d48523cbSMartin Habets }
615d48523cbSMartin Habets
efx_siena_set_default_rx_indir_table(struct efx_nic * efx,struct efx_rss_context * ctx)616*7f9e4b2aSMartin Habets void efx_siena_set_default_rx_indir_table(struct efx_nic *efx,
617d48523cbSMartin Habets struct efx_rss_context *ctx)
618d48523cbSMartin Habets {
619d48523cbSMartin Habets size_t i;
620d48523cbSMartin Habets
621d48523cbSMartin Habets for (i = 0; i < ARRAY_SIZE(ctx->rx_indir_table); i++)
622d48523cbSMartin Habets ctx->rx_indir_table[i] =
623d48523cbSMartin Habets ethtool_rxfh_indir_default(i, efx->rss_spread);
624d48523cbSMartin Habets }
625d48523cbSMartin Habets
626d48523cbSMartin Habets /**
627*7f9e4b2aSMartin Habets * efx_siena_filter_is_mc_recipient - test whether spec is a multicast recipient
628d48523cbSMartin Habets * @spec: Specification to test
629d48523cbSMartin Habets *
630d48523cbSMartin Habets * Return: %true if the specification is a non-drop RX filter that
631d48523cbSMartin Habets * matches a local MAC address I/G bit value of 1 or matches a local
632d48523cbSMartin Habets * IPv4 or IPv6 address value in the respective multicast address
633d48523cbSMartin Habets * range. Otherwise %false.
634d48523cbSMartin Habets */
efx_siena_filter_is_mc_recipient(const struct efx_filter_spec * spec)635*7f9e4b2aSMartin Habets bool efx_siena_filter_is_mc_recipient(const struct efx_filter_spec *spec)
636d48523cbSMartin Habets {
637d48523cbSMartin Habets if (!(spec->flags & EFX_FILTER_FLAG_RX) ||
638d48523cbSMartin Habets spec->dmaq_id == EFX_FILTER_RX_DMAQ_ID_DROP)
639d48523cbSMartin Habets return false;
640d48523cbSMartin Habets
641d48523cbSMartin Habets if (spec->match_flags &
642d48523cbSMartin Habets (EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_LOC_MAC_IG) &&
643d48523cbSMartin Habets is_multicast_ether_addr(spec->loc_mac))
644d48523cbSMartin Habets return true;
645d48523cbSMartin Habets
646d48523cbSMartin Habets if ((spec->match_flags &
647d48523cbSMartin Habets (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) ==
648d48523cbSMartin Habets (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) {
649d48523cbSMartin Habets if (spec->ether_type == htons(ETH_P_IP) &&
650d48523cbSMartin Habets ipv4_is_multicast(spec->loc_host[0]))
651d48523cbSMartin Habets return true;
652d48523cbSMartin Habets if (spec->ether_type == htons(ETH_P_IPV6) &&
653d48523cbSMartin Habets ((const u8 *)spec->loc_host)[0] == 0xff)
654d48523cbSMartin Habets return true;
655d48523cbSMartin Habets }
656d48523cbSMartin Habets
657d48523cbSMartin Habets return false;
658d48523cbSMartin Habets }
659d48523cbSMartin Habets
efx_siena_filter_spec_equal(const struct efx_filter_spec * left,const struct efx_filter_spec * right)660*7f9e4b2aSMartin Habets bool efx_siena_filter_spec_equal(const struct efx_filter_spec *left,
661d48523cbSMartin Habets const struct efx_filter_spec *right)
662d48523cbSMartin Habets {
663d48523cbSMartin Habets if ((left->match_flags ^ right->match_flags) |
664d48523cbSMartin Habets ((left->flags ^ right->flags) &
665d48523cbSMartin Habets (EFX_FILTER_FLAG_RX | EFX_FILTER_FLAG_TX)))
666d48523cbSMartin Habets return false;
667d48523cbSMartin Habets
668d48523cbSMartin Habets return memcmp(&left->outer_vid, &right->outer_vid,
669d48523cbSMartin Habets sizeof(struct efx_filter_spec) -
670d48523cbSMartin Habets offsetof(struct efx_filter_spec, outer_vid)) == 0;
671d48523cbSMartin Habets }
672d48523cbSMartin Habets
efx_siena_filter_spec_hash(const struct efx_filter_spec * spec)673*7f9e4b2aSMartin Habets u32 efx_siena_filter_spec_hash(const struct efx_filter_spec *spec)
674d48523cbSMartin Habets {
675d48523cbSMartin Habets BUILD_BUG_ON(offsetof(struct efx_filter_spec, outer_vid) & 3);
676d48523cbSMartin Habets return jhash2((const u32 *)&spec->outer_vid,
677d48523cbSMartin Habets (sizeof(struct efx_filter_spec) -
678d48523cbSMartin Habets offsetof(struct efx_filter_spec, outer_vid)) / 4,
679d48523cbSMartin Habets 0);
680d48523cbSMartin Habets }
681d48523cbSMartin Habets
682d48523cbSMartin Habets #ifdef CONFIG_RFS_ACCEL
efx_siena_rps_check_rule(struct efx_arfs_rule * rule,unsigned int filter_idx,bool * force)683*7f9e4b2aSMartin Habets bool efx_siena_rps_check_rule(struct efx_arfs_rule *rule,
684*7f9e4b2aSMartin Habets unsigned int filter_idx, bool *force)
685d48523cbSMartin Habets {
686d48523cbSMartin Habets if (rule->filter_id == EFX_ARFS_FILTER_ID_PENDING) {
687d48523cbSMartin Habets /* ARFS is currently updating this entry, leave it */
688d48523cbSMartin Habets return false;
689d48523cbSMartin Habets }
690d48523cbSMartin Habets if (rule->filter_id == EFX_ARFS_FILTER_ID_ERROR) {
691d48523cbSMartin Habets /* ARFS tried and failed to update this, so it's probably out
692d48523cbSMartin Habets * of date. Remove the filter and the ARFS rule entry.
693d48523cbSMartin Habets */
694d48523cbSMartin Habets rule->filter_id = EFX_ARFS_FILTER_ID_REMOVING;
695d48523cbSMartin Habets *force = true;
696d48523cbSMartin Habets return true;
697d48523cbSMartin Habets } else if (WARN_ON(rule->filter_id != filter_idx)) { /* can't happen */
698d48523cbSMartin Habets /* ARFS has moved on, so old filter is not needed. Since we did
699d48523cbSMartin Habets * not mark the rule with EFX_ARFS_FILTER_ID_REMOVING, it will
700*7f9e4b2aSMartin Habets * not be removed by efx_siena_rps_hash_del() subsequently.
701d48523cbSMartin Habets */
702d48523cbSMartin Habets *force = true;
703d48523cbSMartin Habets return true;
704d48523cbSMartin Habets }
705d48523cbSMartin Habets /* Remove it iff ARFS wants to. */
706d48523cbSMartin Habets return true;
707d48523cbSMartin Habets }
708d48523cbSMartin Habets
709d48523cbSMartin Habets static
efx_rps_hash_bucket(struct efx_nic * efx,const struct efx_filter_spec * spec)710d48523cbSMartin Habets struct hlist_head *efx_rps_hash_bucket(struct efx_nic *efx,
711d48523cbSMartin Habets const struct efx_filter_spec *spec)
712d48523cbSMartin Habets {
713*7f9e4b2aSMartin Habets u32 hash = efx_siena_filter_spec_hash(spec);
714d48523cbSMartin Habets
715d48523cbSMartin Habets lockdep_assert_held(&efx->rps_hash_lock);
716d48523cbSMartin Habets if (!efx->rps_hash_table)
717d48523cbSMartin Habets return NULL;
718d48523cbSMartin Habets return &efx->rps_hash_table[hash % EFX_ARFS_HASH_TABLE_SIZE];
719d48523cbSMartin Habets }
720d48523cbSMartin Habets
efx_siena_rps_hash_find(struct efx_nic * efx,const struct efx_filter_spec * spec)721*7f9e4b2aSMartin Habets struct efx_arfs_rule *efx_siena_rps_hash_find(struct efx_nic *efx,
722d48523cbSMartin Habets const struct efx_filter_spec *spec)
723d48523cbSMartin Habets {
724d48523cbSMartin Habets struct efx_arfs_rule *rule;
725d48523cbSMartin Habets struct hlist_head *head;
726d48523cbSMartin Habets struct hlist_node *node;
727d48523cbSMartin Habets
728d48523cbSMartin Habets head = efx_rps_hash_bucket(efx, spec);
729d48523cbSMartin Habets if (!head)
730d48523cbSMartin Habets return NULL;
731d48523cbSMartin Habets hlist_for_each(node, head) {
732d48523cbSMartin Habets rule = container_of(node, struct efx_arfs_rule, node);
733*7f9e4b2aSMartin Habets if (efx_siena_filter_spec_equal(spec, &rule->spec))
734d48523cbSMartin Habets return rule;
735d48523cbSMartin Habets }
736d48523cbSMartin Habets return NULL;
737d48523cbSMartin Habets }
738d48523cbSMartin Habets
efx_rps_hash_add(struct efx_nic * efx,const struct efx_filter_spec * spec,bool * new)739*7f9e4b2aSMartin Habets static struct efx_arfs_rule *efx_rps_hash_add(struct efx_nic *efx,
740d48523cbSMartin Habets const struct efx_filter_spec *spec,
741d48523cbSMartin Habets bool *new)
742d48523cbSMartin Habets {
743d48523cbSMartin Habets struct efx_arfs_rule *rule;
744d48523cbSMartin Habets struct hlist_head *head;
745d48523cbSMartin Habets struct hlist_node *node;
746d48523cbSMartin Habets
747d48523cbSMartin Habets head = efx_rps_hash_bucket(efx, spec);
748d48523cbSMartin Habets if (!head)
749d48523cbSMartin Habets return NULL;
750d48523cbSMartin Habets hlist_for_each(node, head) {
751d48523cbSMartin Habets rule = container_of(node, struct efx_arfs_rule, node);
752*7f9e4b2aSMartin Habets if (efx_siena_filter_spec_equal(spec, &rule->spec)) {
753d48523cbSMartin Habets *new = false;
754d48523cbSMartin Habets return rule;
755d48523cbSMartin Habets }
756d48523cbSMartin Habets }
757d48523cbSMartin Habets rule = kmalloc(sizeof(*rule), GFP_ATOMIC);
758d48523cbSMartin Habets *new = true;
759d48523cbSMartin Habets if (rule) {
760d48523cbSMartin Habets memcpy(&rule->spec, spec, sizeof(rule->spec));
761d48523cbSMartin Habets hlist_add_head(&rule->node, head);
762d48523cbSMartin Habets }
763d48523cbSMartin Habets return rule;
764d48523cbSMartin Habets }
765d48523cbSMartin Habets
efx_siena_rps_hash_del(struct efx_nic * efx,const struct efx_filter_spec * spec)766*7f9e4b2aSMartin Habets void efx_siena_rps_hash_del(struct efx_nic *efx,
767*7f9e4b2aSMartin Habets const struct efx_filter_spec *spec)
768d48523cbSMartin Habets {
769d48523cbSMartin Habets struct efx_arfs_rule *rule;
770d48523cbSMartin Habets struct hlist_head *head;
771d48523cbSMartin Habets struct hlist_node *node;
772d48523cbSMartin Habets
773d48523cbSMartin Habets head = efx_rps_hash_bucket(efx, spec);
774d48523cbSMartin Habets if (WARN_ON(!head))
775d48523cbSMartin Habets return;
776d48523cbSMartin Habets hlist_for_each(node, head) {
777d48523cbSMartin Habets rule = container_of(node, struct efx_arfs_rule, node);
778*7f9e4b2aSMartin Habets if (efx_siena_filter_spec_equal(spec, &rule->spec)) {
779d48523cbSMartin Habets /* Someone already reused the entry. We know that if
780d48523cbSMartin Habets * this check doesn't fire (i.e. filter_id == REMOVING)
781d48523cbSMartin Habets * then the REMOVING mark was put there by our caller,
782d48523cbSMartin Habets * because caller is holding a lock on filter table and
783d48523cbSMartin Habets * only holders of that lock set REMOVING.
784d48523cbSMartin Habets */
785d48523cbSMartin Habets if (rule->filter_id != EFX_ARFS_FILTER_ID_REMOVING)
786d48523cbSMartin Habets return;
787d48523cbSMartin Habets hlist_del(node);
788d48523cbSMartin Habets kfree(rule);
789d48523cbSMartin Habets return;
790d48523cbSMartin Habets }
791d48523cbSMartin Habets }
792d48523cbSMartin Habets /* We didn't find it. */
793d48523cbSMartin Habets WARN_ON(1);
794d48523cbSMartin Habets }
795d48523cbSMartin Habets #endif
796d48523cbSMartin Habets
efx_siena_probe_filters(struct efx_nic * efx)797*7f9e4b2aSMartin Habets int efx_siena_probe_filters(struct efx_nic *efx)
798d48523cbSMartin Habets {
799d48523cbSMartin Habets int rc;
800d48523cbSMartin Habets
801d48523cbSMartin Habets mutex_lock(&efx->mac_lock);
802d48523cbSMartin Habets down_write(&efx->filter_sem);
803d48523cbSMartin Habets rc = efx->type->filter_table_probe(efx);
804d48523cbSMartin Habets if (rc)
805d48523cbSMartin Habets goto out_unlock;
806d48523cbSMartin Habets
807d48523cbSMartin Habets #ifdef CONFIG_RFS_ACCEL
808d48523cbSMartin Habets if (efx->type->offload_features & NETIF_F_NTUPLE) {
809d48523cbSMartin Habets struct efx_channel *channel;
810d48523cbSMartin Habets int i, success = 1;
811d48523cbSMartin Habets
812d48523cbSMartin Habets efx_for_each_channel(channel, efx) {
813d48523cbSMartin Habets channel->rps_flow_id =
814d48523cbSMartin Habets kcalloc(efx->type->max_rx_ip_filters,
815d48523cbSMartin Habets sizeof(*channel->rps_flow_id),
816d48523cbSMartin Habets GFP_KERNEL);
817d48523cbSMartin Habets if (!channel->rps_flow_id)
818d48523cbSMartin Habets success = 0;
819d48523cbSMartin Habets else
820d48523cbSMartin Habets for (i = 0;
821d48523cbSMartin Habets i < efx->type->max_rx_ip_filters;
822d48523cbSMartin Habets ++i)
823d48523cbSMartin Habets channel->rps_flow_id[i] =
824d48523cbSMartin Habets RPS_FLOW_ID_INVALID;
825d48523cbSMartin Habets channel->rfs_expire_index = 0;
826d48523cbSMartin Habets channel->rfs_filter_count = 0;
827d48523cbSMartin Habets }
828d48523cbSMartin Habets
829d48523cbSMartin Habets if (!success) {
830d48523cbSMartin Habets efx_for_each_channel(channel, efx)
831d48523cbSMartin Habets kfree(channel->rps_flow_id);
832d48523cbSMartin Habets efx->type->filter_table_remove(efx);
833d48523cbSMartin Habets rc = -ENOMEM;
834d48523cbSMartin Habets goto out_unlock;
835d48523cbSMartin Habets }
836d48523cbSMartin Habets }
837d48523cbSMartin Habets #endif
838d48523cbSMartin Habets out_unlock:
839d48523cbSMartin Habets up_write(&efx->filter_sem);
840d48523cbSMartin Habets mutex_unlock(&efx->mac_lock);
841d48523cbSMartin Habets return rc;
842d48523cbSMartin Habets }
843d48523cbSMartin Habets
efx_siena_remove_filters(struct efx_nic * efx)844*7f9e4b2aSMartin Habets void efx_siena_remove_filters(struct efx_nic *efx)
845d48523cbSMartin Habets {
846d48523cbSMartin Habets #ifdef CONFIG_RFS_ACCEL
847d48523cbSMartin Habets struct efx_channel *channel;
848d48523cbSMartin Habets
849d48523cbSMartin Habets efx_for_each_channel(channel, efx) {
850d48523cbSMartin Habets cancel_delayed_work_sync(&channel->filter_work);
851d48523cbSMartin Habets kfree(channel->rps_flow_id);
852d48523cbSMartin Habets channel->rps_flow_id = NULL;
853d48523cbSMartin Habets }
854d48523cbSMartin Habets #endif
855d48523cbSMartin Habets down_write(&efx->filter_sem);
856d48523cbSMartin Habets efx->type->filter_table_remove(efx);
857d48523cbSMartin Habets up_write(&efx->filter_sem);
858d48523cbSMartin Habets }
859d48523cbSMartin Habets
860d48523cbSMartin Habets #ifdef CONFIG_RFS_ACCEL
861d48523cbSMartin Habets
efx_filter_rfs_work(struct work_struct * data)862d48523cbSMartin Habets static void efx_filter_rfs_work(struct work_struct *data)
863d48523cbSMartin Habets {
864d48523cbSMartin Habets struct efx_async_filter_insertion *req = container_of(data, struct efx_async_filter_insertion,
865d48523cbSMartin Habets work);
866d48523cbSMartin Habets struct efx_nic *efx = netdev_priv(req->net_dev);
867d48523cbSMartin Habets struct efx_channel *channel = efx_get_channel(efx, req->rxq_index);
868d48523cbSMartin Habets int slot_idx = req - efx->rps_slot;
869d48523cbSMartin Habets struct efx_arfs_rule *rule;
870d48523cbSMartin Habets u16 arfs_id = 0;
871d48523cbSMartin Habets int rc;
872d48523cbSMartin Habets
873d48523cbSMartin Habets rc = efx->type->filter_insert(efx, &req->spec, true);
874d48523cbSMartin Habets if (rc >= 0)
875d48523cbSMartin Habets /* Discard 'priority' part of EF10+ filter ID (mcdi_filters) */
876d48523cbSMartin Habets rc %= efx->type->max_rx_ip_filters;
877d48523cbSMartin Habets if (efx->rps_hash_table) {
878d48523cbSMartin Habets spin_lock_bh(&efx->rps_hash_lock);
879*7f9e4b2aSMartin Habets rule = efx_siena_rps_hash_find(efx, &req->spec);
880d48523cbSMartin Habets /* The rule might have already gone, if someone else's request
881d48523cbSMartin Habets * for the same spec was already worked and then expired before
882d48523cbSMartin Habets * we got around to our work. In that case we have nothing
883d48523cbSMartin Habets * tying us to an arfs_id, meaning that as soon as the filter
884d48523cbSMartin Habets * is considered for expiry it will be removed.
885d48523cbSMartin Habets */
886d48523cbSMartin Habets if (rule) {
887d48523cbSMartin Habets if (rc < 0)
888d48523cbSMartin Habets rule->filter_id = EFX_ARFS_FILTER_ID_ERROR;
889d48523cbSMartin Habets else
890d48523cbSMartin Habets rule->filter_id = rc;
891d48523cbSMartin Habets arfs_id = rule->arfs_id;
892d48523cbSMartin Habets }
893d48523cbSMartin Habets spin_unlock_bh(&efx->rps_hash_lock);
894d48523cbSMartin Habets }
895d48523cbSMartin Habets if (rc >= 0) {
896d48523cbSMartin Habets /* Remember this so we can check whether to expire the filter
897d48523cbSMartin Habets * later.
898d48523cbSMartin Habets */
899d48523cbSMartin Habets mutex_lock(&efx->rps_mutex);
900d48523cbSMartin Habets if (channel->rps_flow_id[rc] == RPS_FLOW_ID_INVALID)
901d48523cbSMartin Habets channel->rfs_filter_count++;
902d48523cbSMartin Habets channel->rps_flow_id[rc] = req->flow_id;
903d48523cbSMartin Habets mutex_unlock(&efx->rps_mutex);
904d48523cbSMartin Habets
905d48523cbSMartin Habets if (req->spec.ether_type == htons(ETH_P_IP))
906d48523cbSMartin Habets netif_info(efx, rx_status, efx->net_dev,
907d48523cbSMartin Habets "steering %s %pI4:%u:%pI4:%u to queue %u [flow %u filter %d id %u]\n",
908d48523cbSMartin Habets (req->spec.ip_proto == IPPROTO_TCP) ? "TCP" : "UDP",
909d48523cbSMartin Habets req->spec.rem_host, ntohs(req->spec.rem_port),
910d48523cbSMartin Habets req->spec.loc_host, ntohs(req->spec.loc_port),
911d48523cbSMartin Habets req->rxq_index, req->flow_id, rc, arfs_id);
912d48523cbSMartin Habets else
913d48523cbSMartin Habets netif_info(efx, rx_status, efx->net_dev,
914d48523cbSMartin Habets "steering %s [%pI6]:%u:[%pI6]:%u to queue %u [flow %u filter %d id %u]\n",
915d48523cbSMartin Habets (req->spec.ip_proto == IPPROTO_TCP) ? "TCP" : "UDP",
916d48523cbSMartin Habets req->spec.rem_host, ntohs(req->spec.rem_port),
917d48523cbSMartin Habets req->spec.loc_host, ntohs(req->spec.loc_port),
918d48523cbSMartin Habets req->rxq_index, req->flow_id, rc, arfs_id);
919d48523cbSMartin Habets channel->n_rfs_succeeded++;
920d48523cbSMartin Habets } else {
921d48523cbSMartin Habets if (req->spec.ether_type == htons(ETH_P_IP))
922d48523cbSMartin Habets netif_dbg(efx, rx_status, efx->net_dev,
923d48523cbSMartin Habets "failed to steer %s %pI4:%u:%pI4:%u to queue %u [flow %u rc %d id %u]\n",
924d48523cbSMartin Habets (req->spec.ip_proto == IPPROTO_TCP) ? "TCP" : "UDP",
925d48523cbSMartin Habets req->spec.rem_host, ntohs(req->spec.rem_port),
926d48523cbSMartin Habets req->spec.loc_host, ntohs(req->spec.loc_port),
927d48523cbSMartin Habets req->rxq_index, req->flow_id, rc, arfs_id);
928d48523cbSMartin Habets else
929d48523cbSMartin Habets netif_dbg(efx, rx_status, efx->net_dev,
930d48523cbSMartin Habets "failed to steer %s [%pI6]:%u:[%pI6]:%u to queue %u [flow %u rc %d id %u]\n",
931d48523cbSMartin Habets (req->spec.ip_proto == IPPROTO_TCP) ? "TCP" : "UDP",
932d48523cbSMartin Habets req->spec.rem_host, ntohs(req->spec.rem_port),
933d48523cbSMartin Habets req->spec.loc_host, ntohs(req->spec.loc_port),
934d48523cbSMartin Habets req->rxq_index, req->flow_id, rc, arfs_id);
935d48523cbSMartin Habets channel->n_rfs_failed++;
936d48523cbSMartin Habets /* We're overloading the NIC's filter tables, so let's do a
937d48523cbSMartin Habets * chunk of extra expiry work.
938d48523cbSMartin Habets */
939*7f9e4b2aSMartin Habets __efx_siena_filter_rfs_expire(channel,
940*7f9e4b2aSMartin Habets min(channel->rfs_filter_count,
941d48523cbSMartin Habets 100u));
942d48523cbSMartin Habets }
943d48523cbSMartin Habets
944d48523cbSMartin Habets /* Release references */
945d48523cbSMartin Habets clear_bit(slot_idx, &efx->rps_slot_map);
946d48523cbSMartin Habets dev_put(req->net_dev);
947d48523cbSMartin Habets }
948d48523cbSMartin Habets
efx_siena_filter_rfs(struct net_device * net_dev,const struct sk_buff * skb,u16 rxq_index,u32 flow_id)949*7f9e4b2aSMartin Habets int efx_siena_filter_rfs(struct net_device *net_dev, const struct sk_buff *skb,
950d48523cbSMartin Habets u16 rxq_index, u32 flow_id)
951d48523cbSMartin Habets {
952d48523cbSMartin Habets struct efx_nic *efx = netdev_priv(net_dev);
953d48523cbSMartin Habets struct efx_async_filter_insertion *req;
954d48523cbSMartin Habets struct efx_arfs_rule *rule;
955d48523cbSMartin Habets struct flow_keys fk;
956d48523cbSMartin Habets int slot_idx;
957d48523cbSMartin Habets bool new;
958d48523cbSMartin Habets int rc;
959d48523cbSMartin Habets
960d48523cbSMartin Habets /* find a free slot */
961d48523cbSMartin Habets for (slot_idx = 0; slot_idx < EFX_RPS_MAX_IN_FLIGHT; slot_idx++)
962d48523cbSMartin Habets if (!test_and_set_bit(slot_idx, &efx->rps_slot_map))
963d48523cbSMartin Habets break;
964d48523cbSMartin Habets if (slot_idx >= EFX_RPS_MAX_IN_FLIGHT)
965d48523cbSMartin Habets return -EBUSY;
966d48523cbSMartin Habets
967d48523cbSMartin Habets if (flow_id == RPS_FLOW_ID_INVALID) {
968d48523cbSMartin Habets rc = -EINVAL;
969d48523cbSMartin Habets goto out_clear;
970d48523cbSMartin Habets }
971d48523cbSMartin Habets
972d48523cbSMartin Habets if (!skb_flow_dissect_flow_keys(skb, &fk, 0)) {
973d48523cbSMartin Habets rc = -EPROTONOSUPPORT;
974d48523cbSMartin Habets goto out_clear;
975d48523cbSMartin Habets }
976d48523cbSMartin Habets
977d48523cbSMartin Habets if (fk.basic.n_proto != htons(ETH_P_IP) && fk.basic.n_proto != htons(ETH_P_IPV6)) {
978d48523cbSMartin Habets rc = -EPROTONOSUPPORT;
979d48523cbSMartin Habets goto out_clear;
980d48523cbSMartin Habets }
981d48523cbSMartin Habets if (fk.control.flags & FLOW_DIS_IS_FRAGMENT) {
982d48523cbSMartin Habets rc = -EPROTONOSUPPORT;
983d48523cbSMartin Habets goto out_clear;
984d48523cbSMartin Habets }
985d48523cbSMartin Habets
986d48523cbSMartin Habets req = efx->rps_slot + slot_idx;
987d48523cbSMartin Habets efx_filter_init_rx(&req->spec, EFX_FILTER_PRI_HINT,
988d48523cbSMartin Habets efx->rx_scatter ? EFX_FILTER_FLAG_RX_SCATTER : 0,
989d48523cbSMartin Habets rxq_index);
990d48523cbSMartin Habets req->spec.match_flags =
991d48523cbSMartin Habets EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_IP_PROTO |
992d48523cbSMartin Habets EFX_FILTER_MATCH_LOC_HOST | EFX_FILTER_MATCH_LOC_PORT |
993d48523cbSMartin Habets EFX_FILTER_MATCH_REM_HOST | EFX_FILTER_MATCH_REM_PORT;
994d48523cbSMartin Habets req->spec.ether_type = fk.basic.n_proto;
995d48523cbSMartin Habets req->spec.ip_proto = fk.basic.ip_proto;
996d48523cbSMartin Habets
997d48523cbSMartin Habets if (fk.basic.n_proto == htons(ETH_P_IP)) {
998d48523cbSMartin Habets req->spec.rem_host[0] = fk.addrs.v4addrs.src;
999d48523cbSMartin Habets req->spec.loc_host[0] = fk.addrs.v4addrs.dst;
1000d48523cbSMartin Habets } else {
1001d48523cbSMartin Habets memcpy(req->spec.rem_host, &fk.addrs.v6addrs.src,
1002d48523cbSMartin Habets sizeof(struct in6_addr));
1003d48523cbSMartin Habets memcpy(req->spec.loc_host, &fk.addrs.v6addrs.dst,
1004d48523cbSMartin Habets sizeof(struct in6_addr));
1005d48523cbSMartin Habets }
1006d48523cbSMartin Habets
1007d48523cbSMartin Habets req->spec.rem_port = fk.ports.src;
1008d48523cbSMartin Habets req->spec.loc_port = fk.ports.dst;
1009d48523cbSMartin Habets
1010d48523cbSMartin Habets if (efx->rps_hash_table) {
1011d48523cbSMartin Habets /* Add it to ARFS hash table */
1012d48523cbSMartin Habets spin_lock(&efx->rps_hash_lock);
1013d48523cbSMartin Habets rule = efx_rps_hash_add(efx, &req->spec, &new);
1014d48523cbSMartin Habets if (!rule) {
1015d48523cbSMartin Habets rc = -ENOMEM;
1016d48523cbSMartin Habets goto out_unlock;
1017d48523cbSMartin Habets }
1018d48523cbSMartin Habets if (new)
1019d48523cbSMartin Habets rule->arfs_id = efx->rps_next_id++ % RPS_NO_FILTER;
1020d48523cbSMartin Habets rc = rule->arfs_id;
1021d48523cbSMartin Habets /* Skip if existing or pending filter already does the right thing */
1022d48523cbSMartin Habets if (!new && rule->rxq_index == rxq_index &&
1023d48523cbSMartin Habets rule->filter_id >= EFX_ARFS_FILTER_ID_PENDING)
1024d48523cbSMartin Habets goto out_unlock;
1025d48523cbSMartin Habets rule->rxq_index = rxq_index;
1026d48523cbSMartin Habets rule->filter_id = EFX_ARFS_FILTER_ID_PENDING;
1027d48523cbSMartin Habets spin_unlock(&efx->rps_hash_lock);
1028d48523cbSMartin Habets } else {
1029d48523cbSMartin Habets /* Without an ARFS hash table, we just use arfs_id 0 for all
1030d48523cbSMartin Habets * filters. This means if multiple flows hash to the same
1031d48523cbSMartin Habets * flow_id, all but the most recently touched will be eligible
1032d48523cbSMartin Habets * for expiry.
1033d48523cbSMartin Habets */
1034d48523cbSMartin Habets rc = 0;
1035d48523cbSMartin Habets }
1036d48523cbSMartin Habets
1037d48523cbSMartin Habets /* Queue the request */
1038d48523cbSMartin Habets dev_hold(req->net_dev = net_dev);
1039d48523cbSMartin Habets INIT_WORK(&req->work, efx_filter_rfs_work);
1040d48523cbSMartin Habets req->rxq_index = rxq_index;
1041d48523cbSMartin Habets req->flow_id = flow_id;
1042d48523cbSMartin Habets schedule_work(&req->work);
1043d48523cbSMartin Habets return rc;
1044d48523cbSMartin Habets out_unlock:
1045d48523cbSMartin Habets spin_unlock(&efx->rps_hash_lock);
1046d48523cbSMartin Habets out_clear:
1047d48523cbSMartin Habets clear_bit(slot_idx, &efx->rps_slot_map);
1048d48523cbSMartin Habets return rc;
1049d48523cbSMartin Habets }
1050d48523cbSMartin Habets
__efx_siena_filter_rfs_expire(struct efx_channel * channel,unsigned int quota)1051*7f9e4b2aSMartin Habets bool __efx_siena_filter_rfs_expire(struct efx_channel *channel,
1052*7f9e4b2aSMartin Habets unsigned int quota)
1053d48523cbSMartin Habets {
1054d48523cbSMartin Habets bool (*expire_one)(struct efx_nic *efx, u32 flow_id, unsigned int index);
1055d48523cbSMartin Habets struct efx_nic *efx = channel->efx;
1056d48523cbSMartin Habets unsigned int index, size, start;
1057d48523cbSMartin Habets u32 flow_id;
1058d48523cbSMartin Habets
1059d48523cbSMartin Habets if (!mutex_trylock(&efx->rps_mutex))
1060d48523cbSMartin Habets return false;
1061d48523cbSMartin Habets expire_one = efx->type->filter_rfs_expire_one;
1062d48523cbSMartin Habets index = channel->rfs_expire_index;
1063d48523cbSMartin Habets start = index;
1064d48523cbSMartin Habets size = efx->type->max_rx_ip_filters;
1065d48523cbSMartin Habets while (quota) {
1066d48523cbSMartin Habets flow_id = channel->rps_flow_id[index];
1067d48523cbSMartin Habets
1068d48523cbSMartin Habets if (flow_id != RPS_FLOW_ID_INVALID) {
1069d48523cbSMartin Habets quota--;
1070d48523cbSMartin Habets if (expire_one(efx, flow_id, index)) {
1071d48523cbSMartin Habets netif_info(efx, rx_status, efx->net_dev,
1072d48523cbSMartin Habets "expired filter %d [channel %u flow %u]\n",
1073d48523cbSMartin Habets index, channel->channel, flow_id);
1074d48523cbSMartin Habets channel->rps_flow_id[index] = RPS_FLOW_ID_INVALID;
1075d48523cbSMartin Habets channel->rfs_filter_count--;
1076d48523cbSMartin Habets }
1077d48523cbSMartin Habets }
1078d48523cbSMartin Habets if (++index == size)
1079d48523cbSMartin Habets index = 0;
1080d48523cbSMartin Habets /* If we were called with a quota that exceeds the total number
1081d48523cbSMartin Habets * of filters in the table (which shouldn't happen, but could
1082d48523cbSMartin Habets * if two callers race), ensure that we don't loop forever -
1083d48523cbSMartin Habets * stop when we've examined every row of the table.
1084d48523cbSMartin Habets */
1085d48523cbSMartin Habets if (index == start)
1086d48523cbSMartin Habets break;
1087d48523cbSMartin Habets }
1088d48523cbSMartin Habets
1089d48523cbSMartin Habets channel->rfs_expire_index = index;
1090d48523cbSMartin Habets mutex_unlock(&efx->rps_mutex);
1091d48523cbSMartin Habets return true;
1092d48523cbSMartin Habets }
1093d48523cbSMartin Habets
1094d48523cbSMartin Habets #endif /* CONFIG_RFS_ACCEL */
1095