Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 1 | #ifndef _NET_GRO_CELLS_H |
| 2 | #define _NET_GRO_CELLS_H |
| 3 | |
| 4 | #include <linux/skbuff.h> |
| 5 | #include <linux/slab.h> |
| 6 | #include <linux/netdevice.h> |
| 7 | |
| 8 | struct gro_cell { |
| 9 | struct sk_buff_head napi_skbs; |
| 10 | struct napi_struct napi; |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 11 | }; |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 12 | |
| 13 | struct gro_cells { |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 14 | struct gro_cell __percpu *cells; |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 15 | }; |
| 16 | |
| 17 | static inline void gro_cells_receive(struct gro_cells *gcells, struct sk_buff *skb) |
| 18 | { |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 19 | struct gro_cell *cell; |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 20 | struct net_device *dev = skb->dev; |
| 21 | |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 22 | if (!gcells->cells || skb_cloned(skb) || !(dev->features & NETIF_F_GRO)) { |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 23 | netif_rx(skb); |
| 24 | return; |
| 25 | } |
| 26 | |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 27 | cell = this_cpu_ptr(gcells->cells); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 28 | |
| 29 | if (skb_queue_len(&cell->napi_skbs) > netdev_max_backlog) { |
| 30 | atomic_long_inc(&dev->rx_dropped); |
| 31 | kfree_skb(skb); |
| 32 | return; |
| 33 | } |
| 34 | |
Eric Dumazet | f8e8f97 | 2012-12-10 12:32:03 +0000 | [diff] [blame] | 35 | /* We run in BH context */ |
| 36 | spin_lock(&cell->napi_skbs.lock); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 37 | |
| 38 | __skb_queue_tail(&cell->napi_skbs, skb); |
| 39 | if (skb_queue_len(&cell->napi_skbs) == 1) |
| 40 | napi_schedule(&cell->napi); |
| 41 | |
Eric Dumazet | f8e8f97 | 2012-12-10 12:32:03 +0000 | [diff] [blame] | 42 | spin_unlock(&cell->napi_skbs.lock); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Eric Dumazet | f8e8f97 | 2012-12-10 12:32:03 +0000 | [diff] [blame] | 45 | /* called unser BH context */ |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 46 | static inline int gro_cell_poll(struct napi_struct *napi, int budget) |
| 47 | { |
| 48 | struct gro_cell *cell = container_of(napi, struct gro_cell, napi); |
| 49 | struct sk_buff *skb; |
| 50 | int work_done = 0; |
| 51 | |
Eric Dumazet | f8e8f97 | 2012-12-10 12:32:03 +0000 | [diff] [blame] | 52 | spin_lock(&cell->napi_skbs.lock); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 53 | while (work_done < budget) { |
Eric Dumazet | f8e8f97 | 2012-12-10 12:32:03 +0000 | [diff] [blame] | 54 | skb = __skb_dequeue(&cell->napi_skbs); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 55 | if (!skb) |
| 56 | break; |
Eric Dumazet | f8e8f97 | 2012-12-10 12:32:03 +0000 | [diff] [blame] | 57 | spin_unlock(&cell->napi_skbs.lock); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 58 | napi_gro_receive(napi, skb); |
| 59 | work_done++; |
Eric Dumazet | f8e8f97 | 2012-12-10 12:32:03 +0000 | [diff] [blame] | 60 | spin_lock(&cell->napi_skbs.lock); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | if (work_done < budget) |
| 64 | napi_complete(napi); |
Eric Dumazet | f8e8f97 | 2012-12-10 12:32:03 +0000 | [diff] [blame] | 65 | spin_unlock(&cell->napi_skbs.lock); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 66 | return work_done; |
| 67 | } |
| 68 | |
| 69 | static inline int gro_cells_init(struct gro_cells *gcells, struct net_device *dev) |
| 70 | { |
| 71 | int i; |
| 72 | |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 73 | gcells->cells = alloc_percpu(struct gro_cell); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 74 | if (!gcells->cells) |
| 75 | return -ENOMEM; |
| 76 | |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 77 | for_each_possible_cpu(i) { |
| 78 | struct gro_cell *cell = per_cpu_ptr(gcells->cells, i); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 79 | |
| 80 | skb_queue_head_init(&cell->napi_skbs); |
| 81 | netif_napi_add(dev, &cell->napi, gro_cell_poll, 64); |
| 82 | napi_enable(&cell->napi); |
| 83 | } |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | static inline void gro_cells_destroy(struct gro_cells *gcells) |
| 88 | { |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 89 | int i; |
| 90 | |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 91 | if (!gcells->cells) |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 92 | return; |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 93 | for_each_possible_cpu(i) { |
| 94 | struct gro_cell *cell = per_cpu_ptr(gcells->cells, i); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 95 | netif_napi_del(&cell->napi); |
| 96 | skb_queue_purge(&cell->napi_skbs); |
| 97 | } |
Martin KaFai Lau | 8834016 | 2015-01-16 10:11:00 -0800 | [diff] [blame] | 98 | free_percpu(gcells->cells); |
Eric Dumazet | c9e6bc6 | 2012-09-27 19:29:05 +0000 | [diff] [blame] | 99 | gcells->cells = NULL; |
| 100 | } |
| 101 | |
| 102 | #endif |