162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci#ifndef _NET_GRO_CELLS_H 362306a36Sopenharmony_ci#define _NET_GRO_CELLS_H 462306a36Sopenharmony_ci 562306a36Sopenharmony_ci#include <linux/skbuff.h> 662306a36Sopenharmony_ci#include <linux/slab.h> 762306a36Sopenharmony_ci#include <linux/netdevice.h> 862306a36Sopenharmony_ci 962306a36Sopenharmony_cistruct gro_cell; 1062306a36Sopenharmony_ci 1162306a36Sopenharmony_cistruct gro_cells { 1262306a36Sopenharmony_ci struct gro_cell __percpu *cells; 1362306a36Sopenharmony_ci}; 1462306a36Sopenharmony_ci 1562306a36Sopenharmony_ciint gro_cells_receive(struct gro_cells *gcells, struct sk_buff *skb); 1662306a36Sopenharmony_ciint gro_cells_init(struct gro_cells *gcells, struct net_device *dev); 1762306a36Sopenharmony_civoid gro_cells_destroy(struct gro_cells *gcells); 1862306a36Sopenharmony_ci 1962306a36Sopenharmony_ci#endif 20