svn commit: r300502 - head/sys/compat/linuxkpi/common/include/asm

Hans Petter Selasky hselasky at FreeBSD.org
Mon May 23 12:52:24 UTC 2016


Author: hselasky
Date: Mon May 23 12:52:22 2016
New Revision: 300502
URL: https://svnweb.freebsd.org/changeset/base/300502

Log:
  Define more copy to/from userspace functions in the LinuxKPI.
  
  Obtained from:	kmacy @
  MFC after:	1 week
  Sponsored by:	Mellanox Technologies

Modified:
  head/sys/compat/linuxkpi/common/include/asm/uaccess.h

Modified: head/sys/compat/linuxkpi/common/include/asm/uaccess.h
==============================================================================
--- head/sys/compat/linuxkpi/common/include/asm/uaccess.h	Mon May 23 12:41:29 2016	(r300501)
+++ head/sys/compat/linuxkpi/common/include/asm/uaccess.h	Mon May 23 12:52:22 2016	(r300502)
@@ -40,6 +40,7 @@ copy_to_user(void *to, const void *from,
 		return n;
 	return 0;
 }
+#define	__copy_to_user(...)	copy_to_user(__VA_ARGS__)
 
 static inline long
 copy_from_user(void *to, const void *from, unsigned long n)
@@ -48,5 +49,7 @@ copy_from_user(void *to, const void *fro
 		return n;
 	return 0;
 }
+#define	__copy_from_user(...)	copy_from_user(__VA_ARGS__)
+#define	__copy_in_user(...)	copy_from_user(__VA_ARGS__)
 
 #endif	/* _ASM_UACCESS_H_ */


More information about the svn-src-head mailing list