mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 12:44:11 +08:00
mm/dmapool: 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/1613962050-14188-1-git-send-email-daizhiyuan@phytium.com.cn Signed-off-by: Zhiyuan Dai <daizhiyuan@phytium.com.cn> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
8593100444
commit
943f229e96
@ -157,7 +157,7 @@ struct dma_pool *dma_pool_create(const char *name, struct device *dev,
|
||||
if (!retval)
|
||||
return retval;
|
||||
|
||||
strlcpy(retval->name, name, sizeof(retval->name));
|
||||
strscpy(retval->name, name, sizeof(retval->name));
|
||||
|
||||
retval->dev = dev;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user