From mboxrd@z Thu Jan 1 00:00:00 1970 From: Oliver Neukum Subject: Re: [PATCH 1/3] Input: xpad - return proper error in error path Date: Fri, 12 Nov 2010 14:41:08 +0100 Message-ID: <201011121441.08298.oneukum@suse.de> References: <1289530116.20782.2.camel@mola> Mime-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Return-path: Received: from cantor.suse.de ([195.135.220.2]:54789 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932094Ab0KLNkk (ORCPT ); Fri, 12 Nov 2010 08:40:40 -0500 In-Reply-To: <1289530116.20782.2.camel@mola> Sender: linux-input-owner@vger.kernel.org List-Id: linux-input@vger.kernel.org To: Axel Lin Cc: linux-kernel , Dmitry Torokhov , Marko Friedemann , Christoph Fritz , linux-input@vger.kernel.org Am Freitag, 12. November 2010, 03:48:36 schrieb Axel Lin: > In current implementation, xpad_probe return 0 when > usb_alloc_urb failed for xpad->bulk_out and kzalloc failed for xpad->bdata. > > This patch removes the initialization for error variable, > assign the error code at the place the error happens instead. I am afraid you cannot let stand the order of allocations here anyway, as xpad->irq_in is currently submitted before xpad->bulk_out is allocated. That however is a race, because the callback for irq_in can call xpad360w_process_packet(), which will in turn submit the bulk URB. I am afraid your patch is pointless unless the logic is also fixed. Regards Oliver