18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef _NET_GRO_CELLS_H 38c2ecf20Sopenharmony_ci#define _NET_GRO_CELLS_H 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_ci#include <linux/skbuff.h> 68c2ecf20Sopenharmony_ci#include <linux/slab.h> 78c2ecf20Sopenharmony_ci#include <linux/netdevice.h> 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_cistruct gro_cell; 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_cistruct gro_cells { 128c2ecf20Sopenharmony_ci struct gro_cell __percpu *cells; 138c2ecf20Sopenharmony_ci}; 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ciint gro_cells_receive(struct gro_cells *gcells, struct sk_buff *skb); 168c2ecf20Sopenharmony_ciint gro_cells_init(struct gro_cells *gcells, struct net_device *dev); 178c2ecf20Sopenharmony_civoid gro_cells_destroy(struct gro_cells *gcells); 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_ci#endif 20