svn commit: r361163 - stable/11/sys/compat/linuxkpi/common/include/linux

Hans Petter Selasky hselasky at FreeBSD.org
Mon May 18 08:56:23 UTC 2020


Author: hselasky
Date: Mon May 18 08:56:22 2020
New Revision: 361163
URL: https://svnweb.freebsd.org/changeset/base/361163

Log:
  MFC r360115:
  Allow the ERR_CAST() function in the LinuxKPI to take a const void pointer.
  No functional change.
  
  Sponsored by:	Mellanox Technologies

Modified:
  stable/11/sys/compat/linuxkpi/common/include/linux/err.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/compat/linuxkpi/common/include/linux/err.h
==============================================================================
--- stable/11/sys/compat/linuxkpi/common/include/linux/err.h	Mon May 18 08:55:49 2020	(r361162)
+++ stable/11/sys/compat/linuxkpi/common/include/linux/err.h	Mon May 18 08:56:22 2020	(r361163)
@@ -31,6 +31,8 @@
 #ifndef	_LINUX_ERR_H_
 #define	_LINUX_ERR_H_
 
+#include <sys/types.h>
+
 #include <linux/compiler.h>
 
 #define MAX_ERRNO	4095
@@ -62,9 +64,9 @@ IS_ERR_OR_NULL(const void *ptr)
 }
 
 static inline void *
-ERR_CAST(void *ptr)
+ERR_CAST(const void *ptr)
 {
-	return (void *)ptr;
+	return __DECONST(void *, ptr);
 }
 
 static inline int


More information about the svn-src-stable mailing list