From: "J. Bruce Fields" <bfields@fieldses.org>
To: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
LKML <linux-kernel@vger.kernel.org>,
Benny Halevy <bhalevy@panasas.com>
Subject: Re: [PATCH 2/2] nfs: nfs4xdr.c do-while is not a compound statement
Date: Fri, 18 Jul 2008 15:07:22 -0400 [thread overview]
Message-ID: <20080718190722.GA12007@fieldses.org> (raw)
In-Reply-To: <1216355584.6029.139.camel@brick>
Thanks, applied.--b.
On Thu, Jul 17, 2008 at 09:33:04PM -0700, Harvey Harrison wrote:
> The WRITEMEM macro produces sparse warnings of the form:
> fs/nfsd/nfs4xdr.c:2668:2: warning: do-while statement is not a compound statement
>
> Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
> ---
> fs/nfsd/nfs4xdr.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
> index 9612d66..0957ec1 100644
> --- a/fs/nfsd/nfs4xdr.c
> +++ b/fs/nfsd/nfs4xdr.c
> @@ -1162,11 +1162,11 @@ nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
> *p++ = htonl((u32)((n) >> 32)); \
> *p++ = htonl((u32)(n)); \
> } while (0)
> -#define WRITEMEM(ptr,nbytes) do if (nbytes > 0) { \
> +#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
> *(p + XDR_QUADLEN(nbytes) -1) = 0; \
> memcpy(p, ptr, nbytes); \
> p += XDR_QUADLEN(nbytes); \
> -} while (0)
> +}} while (0)
> #define WRITECINFO(c) do { \
> *p++ = htonl(c.atomic); \
> *p++ = htonl(c.before_ctime_sec); \
> --
> 1.5.6.3.569.ga9185
>
prev parent reply other threads:[~2008-07-18 19:07 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-18 4:33 Harvey Harrison
2008-07-18 19:07 ` J. Bruce Fields [this message]
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=20080718190722.GA12007@fieldses.org \
--to=bfields@fieldses.org \
--cc=akpm@linux-foundation.org \
--cc=bhalevy@panasas.com \
--cc=harvey.harrison@gmail.com \
--cc=linux-kernel@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
Powered by JetHome