From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753937AbbCLJcq (ORCPT ); Thu, 12 Mar 2015 05:32:46 -0400 Received: from mail-wi0-f182.google.com ([209.85.212.182]:36975 "EHLO mail-wi0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751775AbbCLJco (ORCPT ); Thu, 12 Mar 2015 05:32:44 -0400 Message-ID: <55015D38.5060100@gmail.com> Date: Thu, 12 Mar 2015 10:32:40 +0100 From: Quentin Lambert User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Dan Carpenter , =?UTF-8?B?R2llZHJpdXMgU3RhdA==?= =?UTF-8?B?a2V2acSNaXVz?= CC: Lidza Louina , Mark Hounschell , Greg Kroah-Hartman , 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 References: <20150311140433.GA17051@sloth> <55006F4A.70805@gmail.com> <20150312092711.GX10964@mwanda> In-Reply-To: <20150312092711.GX10964@mwanda> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/03/2015 10:27, Dan Carpenter wrote: > On Wed, Mar 11, 2015 at 06:37:30PM +0200, Giedrius Statkevičius wrote: >> It's still not in staging-testing for some reason :( >> > It can take several weeks to get merged. Relax. > > regards, > dan carpenter > What should i do concerning that ? I need to send a second version of this patch anyway to fix the fact that i inverted 2 statements, namely: +exit_unlock: + if (ld) + tty_ldisc_deref(ld); + spin_unlock_irqrestore(&ch->ch_lock, flags); should be +exit_unlock: + spin_unlock_irqrestore(&ch->ch_lock, flags); + if (ld) + tty_ldisc_deref(ld); Should I wait these several weeks to send the second version or should I send a second version fixing this issue a wait for someone to ask me to solve the conflict ? Quentin