Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752219AbbGOPvb (ORCPT ); Wed, 15 Jul 2015 11:51:31 -0400 Received: from cantor2.suse.de ([195.135.220.15]:60375 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751466AbbGOPva (ORCPT ); Wed, 15 Jul 2015 11:51:30 -0400 Date: Wed, 15 Jul 2015 17:51:28 +0200 Message-ID: From: Takashi Iwai To: Laurent Pinchart Cc: linux-kernel@vger.kernel.org Subject: Re: Is devm_* broken ? In-Reply-To: <1503739.gVWYM3p8QD@avalon> References: <1503739.gVWYM3p8QD@avalon> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/24.5 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1559 Lines: 41 On Wed, 15 Jul 2015 00:34:53 +0200, Laurent Pinchart wrote: > > Hello, > > I came to realize not too long ago that the following sequence of events will > lead to a crash with any platform driver that uses devm_* and creates device > nodes. > > 1. Get a platform device bound it its driver > 2. Open the corresponding device node in userspace and keep it open > 3. Unbind the platform device from its driver through sysfs > > echo > /sys/bus/platform/drivers//unbind > > (or for hotpluggable devices just unplug the device) > > 4. Close the device node > 5. Enjoy the fireworks > > While having a device node open prevents modules from being unloaded, it > doesn't prevent devices from being unbound from drivers. If the driver uses > devm_* helpers to allocate memory the memory will be freed when the device is > unbound from the driver, but that memory will still be used by any operation > touching an open device node. > > Is devm_* inherently broken ? It's so widely used, tell me I'm missing > something obvious. I don't think this is specific to devm_*() but it's about the resource management in general. After bus or driver's remove callback, all device resources that have been assigned by the driver are supposed to be freed, or ready to be freed. Takashi -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/