mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-31 04:14:21 +03:00
config: remove HAVE_KERNEL_STRSCPY
Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de> Signed-off-by: Rob Norris <robn@despairlabs.com> Closes #16479
This commit is contained in:
parent
8bc4c13fac
commit
e6b916d69b
@ -1,6 +1,5 @@
|
|||||||
dnl #
|
dnl #
|
||||||
dnl # 6.8.x replaced strlcpy with strscpy. Check for both so we can provide
|
dnl # 6.8 removed strlcpy.
|
||||||
dnl # appropriate fallbacks.
|
|
||||||
dnl #
|
dnl #
|
||||||
AC_DEFUN([ZFS_AC_KERNEL_SRC_STRLCPY], [
|
AC_DEFUN([ZFS_AC_KERNEL_SRC_STRLCPY], [
|
||||||
ZFS_LINUX_TEST_SRC([kernel_has_strlcpy], [
|
ZFS_LINUX_TEST_SRC([kernel_has_strlcpy], [
|
||||||
@ -13,17 +12,6 @@ AC_DEFUN([ZFS_AC_KERNEL_SRC_STRLCPY], [
|
|||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_DEFUN([ZFS_AC_KERNEL_SRC_STRSCPY], [
|
|
||||||
ZFS_LINUX_TEST_SRC([kernel_has_strscpy], [
|
|
||||||
#include <linux/string.h>
|
|
||||||
], [
|
|
||||||
const char *src = "goodbye";
|
|
||||||
char dst[32];
|
|
||||||
ssize_t len;
|
|
||||||
len = strscpy(dst, src, sizeof (dst));
|
|
||||||
])
|
|
||||||
])
|
|
||||||
|
|
||||||
AC_DEFUN([ZFS_AC_KERNEL_STRLCPY], [
|
AC_DEFUN([ZFS_AC_KERNEL_STRLCPY], [
|
||||||
AC_MSG_CHECKING([whether strlcpy() exists])
|
AC_MSG_CHECKING([whether strlcpy() exists])
|
||||||
ZFS_LINUX_TEST_RESULT([kernel_has_strlcpy], [
|
ZFS_LINUX_TEST_RESULT([kernel_has_strlcpy], [
|
||||||
@ -34,14 +22,3 @@ AC_DEFUN([ZFS_AC_KERNEL_STRLCPY], [
|
|||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_DEFUN([ZFS_AC_KERNEL_STRSCPY], [
|
|
||||||
AC_MSG_CHECKING([whether strscpy() exists])
|
|
||||||
ZFS_LINUX_TEST_RESULT([kernel_has_strscpy], [
|
|
||||||
AC_MSG_RESULT([yes])
|
|
||||||
AC_DEFINE(HAVE_KERNEL_STRSCPY, 1,
|
|
||||||
[strscpy() exists])
|
|
||||||
], [
|
|
||||||
AC_MSG_RESULT([no])
|
|
||||||
])
|
|
||||||
])
|
|
||||||
|
@ -139,7 +139,6 @@ AC_DEFUN([ZFS_AC_KERNEL_TEST_SRC], [
|
|||||||
ZFS_AC_KERNEL_SRC_SET_SPECIAL_STATE
|
ZFS_AC_KERNEL_SRC_SET_SPECIAL_STATE
|
||||||
ZFS_AC_KERNEL_SRC_STANDALONE_LINUX_STDARG
|
ZFS_AC_KERNEL_SRC_STANDALONE_LINUX_STDARG
|
||||||
ZFS_AC_KERNEL_SRC_STRLCPY
|
ZFS_AC_KERNEL_SRC_STRLCPY
|
||||||
ZFS_AC_KERNEL_SRC_STRSCPY
|
|
||||||
ZFS_AC_KERNEL_SRC_PAGEMAP_FOLIO_WAIT_BIT
|
ZFS_AC_KERNEL_SRC_PAGEMAP_FOLIO_WAIT_BIT
|
||||||
ZFS_AC_KERNEL_SRC_ADD_DISK
|
ZFS_AC_KERNEL_SRC_ADD_DISK
|
||||||
ZFS_AC_KERNEL_SRC_KTHREAD
|
ZFS_AC_KERNEL_SRC_KTHREAD
|
||||||
@ -280,7 +279,6 @@ AC_DEFUN([ZFS_AC_KERNEL_TEST_RESULT], [
|
|||||||
ZFS_AC_KERNEL_SET_SPECIAL_STATE
|
ZFS_AC_KERNEL_SET_SPECIAL_STATE
|
||||||
ZFS_AC_KERNEL_STANDALONE_LINUX_STDARG
|
ZFS_AC_KERNEL_STANDALONE_LINUX_STDARG
|
||||||
ZFS_AC_KERNEL_STRLCPY
|
ZFS_AC_KERNEL_STRLCPY
|
||||||
ZFS_AC_KERNEL_STRSCPY
|
|
||||||
ZFS_AC_KERNEL_PAGEMAP_FOLIO_WAIT_BIT
|
ZFS_AC_KERNEL_PAGEMAP_FOLIO_WAIT_BIT
|
||||||
ZFS_AC_KERNEL_ADD_DISK
|
ZFS_AC_KERNEL_ADD_DISK
|
||||||
ZFS_AC_KERNEL_KTHREAD
|
ZFS_AC_KERNEL_KTHREAD
|
||||||
|
@ -25,10 +25,7 @@
|
|||||||
|
|
||||||
#include <linux/string.h>
|
#include <linux/string.h>
|
||||||
|
|
||||||
/* Fallbacks for kernel missing strlcpy */
|
|
||||||
#ifndef HAVE_KERNEL_STRLCPY
|
#ifndef HAVE_KERNEL_STRLCPY
|
||||||
|
|
||||||
#if defined(HAVE_KERNEL_STRSCPY)
|
|
||||||
/*
|
/*
|
||||||
* strscpy is strlcpy, but returns an error on truncation. strlcpy is defined
|
* strscpy is strlcpy, but returns an error on truncation. strlcpy is defined
|
||||||
* to return strlen(src), so detect error and override it.
|
* to return strlen(src), so detect error and override it.
|
||||||
@ -41,10 +38,6 @@ strlcpy(char *dest, const char *src, size_t size)
|
|||||||
return ((size_t)ret);
|
return ((size_t)ret);
|
||||||
return (strlen(src));
|
return (strlen(src));
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
#error "no strlcpy fallback available"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* HAVE_KERNEL_STRLCPY */
|
#endif /* HAVE_KERNEL_STRLCPY */
|
||||||
|
|
||||||
#endif /* _SPL_STRING_H */
|
#endif /* _SPL_STRING_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user