mm/zswap.c: switch from strlcpy to strscpy
strlcpy is marked as deprecated in Documentation/process/deprecated.rst, and there is no functional difference when the caller expects truncation (when not checking the return value). strscpy is relatively better as it also avoids scanning the whole source string. Link: https://lkml.kernel.org/r/1614227981-20367-1-git-send-email-daizhiyuan@phytium.com.cn Signed-off-by: Zhiyuan Dai <daizhiyuan@phytium.com.cn> Cc: Seth Jennings <sjenning@redhat.com> Cc: Dan Streetman <ddstreet@ieee.org> Cc: Vitaly Wool <vitaly.wool@konsulko.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ca6e51d592
commit
79cd420248
|
@ -614,7 +614,7 @@ static struct zswap_pool *zswap_pool_create(char *type, char *compressor)
|
|||
}
|
||||
pr_debug("using %s zpool\n", zpool_get_type(pool->zpool));
|
||||
|
||||
strlcpy(pool->tfm_name, compressor, sizeof(pool->tfm_name));
|
||||
strscpy(pool->tfm_name, compressor, sizeof(pool->tfm_name));
|
||||
|
||||
pool->acomp_ctx = alloc_percpu(*pool->acomp_ctx);
|
||||
if (!pool->acomp_ctx) {
|
||||
|
|
Loading…
Reference in New Issue