From: Waiman Long <longman@redhat.com>
To: Kamlesh Gurudasani <kamlesh@ti.com>,
Steffen Klassert <steffen.klassert@secunet.com>,
Daniel Jordan <daniel.m.jordan@oracle.com>,
Andrew Morton <akpm@linux-foundation.org>,
Herbert Xu <herbert@gondor.apana.org.au>
Cc: linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] padata: Honor the caller's alignment in case of chunk_size 0
Date: Wed, 21 Aug 2024 19:30:56 -0400 [thread overview]
Message-ID: <21df0502-3f16-4afc-9f3c-7825ded578c4@redhat.com> (raw)
In-Reply-To: <20240822-max-v1-1-cb4bc5b1c101@ti.com>
On 8/21/24 17:02, Kamlesh Gurudasani wrote:
> In the case where we are forcing the ps.chunk_size to be at least 1,
> we are ignoring the caller's alignment.
>
> Move the forcing of ps.chunk_size to be at least 1 before rounding it
> up to caller's alignment, so that caller's alignment is honored.
>
> While at it, use max() to force the ps.chunk_size to be at least 1 to
> improve readability.
>
> Fixes: 6d45e1c948a8 ("padata: Fix possible divide-by-0 panic in padata_mt_helper()")
> Signed-off-by: Kamlesh Gurudasani <kamlesh@ti.com>
> ---
> kernel/padata.c | 12 ++++--------
> 1 file changed, 4 insertions(+), 8 deletions(-)
>
> diff --git a/kernel/padata.c b/kernel/padata.c
> index 0fa6c2895460..d8a51eff1581 100644
> --- a/kernel/padata.c
> +++ b/kernel/padata.c
> @@ -509,21 +509,17 @@ void __init padata_do_multithreaded(struct padata_mt_job *job)
>
> /*
> * Chunk size is the amount of work a helper does per call to the
> - * thread function. Load balance large jobs between threads by
> + * thread function. Load balance large jobs between threads by
> * increasing the number of chunks, guarantee at least the minimum
> * chunk size from the caller, and honor the caller's alignment.
> + * Ensure chunk_size is at least 1 to prevent divide-by-0
> + * panic in padata_mt_helper().
> */
> ps.chunk_size = job->size / (ps.nworks * load_balance_factor);
> ps.chunk_size = max(ps.chunk_size, job->min_chunk);
> + ps.chunk_size = max(ps.chunk_size, 1ul);
> ps.chunk_size = roundup(ps.chunk_size, job->align);
>
> - /*
> - * chunk_size can be 0 if the caller sets min_chunk to 0. So force it
> - * to at least 1 to prevent divide-by-0 panic in padata_mt_helper().`
> - */
> - if (!ps.chunk_size)
> - ps.chunk_size = 1U;
> -
> list_for_each_entry(pw, &works, pw_list)
> if (job->numa_aware) {
> int old_node = atomic_read(&last_used_nid);
>
> ---
> base-commit: b311c1b497e51a628aa89e7cb954481e5f9dced2
> change-id: 20240822-max-93c17adc6457
LGTM, my only nit is the use of "1ul" which is less common and harder to
read than "1UL" as the former one may be misread as a "lul" variable.
Acked-by: Waiman Long <longman@redhat.com>
next prev parent reply other threads:[~2024-08-21 23:31 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-21 21:02 [PATCH] padata: Honor the caller's alignment in case of chunk_size 0 Kamlesh Gurudasani
2024-08-21 22:41 ` Andrew Morton
2024-08-25 11:27 ` [EXTERNAL] " Kamlesh Gurudasani
2024-08-21 23:30 ` Waiman Long [this message]
2024-08-25 11:34 ` Kamlesh Gurudasani
2024-08-25 15:57 ` Waiman Long
2024-08-23 0:50 ` Daniel Jordan
2024-08-25 11:29 ` Kamlesh Gurudasani
2024-08-30 10:39 ` Herbert Xu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=21df0502-3f16-4afc-9f3c-7825ded578c4@redhat.com \
--to=longman@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=daniel.m.jordan@oracle.com \
--cc=herbert@gondor.apana.org.au \
--cc=kamlesh@ti.com \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=steffen.klassert@secunet.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox