1/* SPDX-License-Identifier: GPL-2.0 */ 2 3#ifndef _NET_CORE_DATAGRAM_H_ 4#define _NET_CORE_DATAGRAM_H_ 5 6#include <linux/types.h> 7 8struct sock; 9struct sk_buff; 10struct iov_iter; 11 12int __zerocopy_sg_from_iter(struct sock *sk, struct sk_buff *skb, 13 struct iov_iter *from, size_t length); 14 15#endif /* _NET_CORE_DATAGRAM_H_ */ 16