From: Eddie James <eajames@linux.ibm.com>
To: Joel Stanley <joel@jms.id.au>, Amitay Isaacs <amitay@ozlabs.org>
Cc: linux-fsi@lists.ozlabs.org,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
linux-hwmon@vger.kernel.org, Jeremy Kerr <jk@ozlabs.org>,
Alistair Popple <alistair@popple.id.au>,
Guenter Roeck <linux@roeck-us.net>,
Jean Delvare <jdelvare@suse.com>
Subject: Re: [PATCH v3 2/4] fsi: occ: Store the SBEFIFO FFDC in the user response buffer
Date: Tue, 19 Oct 2021 15:16:22 -0500 [thread overview]
Message-ID: <48d997c0-5b2e-40d2-ef66-594b4275fd1a@linux.ibm.com> (raw)
In-Reply-To: <CACPK8XfAL2-07M+ZWZ74X42Mvo8UvAdKPJ-51YWgKb_nzS-ffQ@mail.gmail.com>
On 10/15/21 12:05 AM, Joel Stanley wrote:
> On Mon, 27 Sept 2021 at 15:59, Eddie James <eajames@linux.ibm.com> wrote:
>> If the SBEFIFO response indicates an error, store the response in the
>> user buffer and return an error. Previously, the user had no way of
>> obtaining the SBEFIFO FFDC.
> How does this look for userspace?
The user's buffer now contains data in the event of a failure. No change
in the event of a successful transfer.
>
> Will existing userspace handle this?
Yes, unless a poorly-designed application is relying on the data being
the same after a failed transfer... In that case I would argue that the
application should be fixed.
>
>> Signed-off-by: Eddie James <eajames@linux.ibm.com>
>> ---
>> Changes since v1:
>> - Don't store any magic value; only return non-zero resp_len in the error
>> case if there is FFDC
>>
>> drivers/fsi/fsi-occ.c | 66 ++++++++++++++++++++++++++++++-------------
>> 1 file changed, 47 insertions(+), 19 deletions(-)
>>
>> diff --git a/drivers/fsi/fsi-occ.c b/drivers/fsi/fsi-occ.c
>> index ace3ec7767e5..1d5f6fdc2a34 100644
>> --- a/drivers/fsi/fsi-occ.c
>> +++ b/drivers/fsi/fsi-occ.c
>> @@ -55,6 +55,9 @@ struct occ {
>> int idx;
>> u8 sequence_number;
>> void *buffer;
>> + void *client_buffer;
>> + size_t client_buffer_size;
>> + size_t client_response_size;
>> enum versions version;
>> struct miscdevice mdev;
>> struct mutex occ_lock;
>> @@ -217,6 +220,20 @@ static const struct file_operations occ_fops = {
>> .release = occ_release,
>> };
>>
>> +static void occ_save_ffdc(struct occ *occ, __be32 *resp, size_t parsed_len,
>> + size_t resp_len)
>> +{
>> + size_t dh = resp_len - parsed_len;
> Is there any chance that parsed_len is larger than resp_len?
No, based on the sbefifo_parse_status function.
>
>> + size_t ffdc_len = (dh - 1) * 4;
>> + __be32 *ffdc = &resp[resp_len - dh];
> Should you be checking that this number is sensible?
Do you mean ffdc_len or (resp_len - dh)? I was basing all this on the
sbefifo_parse_status code, but I see that obviously:
resp_len - dh = resp_len - (resp_len - parsed_len) = parsed_len
So I will simplify.
As for ffdc_len, it is conceivable that dh is 0, so I will add a check
for that.
Thanks Joel!
Eddie
>
>> +
>> + if (ffdc_len > occ->client_buffer_size)
>> + ffdc_len = occ->client_buffer_size;
>> +
>> + memcpy(occ->client_buffer, ffdc, ffdc_len);
>> + occ->client_response_size = ffdc_len;
>> +}
next prev parent reply other threads:[~2021-10-19 20:16 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-27 15:59 [PATCH v3 0/4] occ: fsi and hwmon: Extract and provide the SBEFIFO FFDC Eddie James
2021-09-27 15:59 ` [PATCH v3 1/4] fsi: occ: Use a large buffer for responses Eddie James
2021-10-15 5:05 ` Joel Stanley
2021-10-19 20:22 ` Eddie James
2021-09-27 15:59 ` [PATCH v3 2/4] fsi: occ: Store the SBEFIFO FFDC in the user response buffer Eddie James
2021-10-15 5:05 ` Joel Stanley
2021-10-19 20:16 ` Eddie James [this message]
2021-09-27 15:59 ` [PATCH v3 3/4] docs: ABI: testing: Document the OCC hwmon FFDC binary interface Eddie James
2021-09-27 15:59 ` [PATCH v3 4/4] hwmon: (occ) Provide the SBEFIFO FFDC in binary sysfs Eddie James
2021-10-11 14:38 ` Guenter Roeck
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=48d997c0-5b2e-40d2-ef66-594b4275fd1a@linux.ibm.com \
--to=eajames@linux.ibm.com \
--cc=alistair@popple.id.au \
--cc=amitay@ozlabs.org \
--cc=jdelvare@suse.com \
--cc=jk@ozlabs.org \
--cc=joel@jms.id.au \
--cc=linux-fsi@lists.ozlabs.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
/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