From: "Giedrius Statkevičius" <giedrius.statkevicius@gmail.com>
To: Quentin Lambert <lambert.quentin@gmail.com>,
Lidza Louina <lidza.louina@gmail.com>,
Mark Hounschell <markh@compro.net>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: devel@driverdev.osuosl.org,
driverdev-devel@linuxdriverproject.org,
kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/3] Staging: dgnc: Use goto for error handling
Date: Wed, 11 Mar 2015 18:37:30 +0200 [thread overview]
Message-ID: <55006F4A.70805@gmail.com> (raw)
In-Reply-To: <20150311140433.GA17051@sloth>
On 2015.03.11 16:04, Quentin Lambert wrote:
> This patch introduces goto statments for error handling
> and in cases where a lock needs to be released.
>
> A simplified version of the semantic patch that finds this problem is as
> follows: (http://coccinelle.lip6.fr)
>
> @candidates exists@
> identifier f, label;
> statement s;
> position p1, p2, p3;
> @@
>
> f@p1(...) {
> ...when any
>
> if@p2(...) {
> ...when any
> s
>
> return@p3 ...;
> }
> ...when any
> }
>
> @good1 exists@
> identifier candidates.f, candidates.label;
> statement candidates.s;
> position candidates.p1, candidates.p2;
> @@
>
> f@p1(...) {
> ...when any
>
> if(...) {
> ...when any
> s
> return ...;
> }
> ...when any
>
> if@p2(...) {...}
> ...when any
> }
>
> @depends on good1@
> identifier candidates.f, candidates.label;
> position candidates.p1, candidates.p3;
> @@
>
> f@p1(...) {
> ...when any
> * return@p3 ...;
> }
>
> Signed-off-by: Quentin Lambert <lambert.quentin@gmail.com>
> ---
> drivers/staging/dgnc/dgnc_cls.c | 19 +++++++------------
> drivers/staging/dgnc/dgnc_driver.c | 14 +++-----------
> drivers/staging/dgnc/dgnc_neo.c | 30 ++++++++++++------------------
> 3 files changed, 22 insertions(+), 41 deletions(-)
>
> diff --git a/drivers/staging/dgnc/dgnc_cls.c b/drivers/staging/dgnc/dgnc_cls.c
> index bedc522..02f19f1 100644
> --- a/drivers/staging/dgnc/dgnc_cls.c
> +++ b/drivers/staging/dgnc/dgnc_cls.c
> @@ -1029,22 +1029,16 @@ static void cls_copy_data_from_queue_to_uart(struct channel_t *ch)
> spin_lock_irqsave(&ch->ch_lock, flags);
>
> /* No data to write to the UART */
> - if (ch->ch_w_tail == ch->ch_w_head) {
> - spin_unlock_irqrestore(&ch->ch_lock, flags);
> - return;
> - }
> + if (ch->ch_w_tail == ch->ch_w_head)
> + goto exit_unlock;
>
> /* If port is "stopped", don't send any data to the UART */
> if ((ch->ch_flags & CH_FORCED_STOP) ||
> - (ch->ch_flags & CH_BREAK_SENDING)) {
> - spin_unlock_irqrestore(&ch->ch_lock, flags);
> - return;
> - }
> + (ch->ch_flags & CH_BREAK_SENDING))
> + goto exit_unlock;
>
> - if (!(ch->ch_flags & (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM))) {
> - spin_unlock_irqrestore(&ch->ch_lock, flags);
> - return;
> - }
> + if (!(ch->ch_flags & (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM)))
> + goto exit_unlock;
>
> n = 32;
>
> @@ -1094,6 +1088,7 @@ static void cls_copy_data_from_queue_to_uart(struct channel_t *ch)
> if (len_written > 0)
> ch->ch_flags &= ~(CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
>
> +exit_unlock:
> spin_unlock_irqrestore(&ch->ch_lock, flags);
> }
>
> diff --git a/drivers/staging/dgnc/dgnc_driver.c b/drivers/staging/dgnc/dgnc_driver.c
> index b7fd2bf..9387a0e 100644
> --- a/drivers/staging/dgnc/dgnc_driver.c
> +++ b/drivers/staging/dgnc/dgnc_driver.c
> @@ -572,30 +572,19 @@ static int dgnc_found_board(struct pci_dev *pdev, int id)
>
> rc = dgnc_tty_register(brd);
> if (rc < 0) {
> - dgnc_tty_uninit(brd);
> pr_err(DRVSTR ": Can't register tty devices (%d)\n", rc);
> - brd->state = BOARD_FAILED;
> - brd->dpastatus = BD_NOFEP;
> goto failed;
> }
>
> rc = dgnc_finalize_board_init(brd);
> if (rc < 0) {
> - dgnc_tty_uninit(brd);
> pr_err(DRVSTR ": Can't finalize board init (%d)\n", rc);
> - brd->state = BOARD_FAILED;
> - brd->dpastatus = BD_NOFEP;
> -
> goto failed;
> }
>
> rc = dgnc_tty_init(brd);
> if (rc < 0) {
> - dgnc_tty_uninit(brd);
> pr_err(DRVSTR ": Can't init tty devices (%d)\n", rc);
> - brd->state = BOARD_FAILED;
> - brd->dpastatus = BD_NOFEP;
> -
> goto failed;
> }
>
> @@ -629,6 +618,9 @@ static int dgnc_found_board(struct pci_dev *pdev, int id)
> return 0;
>
> failed:
> + dgnc_tty_uninit(brd);
> + brd->state = BOARD_FAILED;
> + brd->dpastatus = BD_NOFEP;
You'll probably have to remake this patch without this change because a
patch I've submitted a few days ago completely removes these and 2
other ones depend on it. It's still not in staging-testing for some reason :(
--
Thanks,
Giedrius
next prev parent reply other threads:[~2015-03-11 16:38 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-11 14:04 [PATCH 2/3] Staging: dgnc: Use goto for error handling Quentin Lambert
2015-03-11 16:37 ` Giedrius Statkevičius [this message]
2015-03-12 9:27 ` Dan Carpenter
2015-03-12 9:32 ` Quentin Lambert
2015-03-12 9:54 ` Dan Carpenter
2015-03-12 9:58 ` Greg Kroah-Hartman
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=55006F4A.70805@gmail.com \
--to=giedrius.statkevicius@gmail.com \
--cc=devel@driverdev.osuosl.org \
--cc=driverdev-devel@linuxdriverproject.org \
--cc=gregkh@linuxfoundation.org \
--cc=kernel-janitors@vger.kernel.org \
--cc=lambert.quentin@gmail.com \
--cc=lidza.louina@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=markh@compro.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