https://github.com/torvalds/linux
Revision aa61b7bb00f7c0738823237a06161d568442b93c authored by Ingo Molnar on 29 May 2020, 09:36:49 UTC, committed by Ingo Molnar on 29 May 2020, 09:37:11 UTC
Pick up FPU register dump fixes from Al Viro.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
2 parent s 4bfe6cc + 9e46365
Raw File
Tip revision: aa61b7bb00f7c0738823237a06161d568442b93c authored by Ingo Molnar on 29 May 2020, 09:36:49 UTC
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs into x86/urgent
Tip revision: aa61b7b
datagram.h
/* SPDX-License-Identifier: GPL-2.0 */

#ifndef _NET_CORE_DATAGRAM_H_
#define _NET_CORE_DATAGRAM_H_

#include <linux/types.h>

struct sock;
struct sk_buff;
struct iov_iter;

int __zerocopy_sg_from_iter(struct sock *sk, struct sk_buff *skb,
			    struct iov_iter *from, size_t length);

#endif /* _NET_CORE_DATAGRAM_H_ */
back to top