svn commit: r350479 - head/sys/compat/freebsd32

Konstantin Belousov kib at FreeBSD.org
Wed Jul 31 19:20:06 UTC 2019


Author: kib
Date: Wed Jul 31 19:20:05 2019
New Revision: 350479
URL: https://svnweb.freebsd.org/changeset/base/350479

Log:
  freebsd32 shims for copy_file_range(2).
  
  Reviewed by:	brooks, rmacklem (previous version)
  Sponsored by:	The FreeBSD Foundation
  Differential revision:	https://reviews.freebsd.org/D21092

Modified:
  head/sys/compat/freebsd32/syscalls.master

Modified: head/sys/compat/freebsd32/syscalls.master
==============================================================================
--- head/sys/compat/freebsd32/syscalls.master	Wed Jul 31 19:16:49 2019	(r350478)
+++ head/sys/compat/freebsd32/syscalls.master	Wed Jul 31 19:20:05 2019	(r350479)
@@ -1147,5 +1147,8 @@
 				    size_t bufsize); }
 568	AUE_UNLINKAT	NOPROTO { int funlinkat(int dfd, const char *path, int fd, \
 				    int flag); }
+569	AUE_NULL	NOPROTO	{ ssize_t copy_file_range(int infd, \
+				    off_t *inoffp, int outfd, off_t *outoffp, \
+				    size_t len, unsigned int flags); }
 
 ; vim: syntax=off


More information about the svn-src-all mailing list