aboutsummaryrefslogtreecommitdiffstats
path: root/arch/parisc/lib/string.S
AgeCommit message (Collapse)AuthorFilesLines
2021-08-29Revert "parisc: Add assembly implementations for memset, strlen, strcpy, strncpy and strcat"Helge Deller1-136/+0
This reverts commit 83af58f8068ea3f7b3c537c37a30887bfa585069. It turns out that at least the assembly implementation for strncpy() was buggy. Revert the whole commit and return back to the default coding. Signed-off-by: Helge Deller <deller@gmx.de> Cc: <stable@vger.kernel.org> # v5.4+ Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-08-03parisc: Add assembly implementations for memset, strlen, strcpy, strncpy and strcatHelge Deller1-0/+136
Add performance-optimized versions of some string functions. Signed-off-by: Helge Deller <deller@gmx.de> Tested-by: Sven Schnelle <svens@stackframe.org>