]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
s390/string: Remove strlcat() implementation
authorHeiko Carstens <hca@linux.ibm.com>
Fri, 22 May 2026 14:31:11 +0000 (16:31 +0200)
committerAlexander Gordeev <agordeev@linux.ibm.com>
Sat, 30 May 2026 09:37:25 +0000 (11:37 +0200)
strlcat() shouldn't be used anymore (see fortify-string.h), and will be
deprecated / removed sooner or later [1].

Therefore remove the s390 implementation of strlcat() in favor of the
generic variant.

[1] https://lore.kernel.org/all/20260514160719.105084-3-manuelebner@mailbox.org/

Reviewed-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
arch/s390/include/asm/string.h
arch/s390/lib/string.c

index 238e721e5a22c79e889f1d7556f497fa9fcb4808..378f85304ef5ec92e175056e1d1335ee4ed6413a 100644 (file)
@@ -26,7 +26,6 @@ void *memmove(void *dest, const void *src, size_t n);
 #define __HAVE_ARCH_MEMSCAN    /* inline & arch function */
 #define __HAVE_ARCH_STRCAT     /* inline & arch function */
 #define __HAVE_ARCH_STRCMP     /* arch function */
-#define __HAVE_ARCH_STRLCAT    /* arch function */
 #define __HAVE_ARCH_STRLEN     /* inline & arch function */
 #define __HAVE_ARCH_STRNCAT    /* arch function */
 #define __HAVE_ARCH_STRNLEN    /* inline & arch function */
@@ -38,7 +37,6 @@ void *memmove(void *dest, const void *src, size_t n);
 /* Prototypes for non-inlined arch strings functions. */
 int memcmp(const void *s1, const void *s2, size_t n);
 int strcmp(const char *s1, const char *s2);
-size_t strlcat(char *dest, const char *src, size_t n);
 char *strncat(char *dest, const char *src, size_t n);
 char *strstr(const char *s1, const char *s2);
 #endif /* !defined(CONFIG_KASAN) && !defined(CONFIG_KMSAN) */
index 757f58960198123cb264b6eea3108dfb41eef56d..a48e5bb3c15f9908b6071535ae273e1ffe3b5c1d 100644 (file)
@@ -104,32 +104,6 @@ char *strcat(char *dest, const char *src)
 EXPORT_SYMBOL(strcat);
 #endif
 
-/**
- * strlcat - Append a length-limited, %NUL-terminated string to another
- * @dest: The string to be appended to
- * @src: The string to append to it
- * @n: The size of the destination buffer.
- */
-#ifdef __HAVE_ARCH_STRLCAT
-size_t strlcat(char *dest, const char *src, size_t n)
-{
-       size_t dsize = __strend(dest) - dest;
-       size_t len = __strend(src) - src;
-       size_t res = dsize + len;
-
-       if (dsize < n) {
-               dest += dsize;
-               n -= dsize;
-               if (len >= n)
-                       len = n - 1;
-               dest[len] = '\0';
-               memcpy(dest, src, len);
-       }
-       return res;
-}
-EXPORT_SYMBOL(strlcat);
-#endif
-
 /**
  * strncat - Append a length-limited, %NUL-terminated string to another
  * @dest: The string to be appended to