From: 白浩文 <baihaowen@meizu.com>
To: Heiko Carstens <hca@linux.ibm.com>
Cc: "freude@linux.ibm.com" <freude@linux.ibm.com>,
"gor@linux.ibm.com" <gor@linux.ibm.com>,
"agordeev@linux.ibm.com" <agordeev@linux.ibm.com>,
"linux-s390@vger.kernel.org" <linux-s390@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: 答复: [PATCH v2] s390: crypto: Use min() instead of doing it manually
Date: Tue, 15 Mar 2022 09:25:17 +0000 [thread overview]
Message-ID: <7842a724b1df489abf4b19ea61604d07@meizu.com> (raw)
In-Reply-To: <YjBZR6WoHYj6fvzm@osiris>
hi, Heiko
Thank you for your reply and suggestion.
________________________________________
发件人: Heiko Carstens <hca@linux.ibm.com>
发送时间: 2022年3月15日 17:15:51
收件人: 白浩文
抄送: freude@linux.ibm.com; gor@linux.ibm.com; agordeev@linux.ibm.com; linux-s390@vger.kernel.org; linux-kernel@vger.kernel.org
主题: Re: [PATCH v2] s390: crypto: Use min() instead of doing it manually
On Tue, Mar 15, 2022 at 04:01:04PM +0800, Haowen Bai wrote:
> Fix following coccicheck warning:
> drivers/s390/crypto/zcrypt_ep11misc.c:1112:25-26: WARNING opportunity for min()
>
> Signed-off-by: Haowen Bai <baihaowen@meizu.com>
> ---
> drivers/s390/crypto/zcrypt_ep11misc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/s390/crypto/zcrypt_ep11misc.c b/drivers/s390/crypto/zcrypt_ep11misc.c
> index 9ce5a71..bb2a527 100644
> --- a/drivers/s390/crypto/zcrypt_ep11misc.c
> +++ b/drivers/s390/crypto/zcrypt_ep11misc.c
> @@ -1109,7 +1109,7 @@ static int ep11_wrapkey(u16 card, u16 domain,
> if (kb->head.type == TOKTYPE_NON_CCA &&
> kb->head.version == TOKVER_EP11_AES) {
> has_header = true;
> - keysize = kb->head.len < keysize ? kb->head.len : keysize;
> + keysize = min((size_t)kb->head.len, keysize);
I would assume that checkpatch will now warn that this is an
opportunity to use min_t()...
Anyway, it is up to Harald to decide what do with this.
next prev parent reply other threads:[~2022-03-15 9:25 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-15 8:01 [PATCH v2] s390: crypto: Use min() instead of doing it manually Haowen Bai
2022-03-15 9:15 ` Heiko Carstens
2022-03-15 9:25 ` 白浩文 [this message]
2022-03-15 10:05 ` David Laight
2022-03-16 1:48 ` 答复: " 白浩文
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=7842a724b1df489abf4b19ea61604d07@meizu.com \
--to=baihaowen@meizu.com \
--cc=agordeev@linux.ibm.com \
--cc=freude@linux.ibm.com \
--cc=gor@linux.ibm.com \
--cc=hca@linux.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
/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