Release 4.12 include/net/gro_cells.h
#ifndef _NET_GRO_CELLS_H
#define _NET_GRO_CELLS_H
#include <linux/skbuff.h>
#include <linux/slab.h>
#include <linux/netdevice.h>
struct gro_cell;
struct gro_cells {
struct gro_cell __percpu *cells;
};
int gro_cells_receive(struct gro_cells *gcells, struct sk_buff *skb);
int gro_cells_init(struct gro_cells *gcells, struct net_device *dev);
void gro_cells_destroy(struct gro_cells *gcells);
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Eric Dumazet | 66 | 97.06% | 2 | 50.00% |
Martin KaFai Lau | 1 | 1.47% | 1 | 25.00% |
Paolo Abeni | 1 | 1.47% | 1 | 25.00% |
Total | 68 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.