[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140908195033.GA7006@kroah.com>
Date: Mon, 8 Sep 2014 12:50:33 -0700
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: Julia Lawall <Julia.Lawall@...6.fr>
Cc: devel@...verdev.osuosl.org,
"Dilger, Andreas" <andreas.dilger@...el.com>,
Peng Tao <bergwolf@...il.com>, kernel-janitors@...r.kernel.org,
linux-kernel@...r.kernel.org,
"Drokin, Oleg" <oleg.drokin@...el.com>
Subject: Re: [PATCH 3/7] staging: lustre: lov: expand the GOTO macro
On Sun, Sep 07, 2014 at 06:18:31PM +0200, Julia Lawall wrote:
> From: Julia Lawall <Julia.Lawall@...6.fr>
>
> The semantic patch that makes this change is as follows:
> (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> identifier lbl;
> identifier rc;
> constant c;
> @@
>
> - GOTO(lbl,\(rc\|c\));
> + goto lbl;
>
> @@
> identifier lbl;
> expression rc;
> @@
>
> - GOTO(lbl,rc);
> + rc;
> + goto lbl;
> // </smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@...6.fr>
>
> ---
> drivers/staging/lustre/lustre/lov/lov_obd.c | 154 ++++++++++------
> drivers/staging/lustre/lustre/lov/lov_object.c | 13 -
> drivers/staging/lustre/lustre/lov/lov_pack.c | 23 +-
> drivers/staging/lustre/lustre/lov/lov_page.c | 12 -
> drivers/staging/lustre/lustre/lov/lov_pool.c | 38 ++--
> drivers/staging/lustre/lustre/lov/lov_request.c | 226 +++++++++++++++---------
> 6 files changed, 304 insertions(+), 162 deletions(-)
There were some patches ahead of yours in this area that prevented this
patch from applying.
Can you refresh this against my latest tree (staging-next branch of
staging.git on git.kernel.org) and resend?
thanks,
greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists