* [PATCH] PM: hibernate: Remove size arguments when calling strscpy()
@ 2025-03-18 8:07 Thorsten Blum
2025-04-09 18:15 ` Rafael J. Wysocki
0 siblings, 1 reply; 2+ messages in thread
From: Thorsten Blum @ 2025-03-18 8:07 UTC (permalink / raw)
To: Rafael J. Wysocki, Pavel Machek, Len Brown
Cc: Thorsten Blum, linux-pm, linux-kernel
The size parameter is optional and strscpy() automatically determines
the length of the destination buffer using sizeof() if the argument is
omitted. This makes the explicit sizeof() calls unnecessary. Remove
them to shorten and simplify the code.
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
kernel/power/hibernate.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 10a01af63a80..ddf7c4a5736f 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -756,7 +756,7 @@ int hibernate(void)
* Query for the compression algorithm support if compression is enabled.
*/
if (!nocompress) {
- strscpy(hib_comp_algo, hibernate_compressor, sizeof(hib_comp_algo));
+ strscpy(hib_comp_algo, hibernate_compressor);
if (crypto_has_comp(hib_comp_algo, 0, 0) != 1) {
pr_err("%s compression is not available\n", hib_comp_algo);
return -EOPNOTSUPP;
@@ -1005,9 +1005,9 @@ static int software_resume(void)
*/
if (!(swsusp_header_flags & SF_NOCOMPRESS_MODE)) {
if (swsusp_header_flags & SF_COMPRESSION_ALG_LZ4)
- strscpy(hib_comp_algo, COMPRESSION_ALGO_LZ4, sizeof(hib_comp_algo));
+ strscpy(hib_comp_algo, COMPRESSION_ALGO_LZ4);
else
- strscpy(hib_comp_algo, COMPRESSION_ALGO_LZO, sizeof(hib_comp_algo));
+ strscpy(hib_comp_algo, COMPRESSION_ALGO_LZO);
if (crypto_has_comp(hib_comp_algo, 0, 0) != 1) {
pr_err("%s compression is not available\n", hib_comp_algo);
error = -EOPNOTSUPP;
@@ -1455,8 +1455,7 @@ static int hibernate_compressor_param_set(const char *compressor,
if (index >= 0) {
ret = param_set_copystring(comp_alg_enabled[index], kp);
if (!ret)
- strscpy(hib_comp_algo, comp_alg_enabled[index],
- sizeof(hib_comp_algo));
+ strscpy(hib_comp_algo, comp_alg_enabled[index]);
} else {
ret = index;
}
--
2.48.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] PM: hibernate: Remove size arguments when calling strscpy()
2025-03-18 8:07 [PATCH] PM: hibernate: Remove size arguments when calling strscpy() Thorsten Blum
@ 2025-04-09 18:15 ` Rafael J. Wysocki
0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2025-04-09 18:15 UTC (permalink / raw)
To: Thorsten Blum
Cc: Rafael J. Wysocki, Pavel Machek, Len Brown, linux-pm,
linux-kernel
On Tue, Mar 18, 2025 at 9:09 AM Thorsten Blum <thorsten.blum@linux.dev> wrote:
>
> The size parameter is optional and strscpy() automatically determines
> the length of the destination buffer using sizeof() if the argument is
> omitted. This makes the explicit sizeof() calls unnecessary. Remove
> them to shorten and simplify the code.
>
> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
> ---
> kernel/power/hibernate.c | 9 ++++-----
> 1 file changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
> index 10a01af63a80..ddf7c4a5736f 100644
> --- a/kernel/power/hibernate.c
> +++ b/kernel/power/hibernate.c
> @@ -756,7 +756,7 @@ int hibernate(void)
> * Query for the compression algorithm support if compression is enabled.
> */
> if (!nocompress) {
> - strscpy(hib_comp_algo, hibernate_compressor, sizeof(hib_comp_algo));
> + strscpy(hib_comp_algo, hibernate_compressor);
> if (crypto_has_comp(hib_comp_algo, 0, 0) != 1) {
> pr_err("%s compression is not available\n", hib_comp_algo);
> return -EOPNOTSUPP;
> @@ -1005,9 +1005,9 @@ static int software_resume(void)
> */
> if (!(swsusp_header_flags & SF_NOCOMPRESS_MODE)) {
> if (swsusp_header_flags & SF_COMPRESSION_ALG_LZ4)
> - strscpy(hib_comp_algo, COMPRESSION_ALGO_LZ4, sizeof(hib_comp_algo));
> + strscpy(hib_comp_algo, COMPRESSION_ALGO_LZ4);
> else
> - strscpy(hib_comp_algo, COMPRESSION_ALGO_LZO, sizeof(hib_comp_algo));
> + strscpy(hib_comp_algo, COMPRESSION_ALGO_LZO);
> if (crypto_has_comp(hib_comp_algo, 0, 0) != 1) {
> pr_err("%s compression is not available\n", hib_comp_algo);
> error = -EOPNOTSUPP;
> @@ -1455,8 +1455,7 @@ static int hibernate_compressor_param_set(const char *compressor,
> if (index >= 0) {
> ret = param_set_copystring(comp_alg_enabled[index], kp);
> if (!ret)
> - strscpy(hib_comp_algo, comp_alg_enabled[index],
> - sizeof(hib_comp_algo));
> + strscpy(hib_comp_algo, comp_alg_enabled[index]);
> } else {
> ret = index;
> }
> --
Applied as 6.16 material, thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-04-09 18:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-18 8:07 [PATCH] PM: hibernate: Remove size arguments when calling strscpy() Thorsten Blum
2025-04-09 18:15 ` Rafael J. Wysocki
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.