From: "Dilger, Andreas" <andreas.dilger@intel.com>
To: Chris Rorvick <chris@rorvick.com>,
"Drokin, Oleg" <oleg.drokin@intel.com>
Cc: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
Julia Lawall <Julia.Lawall@lip6.fr>,
Greg Donald <gdonald@gmail.com>,
"Hammond, John" <john.hammond@intel.com>,
Andriy Skulysh <Andriy_Skulysh@xyratex.com>,
Fabian Frederick <fabf@skynet.be>,
James Simmons <uja.ornl@gmail.com>,
"Dan Carpenter" <dan.carpenter@oracle.com>,
"HPDD-discuss@lists.01.org" <HPDD-discuss@ml01.01.org>,
"devel@driverdev.osuosl.org" <devel@driverdev.osuosl.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 2/2] drivers: staging: lustre: Track sign separately
Date: Wed, 17 Dec 2014 06:54:06 +0000 [thread overview]
Message-ID: <D0B67685.D0A5B%andreas.dilger@intel.com> (raw)
In-Reply-To: <1418790242-14309-3-git-send-email-chris@rorvick.com>
On 2014/12/16, 9:24 PM, "Chris Rorvick" <chris@rorvick.com> wrote:
>The `mult' parameter is negated if the user data begins with a '-' so
>that the final value has the appropriate sign. But `mult' is only used
>if the user data does not include a "units" suffix. In this case,
>`mult' is overridden with the numeric scale conveyed by the units suffix,
>but retains the sign of the original value.
>
>Having `mult' serving double-duty works but is confusing. Use a new
>local variable to store the sign of the user data instead. This also
>fixes a pitfall of passing 0 to `mult', expecting it to be ignored when
>a units suffix is specified, but having the effect of taking the
>absolute value of the user-provided data.
>
>Signed-off-by: Chris Rorvick <chris@rorvick.com>
Both patches look good to me.
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
>---
> drivers/staging/lustre/lustre/obdclass/lprocfs_status.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
>diff --git a/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c
>b/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c
>index 92ed0a0..b6c3352 100644
>--- a/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c
>+++ b/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c
>@@ -1864,6 +1864,7 @@ int lprocfs_write_frac_u64_helper(const char
>*buffer, unsigned long count,
> char kernbuf[22], *end, *pbuf;
> __u64 whole, frac = 0, units;
> unsigned frac_d = 1;
>+ int sign = 1;
>
> if (count > (sizeof(kernbuf) - 1))
> return -EINVAL;
>@@ -1874,7 +1875,7 @@ int lprocfs_write_frac_u64_helper(const char
>*buffer, unsigned long count,
> kernbuf[count] = '\0';
> pbuf = kernbuf;
> if (*pbuf == '-') {
>- mult = -mult;
>+ sign = -1;
> pbuf++;
> }
>
>@@ -1911,11 +1912,11 @@ int lprocfs_write_frac_u64_helper(const char
>*buffer, unsigned long count,
> }
> /* Specified units override the multiplier */
> if (units > 1)
>- mult = mult < 0 ? -units : units;
>+ mult = units;
>
> frac *= mult;
> do_div(frac, frac_d);
>- *val = whole * mult + frac;
>+ *val = sign * (whole * mult + frac);
> return 0;
> }
> EXPORT_SYMBOL(lprocfs_write_frac_u64_helper);
>--
>2.1.0
>
>
Cheers, Andreas
--
Andreas Dilger
Lustre Software Architect
Intel High Performance Data Division
next prev parent reply other threads:[~2014-12-17 6:54 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-17 4:24 [PATCH v2 0/2] lprocfs_write_frac_u64_helper cleanup Chris Rorvick
2014-12-17 4:24 ` [PATCH v2 1/2] drivers: staging: lustre: Use mult if units not specified Chris Rorvick
2014-12-17 4:24 ` [PATCH v2 2/2] drivers: staging: lustre: Track sign separately Chris Rorvick
2014-12-17 6:54 ` Dilger, Andreas [this message]
2014-12-17 7:56 ` [PATCH v2 0/2] lprocfs_write_frac_u64_helper cleanup Dan Carpenter
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=D0B67685.D0A5B%andreas.dilger@intel.com \
--to=andreas.dilger@intel.com \
--cc=Andriy_Skulysh@xyratex.com \
--cc=HPDD-discuss@ml01.01.org \
--cc=Julia.Lawall@lip6.fr \
--cc=chris@rorvick.com \
--cc=dan.carpenter@oracle.com \
--cc=devel@driverdev.osuosl.org \
--cc=fabf@skynet.be \
--cc=gdonald@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=john.hammond@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=oleg.drokin@intel.com \
--cc=rickard_strandqvist@spectrumdigital.se \
--cc=uja.ornl@gmail.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