Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1 | /**************************************************************************** |
| 2 | * Driver for Solarflare Solarstorm network controllers and boards |
| 3 | * Copyright 2005-2006 Fen Systems Ltd. |
Ben Hutchings | 0a6f40c | 2011-02-25 00:01:34 +0000 | [diff] [blame] | 4 | * Copyright 2005-2011 Solarflare Communications Inc. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License version 2 as published |
| 8 | * by the Free Software Foundation, incorporated herein by reference. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/socket.h> |
| 12 | #include <linux/in.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 14 | #include <linux/ip.h> |
| 15 | #include <linux/tcp.h> |
| 16 | #include <linux/udp.h> |
Paul Gortmaker | 70c7160 | 2011-05-22 16:47:17 -0400 | [diff] [blame] | 17 | #include <linux/prefetch.h> |
Paul Gortmaker | 6eb07ca | 2011-09-15 19:46:05 -0400 | [diff] [blame] | 18 | #include <linux/moduleparam.h> |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 19 | #include <linux/iommu.h> |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 20 | #include <net/ip.h> |
| 21 | #include <net/checksum.h> |
| 22 | #include "net_driver.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 23 | #include "efx.h" |
Ben Hutchings | 744093c | 2009-11-29 15:12:08 +0000 | [diff] [blame] | 24 | #include "nic.h" |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 25 | #include "selftest.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 26 | #include "workarounds.h" |
| 27 | |
| 28 | /* Number of RX descriptors pushed at once. */ |
| 29 | #define EFX_RX_BATCH 8 |
| 30 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 31 | /* Number of RX buffers to recycle pages for. When creating the RX page recycle |
| 32 | * ring, this number is divided by the number of buffers per page to calculate |
| 33 | * the number of pages to store in the RX page recycle ring. |
| 34 | */ |
| 35 | #define EFX_RECYCLE_RING_SIZE_IOMMU 4096 |
| 36 | #define EFX_RECYCLE_RING_SIZE_NOIOMMU (2 * EFX_RX_BATCH) |
| 37 | |
Ben Hutchings | 272baee | 2013-01-29 23:33:14 +0000 | [diff] [blame] | 38 | /* Maximum length for an RX descriptor sharing a page */ |
| 39 | #define EFX_RX_HALF_PAGE ((PAGE_SIZE >> 1) - sizeof(struct efx_rx_page_state) \ |
| 40 | - EFX_PAGE_IP_ALIGN) |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 41 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 42 | /* Size of buffer allocated for skb header area. */ |
| 43 | #define EFX_SKB_HEADERS 64u |
| 44 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 45 | /* This is the percentage fill level below which new RX descriptors |
| 46 | * will be added to the RX descriptor ring. |
| 47 | */ |
David Riddoch | 6423518 | 2012-04-11 13:12:41 +0100 | [diff] [blame] | 48 | static unsigned int rx_refill_threshold; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 49 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 50 | /* Each packet can consume up to ceil(max_frame_len / buffer_size) buffers */ |
| 51 | #define EFX_RX_MAX_FRAGS DIV_ROUND_UP(EFX_MAX_FRAME_LEN(EFX_MAX_MTU), \ |
| 52 | EFX_RX_USR_BUF_SIZE) |
| 53 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 54 | /* |
| 55 | * RX maximum head room required. |
| 56 | * |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 57 | * This must be at least 1 to prevent overflow, plus one packet-worth |
| 58 | * to allow pipelined receives. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 59 | */ |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 60 | #define EFX_RXD_HEAD_ROOM (1 + EFX_RX_MAX_FRAGS) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 61 | |
Ben Hutchings | b184f16 | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 62 | static inline u8 *efx_rx_buf_va(struct efx_rx_buffer *buf) |
Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 63 | { |
Ben Hutchings | b184f16 | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 64 | return page_address(buf->page) + buf->page_offset; |
Steve Hodgson | a526f14 | 2011-02-24 23:45:16 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static inline u32 efx_rx_buf_hash(const u8 *eh) |
| 68 | { |
| 69 | /* The ethernet header is always directly after any hash. */ |
Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 70 | #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) || NET_IP_ALIGN % 4 == 0 |
Steve Hodgson | a526f14 | 2011-02-24 23:45:16 +0000 | [diff] [blame] | 71 | return __le32_to_cpup((const __le32 *)(eh - 4)); |
Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 72 | #else |
Steve Hodgson | a526f14 | 2011-02-24 23:45:16 +0000 | [diff] [blame] | 73 | const u8 *data = eh - 4; |
Ben Hutchings | 0beaca2 | 2012-01-05 18:54:04 +0000 | [diff] [blame] | 74 | return (u32)data[0] | |
| 75 | (u32)data[1] << 8 | |
| 76 | (u32)data[2] << 16 | |
| 77 | (u32)data[3] << 24; |
Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 78 | #endif |
| 79 | } |
| 80 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 81 | static inline struct efx_rx_buffer * |
| 82 | efx_rx_buf_next(struct efx_rx_queue *rx_queue, struct efx_rx_buffer *rx_buf) |
| 83 | { |
| 84 | if (unlikely(rx_buf == efx_rx_buffer(rx_queue, rx_queue->ptr_mask))) |
| 85 | return efx_rx_buffer(rx_queue, 0); |
| 86 | else |
| 87 | return rx_buf + 1; |
| 88 | } |
| 89 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 90 | static inline void efx_sync_rx_buffer(struct efx_nic *efx, |
| 91 | struct efx_rx_buffer *rx_buf, |
| 92 | unsigned int len) |
| 93 | { |
| 94 | dma_sync_single_for_cpu(&efx->pci_dev->dev, rx_buf->dma_addr, len, |
| 95 | DMA_FROM_DEVICE); |
| 96 | } |
| 97 | |
| 98 | /* Return true if this is the last RX buffer using a page. */ |
| 99 | static inline bool efx_rx_is_last_buffer(struct efx_nic *efx, |
| 100 | struct efx_rx_buffer *rx_buf) |
| 101 | { |
| 102 | return (rx_buf->page_offset >= (PAGE_SIZE >> 1) || |
| 103 | efx->rx_dma_len > EFX_RX_HALF_PAGE); |
| 104 | } |
| 105 | |
| 106 | /* Check the RX page recycle ring for a page that can be reused. */ |
| 107 | static struct page *efx_reuse_page(struct efx_rx_queue *rx_queue) |
| 108 | { |
| 109 | struct efx_nic *efx = rx_queue->efx; |
| 110 | struct page *page; |
| 111 | struct efx_rx_page_state *state; |
| 112 | unsigned index; |
| 113 | |
| 114 | index = rx_queue->page_remove & rx_queue->page_ptr_mask; |
| 115 | page = rx_queue->page_ring[index]; |
| 116 | if (page == NULL) |
| 117 | return NULL; |
| 118 | |
| 119 | rx_queue->page_ring[index] = NULL; |
| 120 | /* page_remove cannot exceed page_add. */ |
| 121 | if (rx_queue->page_remove != rx_queue->page_add) |
| 122 | ++rx_queue->page_remove; |
| 123 | |
| 124 | /* If page_count is 1 then we hold the only reference to this page. */ |
| 125 | if (page_count(page) == 1) { |
| 126 | ++rx_queue->page_recycle_count; |
| 127 | return page; |
| 128 | } else { |
| 129 | state = page_address(page); |
| 130 | dma_unmap_page(&efx->pci_dev->dev, state->dma_addr, |
| 131 | PAGE_SIZE << efx->rx_buffer_order, |
| 132 | DMA_FROM_DEVICE); |
| 133 | put_page(page); |
| 134 | ++rx_queue->page_recycle_failed; |
| 135 | } |
| 136 | |
| 137 | return NULL; |
| 138 | } |
| 139 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 140 | /** |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 141 | * efx_init_rx_buffers - create EFX_RX_BATCH page-based RX buffers |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 142 | * |
| 143 | * @rx_queue: Efx RX queue |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 144 | * |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 145 | * This allocates memory for EFX_RX_BATCH receive buffers, maps them for DMA, |
| 146 | * and populates struct efx_rx_buffers for each one. Return a negative error |
| 147 | * code or 0 on success. If a single page can be split between two buffers, |
| 148 | * then the page will either be inserted fully, or not at at all. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 149 | */ |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 150 | static int efx_init_rx_buffers(struct efx_rx_queue *rx_queue) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 151 | { |
| 152 | struct efx_nic *efx = rx_queue->efx; |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 153 | struct efx_rx_buffer *rx_buf; |
| 154 | struct page *page; |
Ben Hutchings | b590ace | 2013-01-10 23:51:54 +0000 | [diff] [blame] | 155 | unsigned int page_offset; |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 156 | struct efx_rx_page_state *state; |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 157 | dma_addr_t dma_addr; |
| 158 | unsigned index, count; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 159 | |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 160 | /* We can split a page between two buffers */ |
| 161 | BUILD_BUG_ON(EFX_RX_BATCH & 1); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 162 | |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 163 | for (count = 0; count < EFX_RX_BATCH; ++count) { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 164 | page = efx_reuse_page(rx_queue); |
| 165 | if (page == NULL) { |
| 166 | page = alloc_pages(__GFP_COLD | __GFP_COMP | GFP_ATOMIC, |
| 167 | efx->rx_buffer_order); |
| 168 | if (unlikely(page == NULL)) |
| 169 | return -ENOMEM; |
| 170 | dma_addr = |
| 171 | dma_map_page(&efx->pci_dev->dev, page, 0, |
| 172 | PAGE_SIZE << efx->rx_buffer_order, |
| 173 | DMA_FROM_DEVICE); |
| 174 | if (unlikely(dma_mapping_error(&efx->pci_dev->dev, |
| 175 | dma_addr))) { |
| 176 | __free_pages(page, efx->rx_buffer_order); |
| 177 | return -EIO; |
| 178 | } |
| 179 | state = page_address(page); |
| 180 | state->dma_addr = dma_addr; |
| 181 | } else { |
| 182 | state = page_address(page); |
| 183 | dma_addr = state->dma_addr; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 184 | } |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 185 | get_page(page); |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 186 | |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 187 | dma_addr += sizeof(struct efx_rx_page_state); |
Ben Hutchings | b590ace | 2013-01-10 23:51:54 +0000 | [diff] [blame] | 188 | page_offset = sizeof(struct efx_rx_page_state); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 189 | |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 190 | split: |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 191 | index = rx_queue->added_count & rx_queue->ptr_mask; |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 192 | rx_buf = efx_rx_buffer(rx_queue, index); |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 193 | rx_buf->dma_addr = dma_addr + EFX_PAGE_IP_ALIGN; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 194 | rx_buf->page = page; |
Ben Hutchings | c73e787 | 2013-03-05 17:49:39 +0000 | [diff] [blame] | 195 | rx_buf->page_offset = page_offset + EFX_PAGE_IP_ALIGN; |
Ben Hutchings | 272baee | 2013-01-29 23:33:14 +0000 | [diff] [blame] | 196 | rx_buf->len = efx->rx_dma_len; |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 197 | ++rx_queue->added_count; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 198 | |
Ben Hutchings | 272baee | 2013-01-29 23:33:14 +0000 | [diff] [blame] | 199 | if ((~count & 1) && (efx->rx_dma_len <= EFX_RX_HALF_PAGE)) { |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 200 | /* Use the second half of the page */ |
| 201 | get_page(page); |
| 202 | dma_addr += (PAGE_SIZE >> 1); |
Ben Hutchings | b590ace | 2013-01-10 23:51:54 +0000 | [diff] [blame] | 203 | page_offset += (PAGE_SIZE >> 1); |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 204 | ++count; |
| 205 | goto split; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 206 | } |
| 207 | } |
| 208 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 209 | return 0; |
| 210 | } |
| 211 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 212 | /* Unmap a DMA-mapped page. This function is only called for the final RX |
| 213 | * buffer in a page. |
| 214 | */ |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 215 | static void efx_unmap_rx_buffer(struct efx_nic *efx, |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 216 | struct efx_rx_buffer *rx_buf) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 217 | { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 218 | struct page *page = rx_buf->page; |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 219 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 220 | if (page) { |
| 221 | struct efx_rx_page_state *state = page_address(page); |
| 222 | dma_unmap_page(&efx->pci_dev->dev, |
| 223 | state->dma_addr, |
| 224 | PAGE_SIZE << efx->rx_buffer_order, |
| 225 | DMA_FROM_DEVICE); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 226 | } |
| 227 | } |
| 228 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 229 | static void efx_free_rx_buffer(struct efx_rx_buffer *rx_buf) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 230 | { |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 231 | if (rx_buf->page) { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 232 | put_page(rx_buf->page); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 233 | rx_buf->page = NULL; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 234 | } |
| 235 | } |
| 236 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 237 | /* Attempt to recycle the page if there is an RX recycle ring; the page can |
| 238 | * only be added if this is the final RX buffer, to prevent pages being used in |
| 239 | * the descriptor ring and appearing in the recycle ring simultaneously. |
| 240 | */ |
| 241 | static void efx_recycle_rx_page(struct efx_channel *channel, |
| 242 | struct efx_rx_buffer *rx_buf) |
| 243 | { |
| 244 | struct page *page = rx_buf->page; |
| 245 | struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel); |
| 246 | struct efx_nic *efx = rx_queue->efx; |
| 247 | unsigned index; |
| 248 | |
| 249 | /* Only recycle the page after processing the final buffer. */ |
| 250 | if (!efx_rx_is_last_buffer(efx, rx_buf)) |
| 251 | return; |
| 252 | |
| 253 | index = rx_queue->page_add & rx_queue->page_ptr_mask; |
| 254 | if (rx_queue->page_ring[index] == NULL) { |
| 255 | unsigned read_index = rx_queue->page_remove & |
| 256 | rx_queue->page_ptr_mask; |
| 257 | |
| 258 | /* The next slot in the recycle ring is available, but |
| 259 | * increment page_remove if the read pointer currently |
| 260 | * points here. |
| 261 | */ |
| 262 | if (read_index == index) |
| 263 | ++rx_queue->page_remove; |
| 264 | rx_queue->page_ring[index] = page; |
| 265 | ++rx_queue->page_add; |
| 266 | return; |
| 267 | } |
| 268 | ++rx_queue->page_recycle_full; |
| 269 | efx_unmap_rx_buffer(efx, rx_buf); |
| 270 | put_page(rx_buf->page); |
| 271 | } |
| 272 | |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 273 | static void efx_fini_rx_buffer(struct efx_rx_queue *rx_queue, |
| 274 | struct efx_rx_buffer *rx_buf) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 275 | { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 276 | /* Release the page reference we hold for the buffer. */ |
| 277 | if (rx_buf->page) |
| 278 | put_page(rx_buf->page); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 279 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 280 | /* If this is the last buffer in a page, unmap and free it. */ |
| 281 | if (efx_rx_is_last_buffer(rx_queue->efx, rx_buf)) { |
| 282 | efx_unmap_rx_buffer(rx_queue->efx, rx_buf); |
| 283 | efx_free_rx_buffer(rx_buf); |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 284 | } |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 285 | rx_buf->page = NULL; |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 288 | /* Recycle the pages that are used by buffers that have just been received. */ |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 289 | static void efx_recycle_rx_buffers(struct efx_channel *channel, |
| 290 | struct efx_rx_buffer *rx_buf, |
| 291 | unsigned int n_frags) |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 292 | { |
Ben Hutchings | f7d12cd | 2010-09-10 06:41:47 +0000 | [diff] [blame] | 293 | struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel); |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 294 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 295 | do { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 296 | efx_recycle_rx_page(channel, rx_buf); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 297 | rx_buf = efx_rx_buf_next(rx_queue, rx_buf); |
| 298 | } while (--n_frags); |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 299 | } |
| 300 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 301 | /** |
| 302 | * efx_fast_push_rx_descriptors - push new RX descriptors quickly |
| 303 | * @rx_queue: RX descriptor queue |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 304 | * |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 305 | * This will aim to fill the RX descriptor queue up to |
David Riddoch | da9ca50 | 2012-04-11 13:09:24 +0100 | [diff] [blame] | 306 | * @rx_queue->@max_fill. If there is insufficient atomic |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 307 | * memory to do so, a slow fill will be scheduled. |
| 308 | * |
| 309 | * The caller must provide serialisation (none is used here). In practise, |
| 310 | * this means this function must run from the NAPI handler, or be called |
| 311 | * when NAPI is disabled. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 312 | */ |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 313 | void efx_fast_push_rx_descriptors(struct efx_rx_queue *rx_queue) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 314 | { |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 315 | unsigned fill_level; |
| 316 | int space, rc = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 317 | |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 318 | /* Calculate current fill level, and exit if we don't need to fill */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 319 | fill_level = (rx_queue->added_count - rx_queue->removed_count); |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 320 | EFX_BUG_ON_PARANOID(fill_level > rx_queue->efx->rxq_entries); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 321 | if (fill_level >= rx_queue->fast_fill_trigger) |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 322 | goto out; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 323 | |
| 324 | /* Record minimum fill level */ |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 325 | if (unlikely(fill_level < rx_queue->min_fill)) { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 326 | if (fill_level) |
| 327 | rx_queue->min_fill = fill_level; |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 328 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 329 | |
David Riddoch | da9ca50 | 2012-04-11 13:09:24 +0100 | [diff] [blame] | 330 | space = rx_queue->max_fill - fill_level; |
David Riddoch | 6423518 | 2012-04-11 13:12:41 +0100 | [diff] [blame] | 331 | EFX_BUG_ON_PARANOID(space < EFX_RX_BATCH); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 332 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 333 | netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev, |
| 334 | "RX queue %d fast-filling descriptor ring from" |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 335 | " level %d to level %d\n", |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 336 | efx_rx_queue_index(rx_queue), fill_level, |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 337 | rx_queue->max_fill); |
| 338 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 339 | |
| 340 | do { |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 341 | rc = efx_init_rx_buffers(rx_queue); |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 342 | if (unlikely(rc)) { |
| 343 | /* Ensure that we don't leave the rx queue empty */ |
| 344 | if (rx_queue->added_count == rx_queue->removed_count) |
| 345 | efx_schedule_slow_fill(rx_queue); |
| 346 | goto out; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 347 | } |
| 348 | } while ((space -= EFX_RX_BATCH) >= EFX_RX_BATCH); |
| 349 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 350 | netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev, |
| 351 | "RX queue %d fast-filled descriptor ring " |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 352 | "to level %d\n", efx_rx_queue_index(rx_queue), |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 353 | rx_queue->added_count - rx_queue->removed_count); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 354 | |
| 355 | out: |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 356 | if (rx_queue->notified_count != rx_queue->added_count) |
| 357 | efx_nic_notify_rx_desc(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 358 | } |
| 359 | |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 360 | void efx_rx_slow_fill(unsigned long context) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 361 | { |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 362 | struct efx_rx_queue *rx_queue = (struct efx_rx_queue *)context; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 363 | |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 364 | /* Post an event to cause NAPI to run and refill the queue */ |
Ben Hutchings | 2ae75da | 2012-02-07 23:49:52 +0000 | [diff] [blame] | 365 | efx_nic_generate_fill_event(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 366 | ++rx_queue->slow_fill_count; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 367 | } |
| 368 | |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 369 | static void efx_rx_packet__check_len(struct efx_rx_queue *rx_queue, |
| 370 | struct efx_rx_buffer *rx_buf, |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 371 | int len) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 372 | { |
| 373 | struct efx_nic *efx = rx_queue->efx; |
| 374 | unsigned max_len = rx_buf->len - efx->type->rx_buffer_padding; |
| 375 | |
| 376 | if (likely(len <= max_len)) |
| 377 | return; |
| 378 | |
| 379 | /* The packet must be discarded, but this is only a fatal error |
| 380 | * if the caller indicated it was |
| 381 | */ |
Ben Hutchings | db33956 | 2011-08-26 18:05:11 +0100 | [diff] [blame] | 382 | rx_buf->flags |= EFX_RX_PKT_DISCARD; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 383 | |
| 384 | if ((len > rx_buf->len) && EFX_WORKAROUND_8071(efx)) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 385 | if (net_ratelimit()) |
| 386 | netif_err(efx, rx_err, efx->net_dev, |
| 387 | " RX queue %d seriously overlength " |
| 388 | "RX event (0x%x > 0x%x+0x%x). Leaking\n", |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 389 | efx_rx_queue_index(rx_queue), len, max_len, |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 390 | efx->type->rx_buffer_padding); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 391 | efx_schedule_reset(efx, RESET_TYPE_RX_RECOVERY); |
| 392 | } else { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 393 | if (net_ratelimit()) |
| 394 | netif_err(efx, rx_err, efx->net_dev, |
| 395 | " RX queue %d overlength RX event " |
| 396 | "(0x%x > 0x%x)\n", |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 397 | efx_rx_queue_index(rx_queue), len, max_len); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 398 | } |
| 399 | |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 400 | efx_rx_queue_channel(rx_queue)->n_rx_overlength++; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 401 | } |
| 402 | |
Ben Hutchings | 61321d9 | 2012-02-25 01:58:35 +0000 | [diff] [blame] | 403 | /* Pass a received packet up through GRO. GRO can handle pages |
| 404 | * regardless of checksum state and skbs with a good checksum. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 405 | */ |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 406 | static void |
| 407 | efx_rx_packet_gro(struct efx_channel *channel, struct efx_rx_buffer *rx_buf, |
| 408 | unsigned int n_frags, u8 *eh) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 409 | { |
Herbert Xu | da3bc07 | 2009-01-18 21:50:16 -0800 | [diff] [blame] | 410 | struct napi_struct *napi = &channel->napi_str; |
Ben Hutchings | 18e1d2b | 2009-10-29 07:21:24 +0000 | [diff] [blame] | 411 | gro_result_t gro_result; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 412 | struct efx_nic *efx = channel->efx; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 413 | struct sk_buff *skb; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 414 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 415 | skb = napi_get_frags(napi); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 416 | if (unlikely(!skb)) { |
| 417 | while (n_frags--) { |
| 418 | put_page(rx_buf->page); |
| 419 | rx_buf->page = NULL; |
| 420 | rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf); |
| 421 | } |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 422 | return; |
| 423 | } |
Ben Hutchings | 1241e95 | 2009-11-23 16:02:25 +0000 | [diff] [blame] | 424 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 425 | if (efx->net_dev->features & NETIF_F_RXHASH) |
| 426 | skb->rxhash = efx_rx_buf_hash(eh); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 427 | skb->ip_summed = ((rx_buf->flags & EFX_RX_PKT_CSUMMED) ? |
| 428 | CHECKSUM_UNNECESSARY : CHECKSUM_NONE); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 429 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 430 | for (;;) { |
| 431 | skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, |
| 432 | rx_buf->page, rx_buf->page_offset, |
| 433 | rx_buf->len); |
| 434 | rx_buf->page = NULL; |
| 435 | skb->len += rx_buf->len; |
| 436 | if (skb_shinfo(skb)->nr_frags == n_frags) |
| 437 | break; |
| 438 | |
| 439 | rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf); |
| 440 | } |
| 441 | |
| 442 | skb->data_len = skb->len; |
| 443 | skb->truesize += n_frags * efx->rx_buffer_truesize; |
| 444 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 445 | skb_record_rx_queue(skb, channel->rx_queue.core_index); |
Ben Hutchings | 3eadb7b | 2009-11-23 16:02:40 +0000 | [diff] [blame] | 446 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 447 | gro_result = napi_gro_frags(napi); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 448 | if (gro_result != GRO_DROP) |
Ben Hutchings | 18e1d2b | 2009-10-29 07:21:24 +0000 | [diff] [blame] | 449 | channel->irq_mod_score += 2; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 450 | } |
| 451 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 452 | /* Allocate and construct an SKB around page fragments */ |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 453 | static struct sk_buff *efx_rx_mk_skb(struct efx_channel *channel, |
| 454 | struct efx_rx_buffer *rx_buf, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 455 | unsigned int n_frags, |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 456 | u8 *eh, int hdr_len) |
| 457 | { |
| 458 | struct efx_nic *efx = channel->efx; |
| 459 | struct sk_buff *skb; |
| 460 | |
| 461 | /* Allocate an SKB to store the headers */ |
| 462 | skb = netdev_alloc_skb(efx->net_dev, hdr_len + EFX_PAGE_SKB_ALIGN); |
| 463 | if (unlikely(skb == NULL)) |
| 464 | return NULL; |
| 465 | |
| 466 | EFX_BUG_ON_PARANOID(rx_buf->len < hdr_len); |
| 467 | |
| 468 | skb_reserve(skb, EFX_PAGE_SKB_ALIGN); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 469 | memcpy(__skb_put(skb, hdr_len), eh, hdr_len); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 470 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 471 | /* Append the remaining page(s) onto the frag list */ |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 472 | if (rx_buf->len > hdr_len) { |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 473 | rx_buf->page_offset += hdr_len; |
| 474 | rx_buf->len -= hdr_len; |
| 475 | |
| 476 | for (;;) { |
| 477 | skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, |
| 478 | rx_buf->page, rx_buf->page_offset, |
| 479 | rx_buf->len); |
| 480 | rx_buf->page = NULL; |
| 481 | skb->len += rx_buf->len; |
| 482 | skb->data_len += rx_buf->len; |
| 483 | if (skb_shinfo(skb)->nr_frags == n_frags) |
| 484 | break; |
| 485 | |
| 486 | rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf); |
| 487 | } |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 488 | } else { |
| 489 | __free_pages(rx_buf->page, efx->rx_buffer_order); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 490 | rx_buf->page = NULL; |
| 491 | n_frags = 0; |
Ben Hutchings | 18e1d2b | 2009-10-29 07:21:24 +0000 | [diff] [blame] | 492 | } |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 493 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 494 | skb->truesize += n_frags * efx->rx_buffer_truesize; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 495 | |
| 496 | /* Move past the ethernet header */ |
| 497 | skb->protocol = eth_type_trans(skb, efx->net_dev); |
| 498 | |
| 499 | return skb; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 500 | } |
| 501 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 502 | void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 503 | unsigned int n_frags, unsigned int len, u16 flags) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 504 | { |
| 505 | struct efx_nic *efx = rx_queue->efx; |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 506 | struct efx_channel *channel = efx_rx_queue_channel(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 507 | struct efx_rx_buffer *rx_buf; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 508 | |
| 509 | rx_buf = efx_rx_buffer(rx_queue, index); |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 510 | rx_buf->flags = flags; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 511 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 512 | /* Validate the number of fragments and completed length */ |
| 513 | if (n_frags == 1) { |
| 514 | efx_rx_packet__check_len(rx_queue, rx_buf, len); |
| 515 | } else if (unlikely(n_frags > EFX_RX_MAX_FRAGS) || |
| 516 | unlikely(len <= (n_frags - 1) * EFX_RX_USR_BUF_SIZE) || |
| 517 | unlikely(len > n_frags * EFX_RX_USR_BUF_SIZE) || |
| 518 | unlikely(!efx->rx_scatter)) { |
| 519 | /* If this isn't an explicit discard request, either |
| 520 | * the hardware or the driver is broken. |
| 521 | */ |
| 522 | WARN_ON(!(len == 0 && rx_buf->flags & EFX_RX_PKT_DISCARD)); |
| 523 | rx_buf->flags |= EFX_RX_PKT_DISCARD; |
| 524 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 525 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 526 | netif_vdbg(efx, rx_status, efx->net_dev, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 527 | "RX queue %d received ids %x-%x len %d %s%s\n", |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 528 | efx_rx_queue_index(rx_queue), index, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 529 | (index + n_frags - 1) & rx_queue->ptr_mask, len, |
Ben Hutchings | db33956 | 2011-08-26 18:05:11 +0100 | [diff] [blame] | 530 | (rx_buf->flags & EFX_RX_PKT_CSUMMED) ? " [SUMMED]" : "", |
| 531 | (rx_buf->flags & EFX_RX_PKT_DISCARD) ? " [DISCARD]" : ""); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 532 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 533 | /* Discard packet, if instructed to do so. Process the |
| 534 | * previous receive first. |
| 535 | */ |
Ben Hutchings | db33956 | 2011-08-26 18:05:11 +0100 | [diff] [blame] | 536 | if (unlikely(rx_buf->flags & EFX_RX_PKT_DISCARD)) { |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 537 | efx_rx_flush_packet(channel); |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 538 | put_page(rx_buf->page); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 539 | efx_recycle_rx_buffers(channel, rx_buf, n_frags); |
| 540 | return; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 541 | } |
| 542 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 543 | if (n_frags == 1) |
| 544 | rx_buf->len = len; |
| 545 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 546 | /* Release and/or sync the DMA mapping - assumes all RX buffers |
| 547 | * consumed in-order per RX queue. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 548 | */ |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 549 | efx_sync_rx_buffer(efx, rx_buf, rx_buf->len); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 550 | |
| 551 | /* Prefetch nice and early so data will (hopefully) be in cache by |
| 552 | * the time we look at it. |
| 553 | */ |
Ben Hutchings | 5036b7c | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 554 | prefetch(efx_rx_buf_va(rx_buf)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 555 | |
Ben Hutchings | b74e3e8 | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 556 | rx_buf->page_offset += efx->type->rx_buffer_hash_size; |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 557 | rx_buf->len -= efx->type->rx_buffer_hash_size; |
| 558 | |
| 559 | if (n_frags > 1) { |
| 560 | /* Release/sync DMA mapping for additional fragments. |
| 561 | * Fix length for last fragment. |
| 562 | */ |
| 563 | unsigned int tail_frags = n_frags - 1; |
| 564 | |
| 565 | for (;;) { |
| 566 | rx_buf = efx_rx_buf_next(rx_queue, rx_buf); |
| 567 | if (--tail_frags == 0) |
| 568 | break; |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 569 | efx_sync_rx_buffer(efx, rx_buf, EFX_RX_USR_BUF_SIZE); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 570 | } |
| 571 | rx_buf->len = len - (n_frags - 1) * EFX_RX_USR_BUF_SIZE; |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 572 | efx_sync_rx_buffer(efx, rx_buf, rx_buf->len); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 573 | } |
Ben Hutchings | b74e3e8 | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 574 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 575 | /* All fragments have been DMA-synced, so recycle buffers and pages. */ |
| 576 | rx_buf = efx_rx_buffer(rx_queue, index); |
| 577 | efx_recycle_rx_buffers(channel, rx_buf, n_frags); |
| 578 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 579 | /* Pipeline receives so that we give time for packet headers to be |
| 580 | * prefetched into cache. |
| 581 | */ |
Ben Hutchings | ff734ef | 2013-01-29 23:33:14 +0000 | [diff] [blame] | 582 | efx_rx_flush_packet(channel); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 583 | channel->rx_pkt_n_frags = n_frags; |
| 584 | channel->rx_pkt_index = index; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 585 | } |
| 586 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 587 | static void efx_rx_deliver(struct efx_channel *channel, u8 *eh, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 588 | struct efx_rx_buffer *rx_buf, |
| 589 | unsigned int n_frags) |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 590 | { |
| 591 | struct sk_buff *skb; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 592 | u16 hdr_len = min_t(u16, rx_buf->len, EFX_SKB_HEADERS); |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 593 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 594 | skb = efx_rx_mk_skb(channel, rx_buf, n_frags, eh, hdr_len); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 595 | if (unlikely(skb == NULL)) { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 596 | efx_free_rx_buffer(rx_buf); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 597 | return; |
| 598 | } |
| 599 | skb_record_rx_queue(skb, channel->rx_queue.core_index); |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 600 | |
| 601 | /* Set the SKB flags */ |
| 602 | skb_checksum_none_assert(skb); |
| 603 | |
Stuart Hodgson | c31e5f9 | 2012-07-18 09:52:11 +0100 | [diff] [blame] | 604 | if (channel->type->receive_skb) |
Ben Hutchings | 4a74dc65 | 2013-03-05 20:13:54 +0000 | [diff] [blame] | 605 | if (channel->type->receive_skb(channel, skb)) |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 606 | return; |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 607 | |
Ben Hutchings | 4a74dc65 | 2013-03-05 20:13:54 +0000 | [diff] [blame] | 608 | /* Pass the packet up */ |
| 609 | netif_receive_skb(skb); |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 610 | } |
| 611 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 612 | /* Handle a received packet. Second half: Touches packet payload. */ |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 613 | void __efx_rx_packet(struct efx_channel *channel) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 614 | { |
| 615 | struct efx_nic *efx = channel->efx; |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 616 | struct efx_rx_buffer *rx_buf = |
| 617 | efx_rx_buffer(&channel->rx_queue, channel->rx_pkt_index); |
Ben Hutchings | b74e3e8 | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 618 | u8 *eh = efx_rx_buf_va(rx_buf); |
Ben Hutchings | 604f604 | 2010-06-25 07:05:33 +0000 | [diff] [blame] | 619 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 620 | /* If we're in loopback test, then pass the packet directly to the |
| 621 | * loopback layer, and free the rx_buf here |
| 622 | */ |
| 623 | if (unlikely(efx->loopback_selftest)) { |
Steve Hodgson | a526f14 | 2011-02-24 23:45:16 +0000 | [diff] [blame] | 624 | efx_loopback_rx_packet(efx, eh, rx_buf->len); |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 625 | efx_free_rx_buffer(rx_buf); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 626 | goto out; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 627 | } |
| 628 | |
Ben Hutchings | abfe903 | 2011-04-05 15:00:02 +0100 | [diff] [blame] | 629 | if (unlikely(!(efx->net_dev->features & NETIF_F_RXCSUM))) |
Ben Hutchings | db33956 | 2011-08-26 18:05:11 +0100 | [diff] [blame] | 630 | rx_buf->flags &= ~EFX_RX_PKT_CSUMMED; |
Ben Hutchings | ab3cf6d | 2011-04-01 22:20:06 +0100 | [diff] [blame] | 631 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 632 | if (!channel->type->receive_skb) |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 633 | efx_rx_packet_gro(channel, rx_buf, channel->rx_pkt_n_frags, eh); |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 634 | else |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 635 | efx_rx_deliver(channel, eh, rx_buf, channel->rx_pkt_n_frags); |
| 636 | out: |
| 637 | channel->rx_pkt_n_frags = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | int efx_probe_rx_queue(struct efx_rx_queue *rx_queue) |
| 641 | { |
| 642 | struct efx_nic *efx = rx_queue->efx; |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 643 | unsigned int entries; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 644 | int rc; |
| 645 | |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 646 | /* Create the smallest power-of-two aligned ring */ |
| 647 | entries = max(roundup_pow_of_two(efx->rxq_entries), EFX_MIN_DMAQ_SIZE); |
| 648 | EFX_BUG_ON_PARANOID(entries > EFX_MAX_DMAQ_SIZE); |
| 649 | rx_queue->ptr_mask = entries - 1; |
| 650 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 651 | netif_dbg(efx, probe, efx->net_dev, |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 652 | "creating RX queue %d size %#x mask %#x\n", |
| 653 | efx_rx_queue_index(rx_queue), efx->rxq_entries, |
| 654 | rx_queue->ptr_mask); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 655 | |
| 656 | /* Allocate RX buffers */ |
Thomas Meyer | c2e4e25 | 2011-12-02 12:36:13 +0000 | [diff] [blame] | 657 | rx_queue->buffer = kcalloc(entries, sizeof(*rx_queue->buffer), |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 658 | GFP_KERNEL); |
Ben Hutchings | 8831da7 | 2008-09-01 12:47:48 +0100 | [diff] [blame] | 659 | if (!rx_queue->buffer) |
| 660 | return -ENOMEM; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 661 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 662 | rc = efx_nic_probe_rx(rx_queue); |
Ben Hutchings | 8831da7 | 2008-09-01 12:47:48 +0100 | [diff] [blame] | 663 | if (rc) { |
| 664 | kfree(rx_queue->buffer); |
| 665 | rx_queue->buffer = NULL; |
| 666 | } |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 667 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 668 | return rc; |
| 669 | } |
| 670 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 671 | void efx_init_rx_recycle_ring(struct efx_nic *efx, |
| 672 | struct efx_rx_queue *rx_queue) |
| 673 | { |
| 674 | unsigned int bufs_in_recycle_ring, page_ring_size; |
| 675 | |
| 676 | /* Set the RX recycle ring size */ |
| 677 | #ifdef CONFIG_PPC64 |
| 678 | bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU; |
| 679 | #else |
| 680 | if (efx->pci_dev->dev.iommu_group) |
| 681 | bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU; |
| 682 | else |
| 683 | bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_NOIOMMU; |
| 684 | #endif /* CONFIG_PPC64 */ |
| 685 | |
| 686 | page_ring_size = roundup_pow_of_two(bufs_in_recycle_ring / |
| 687 | efx->rx_bufs_per_page); |
| 688 | rx_queue->page_ring = kcalloc(page_ring_size, |
| 689 | sizeof(*rx_queue->page_ring), GFP_KERNEL); |
| 690 | rx_queue->page_ptr_mask = page_ring_size - 1; |
| 691 | } |
| 692 | |
Ben Hutchings | bc3c90a | 2008-09-01 12:48:46 +0100 | [diff] [blame] | 693 | void efx_init_rx_queue(struct efx_rx_queue *rx_queue) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 694 | { |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 695 | struct efx_nic *efx = rx_queue->efx; |
David Riddoch | 6423518 | 2012-04-11 13:12:41 +0100 | [diff] [blame] | 696 | unsigned int max_fill, trigger, max_trigger; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 697 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 698 | netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev, |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 699 | "initialising RX queue %d\n", efx_rx_queue_index(rx_queue)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 700 | |
| 701 | /* Initialise ptr fields */ |
| 702 | rx_queue->added_count = 0; |
| 703 | rx_queue->notified_count = 0; |
| 704 | rx_queue->removed_count = 0; |
| 705 | rx_queue->min_fill = -1U; |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 706 | efx_init_rx_recycle_ring(efx, rx_queue); |
| 707 | |
| 708 | rx_queue->page_remove = 0; |
| 709 | rx_queue->page_add = rx_queue->page_ptr_mask + 1; |
| 710 | rx_queue->page_recycle_count = 0; |
| 711 | rx_queue->page_recycle_failed = 0; |
| 712 | rx_queue->page_recycle_full = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 713 | |
| 714 | /* Initialise limit fields */ |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 715 | max_fill = efx->rxq_entries - EFX_RXD_HEAD_ROOM; |
David Riddoch | 6423518 | 2012-04-11 13:12:41 +0100 | [diff] [blame] | 716 | max_trigger = max_fill - EFX_RX_BATCH; |
| 717 | if (rx_refill_threshold != 0) { |
| 718 | trigger = max_fill * min(rx_refill_threshold, 100U) / 100U; |
| 719 | if (trigger > max_trigger) |
| 720 | trigger = max_trigger; |
| 721 | } else { |
| 722 | trigger = max_trigger; |
| 723 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 724 | |
| 725 | rx_queue->max_fill = max_fill; |
| 726 | rx_queue->fast_fill_trigger = trigger; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 727 | |
| 728 | /* Set up RX descriptor ring */ |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 729 | rx_queue->enabled = true; |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 730 | efx_nic_init_rx(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 731 | } |
| 732 | |
| 733 | void efx_fini_rx_queue(struct efx_rx_queue *rx_queue) |
| 734 | { |
| 735 | int i; |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 736 | struct efx_nic *efx = rx_queue->efx; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 737 | struct efx_rx_buffer *rx_buf; |
| 738 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 739 | netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev, |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 740 | "shutting down RX queue %d\n", efx_rx_queue_index(rx_queue)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 741 | |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 742 | /* A flush failure might have left rx_queue->enabled */ |
| 743 | rx_queue->enabled = false; |
| 744 | |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 745 | del_timer_sync(&rx_queue->slow_fill); |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 746 | efx_nic_fini_rx(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 747 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 748 | /* Release RX buffers from the current read ptr to the write ptr */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 749 | if (rx_queue->buffer) { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 750 | for (i = rx_queue->removed_count; i < rx_queue->added_count; |
| 751 | i++) { |
| 752 | unsigned index = i & rx_queue->ptr_mask; |
| 753 | rx_buf = efx_rx_buffer(rx_queue, index); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 754 | efx_fini_rx_buffer(rx_queue, rx_buf); |
| 755 | } |
| 756 | } |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame^] | 757 | |
| 758 | /* Unmap and release the pages in the recycle ring. Remove the ring. */ |
| 759 | for (i = 0; i <= rx_queue->page_ptr_mask; i++) { |
| 760 | struct page *page = rx_queue->page_ring[i]; |
| 761 | struct efx_rx_page_state *state; |
| 762 | |
| 763 | if (page == NULL) |
| 764 | continue; |
| 765 | |
| 766 | state = page_address(page); |
| 767 | dma_unmap_page(&efx->pci_dev->dev, state->dma_addr, |
| 768 | PAGE_SIZE << efx->rx_buffer_order, |
| 769 | DMA_FROM_DEVICE); |
| 770 | put_page(page); |
| 771 | } |
| 772 | kfree(rx_queue->page_ring); |
| 773 | rx_queue->page_ring = NULL; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 774 | } |
| 775 | |
| 776 | void efx_remove_rx_queue(struct efx_rx_queue *rx_queue) |
| 777 | { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 778 | netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev, |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 779 | "destroying RX queue %d\n", efx_rx_queue_index(rx_queue)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 780 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 781 | efx_nic_remove_rx(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 782 | |
| 783 | kfree(rx_queue->buffer); |
| 784 | rx_queue->buffer = NULL; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 785 | } |
| 786 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 787 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 788 | module_param(rx_refill_threshold, uint, 0444); |
| 789 | MODULE_PARM_DESC(rx_refill_threshold, |
David Riddoch | 6423518 | 2012-04-11 13:12:41 +0100 | [diff] [blame] | 790 | "RX descriptor ring refill threshold (%)"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 791 | |