kernel/include/net/gro_cells.h

20 lines
443 B
C
Raw Permalink Normal View History

2023-06-05 11:19:37 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
2020-11-04 10:33:20 +08:00
#ifndef _NET_GRO_CELLS_H
#define _NET_GRO_CELLS_H
#include <linux/skbuff.h>
#include <linux/slab.h>
#include <linux/netdevice.h>
2023-06-05 11:19:37 +08:00
struct gro_cell;
2020-11-04 10:33:20 +08:00
struct gro_cells {
struct gro_cell __percpu *cells;
};
2023-06-05 11:19:37 +08:00
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);
2020-11-04 10:33:20 +08:00
#endif