]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/net/gro_cells.h
netfilter: uapi: Avoid undefined left-shift in xt_sctp.h
[mirror_ubuntu-bionic-kernel.git] / include / net / gro_cells.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
c9e6bc64
ED
2#ifndef _NET_GRO_CELLS_H
3#define _NET_GRO_CELLS_H
4
5#include <linux/skbuff.h>
6#include <linux/slab.h>
7#include <linux/netdevice.h>
8
97e219b7 9struct gro_cell;
c9e6bc64
ED
10
11struct gro_cells {
88340160 12 struct gro_cell __percpu *cells;
c9e6bc64
ED
13};
14
97e219b7
ED
15int gro_cells_receive(struct gro_cells *gcells, struct sk_buff *skb);
16int gro_cells_init(struct gro_cells *gcells, struct net_device *dev);
17void gro_cells_destroy(struct gro_cells *gcells);
c9e6bc64
ED
18
19#endif