From: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
To: Nayna Jain <nayna@linux.vnet.ibm.com>
Cc: linux-integrity@vger.kernel.org, zohar@linux.vnet.ibm.com,
linux-security-module@vger.kernel.org,
linux-kernel@vger.kernel.org, peterhuewe@gmx.de,
tpmdd@selhorst.net, jgunthorpe@obsidianresearch.com
Subject: Re: [PATCH] tpm: moves the delay_msec increment after sleep in tpm_transmit()
Date: Thu, 5 Apr 2018 13:12:10 +0300 [thread overview]
Message-ID: <20180405101210.GA21636@linux.intel.com> (raw)
In-Reply-To: <20180402162006.5030-1-nayna@linux.vnet.ibm.com>
On Mon, Apr 02, 2018 at 09:50:06PM +0530, Nayna Jain wrote:
> Commit e2fb992d82c6 ("tpm: add retry logic") introduced a new loop to
> handle the TPM2_RC_RETRY error. The loop retries the command after
> sleeping for the specified time, which is incremented exponentially in
> every iteration. This patch fixes the initial sleep to be the default
> sleep time.
I think I understand the code change but do not understand what the
long description.
>
> Fixes: commit e2fb992d82c6 ("tpm: add retry logic")
> Signed-off-by: Nayna Jain <nayna@linux.vnet.ibm.com>
> Reviewed-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
> ---
> drivers/char/tpm/tpm-interface.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c
> index c43a9e28995e..6201aab374e6 100644
> --- a/drivers/char/tpm/tpm-interface.c
> +++ b/drivers/char/tpm/tpm-interface.c
> @@ -587,7 +587,7 @@ ssize_t tpm_transmit(struct tpm_chip *chip, struct tpm_space *space,
> */
> if (rc == TPM2_RC_TESTING && cc == TPM2_CC_SELF_TEST)
> break;
> - delay_msec *= 2;
> +
Extra whitespace
> if (delay_msec > TPM2_DURATION_LONG) {
> if (rc == TPM2_RC_RETRY)
> dev_err(&chip->dev, "in retry loop\n");
> @@ -597,6 +597,7 @@ ssize_t tpm_transmit(struct tpm_chip *chip, struct tpm_space *space,
> break;
> }
> tpm_msleep(delay_msec);
> + delay_msec *= 2;
> memcpy(buf, save, save_size);
> }
> return ret;
> --
> 2.13.6
>
/Jarkko
WARNING: multiple messages have this Message-ID (diff)
From: jarkko.sakkinen@linux.intel.com (Jarkko Sakkinen)
To: linux-security-module@vger.kernel.org
Subject: [PATCH] tpm: moves the delay_msec increment after sleep in tpm_transmit()
Date: Thu, 5 Apr 2018 13:12:10 +0300 [thread overview]
Message-ID: <20180405101210.GA21636@linux.intel.com> (raw)
In-Reply-To: <20180402162006.5030-1-nayna@linux.vnet.ibm.com>
On Mon, Apr 02, 2018 at 09:50:06PM +0530, Nayna Jain wrote:
> Commit e2fb992d82c6 ("tpm: add retry logic") introduced a new loop to
> handle the TPM2_RC_RETRY error. The loop retries the command after
> sleeping for the specified time, which is incremented exponentially in
> every iteration. This patch fixes the initial sleep to be the default
> sleep time.
I think I understand the code change but do not understand what the
long description.
>
> Fixes: commit e2fb992d82c6 ("tpm: add retry logic")
> Signed-off-by: Nayna Jain <nayna@linux.vnet.ibm.com>
> Reviewed-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
> ---
> drivers/char/tpm/tpm-interface.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c
> index c43a9e28995e..6201aab374e6 100644
> --- a/drivers/char/tpm/tpm-interface.c
> +++ b/drivers/char/tpm/tpm-interface.c
> @@ -587,7 +587,7 @@ ssize_t tpm_transmit(struct tpm_chip *chip, struct tpm_space *space,
> */
> if (rc == TPM2_RC_TESTING && cc == TPM2_CC_SELF_TEST)
> break;
> - delay_msec *= 2;
> +
Extra whitespace
> if (delay_msec > TPM2_DURATION_LONG) {
> if (rc == TPM2_RC_RETRY)
> dev_err(&chip->dev, "in retry loop\n");
> @@ -597,6 +597,7 @@ ssize_t tpm_transmit(struct tpm_chip *chip, struct tpm_space *space,
> break;
> }
> tpm_msleep(delay_msec);
> + delay_msec *= 2;
> memcpy(buf, save, save_size);
> }
> return ret;
> --
> 2.13.6
>
/Jarkko
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2018-04-05 10:12 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-02 16:20 [PATCH] tpm: moves the delay_msec increment after sleep in tpm_transmit() Nayna Jain
2018-04-02 16:20 ` Nayna Jain
2018-04-05 10:12 ` Jarkko Sakkinen [this message]
2018-04-05 10:12 ` Jarkko Sakkinen
2018-04-06 8:33 ` Nayna Jain
2018-04-06 8:33 ` Nayna Jain
2018-04-06 8:33 ` Nayna Jain
2018-04-07 10:36 ` Jarkko Sakkinen
2018-04-07 10:36 ` Jarkko Sakkinen
2018-04-09 14:29 ` Mimi Zohar
2018-04-09 14:29 ` Mimi Zohar
2018-04-10 12:31 ` Jarkko Sakkinen
2018-04-10 12:31 ` Jarkko Sakkinen
2018-04-20 4:48 ` Jarkko Sakkinen
2018-04-20 4:48 ` Jarkko Sakkinen
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=20180405101210.GA21636@linux.intel.com \
--to=jarkko.sakkinen@linux.intel.com \
--cc=jgunthorpe@obsidianresearch.com \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=nayna@linux.vnet.ibm.com \
--cc=peterhuewe@gmx.de \
--cc=tpmdd@selhorst.net \
--cc=zohar@linux.vnet.ibm.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 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.