clk: no need to check return value of debugfs_create functions
[linux-2.6/btrfs-unstable.git] / include / net / gro_cells.h
blob596688b67a2a898a513e0e6e85bf349ad2a1ba2c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _NET_GRO_CELLS_H
3 #define _NET_GRO_CELLS_H
5 #include <linux/skbuff.h>
6 #include <linux/slab.h>
7 #include <linux/netdevice.h>
9 struct gro_cell;
11 struct gro_cells {
12 struct gro_cell __percpu *cells;
15 int gro_cells_receive(struct gro_cells *gcells, struct sk_buff *skb);
16 int gro_cells_init(struct gro_cells *gcells, struct net_device *dev);
17 void gro_cells_destroy(struct gro_cells *gcells);
19 #endif