From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Wed, 28 Jan 2015 16:24:54 +0100 From: Johan Hovold To: Luis Henriques Cc: Greg Kroah-Hartman , linux-kernel@vger.kernel.org, stable@vger.kernel.org, Johan Hovold , Linus Walleij Subject: Re: [PATCH 3.14 02/77] gpio: sysfs: fix gpio device-attribute leak Message-ID: <20150128152454.GB2433@localhost> References: <20150128012745.971137091@linuxfoundation.org> <20150128012746.043195070@linuxfoundation.org> <20150128143008.GC4685@charon> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150128143008.GC4685@charon> Sender: linux-kernel-owner@vger.kernel.org List-ID: On Wed, Jan 28, 2015 at 02:30:08PM +0000, Luis Henriques wrote: > On Tue, Jan 27, 2015 at 05:26:40PM -0800, Greg Kroah-Hartman wrote: > > @@ -994,6 +991,8 @@ void gpiod_unexport(struct gpio_desc *de > > > > dev = class_find_device(&gpio_class, NULL, desc, match_export); > > if (dev) { > > + device_remove_file(dev, &dev_attr_edge); > > + device_remove_file(dev, &dev_attr_direction); > > gpio_setup_irq(desc, dev, 0); > > clear_bit(FLAG_EXPORT, &desc->flags); > > } else > > > > I believe there's a mistake in this backport: the changes to the > gpiod_unexport() function are being applied to the wrong code block; > they should be in: > > if (dev) { > device_unregister(dev); > put_device(dev); > } > > The backport to the 3.10 kernel have the same problem. You're right, thanks for catching this. I'll send a v2. Johan