2021-02-03 21:51:11 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
|
|
|
#ifndef _NET_IPV6_GRO_H
|
|
|
|
#define _NET_IPV6_GRO_H
|
|
|
|
|
2021-03-19 02:42:23 +08:00
|
|
|
#include <linux/indirect_call_wrapper.h>
|
|
|
|
|
|
|
|
struct list_head;
|
|
|
|
struct sk_buff;
|
|
|
|
|
2021-02-03 21:51:11 +08:00
|
|
|
INDIRECT_CALLABLE_DECLARE(struct sk_buff *ipv6_gro_receive(struct list_head *,
|
|
|
|
struct sk_buff *));
|
|
|
|
INDIRECT_CALLABLE_DECLARE(int ipv6_gro_complete(struct sk_buff *, int));
|
|
|
|
INDIRECT_CALLABLE_DECLARE(struct sk_buff *inet_gro_receive(struct list_head *,
|
|
|
|
struct sk_buff *));
|
|
|
|
INDIRECT_CALLABLE_DECLARE(int inet_gro_complete(struct sk_buff *, int));
|
|
|
|
#endif /* _NET_IPV6_GRO_H */
|