Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.11-rc4 18 lines 404 B view raw
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 8struct gro_cell; 9 10struct gro_cells { 11 struct gro_cell __percpu *cells; 12}; 13 14int gro_cells_receive(struct gro_cells *gcells, struct sk_buff *skb); 15int gro_cells_init(struct gro_cells *gcells, struct net_device *dev); 16void gro_cells_destroy(struct gro_cells *gcells); 17 18#endif