From: Lennert Buytenhek Date: Sun, 9 Nov 2008 04:34:47 +0000 (+0100) Subject: phylib: fix premature freeing of struct mii_bus X-Git-Tag: v2.6.28-rc6~62^2~15^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e44017b589f001941723dfdfede2ca6284dddce;p=pandora-kernel.git phylib: fix premature freeing of struct mii_bus Commit 46abc02175b3c246dd5141d878f565a8725060c9 ("phylib: give mdio buses a device tree presence") added a call to device_unregister() in a situation where the caller did not intend for the device to be freed yet, but apart from just unregistering the device from the system, device_unregister() does an additional put_device() that is intended to free it. The right function to use in this situation is device_del(), which unregisters the device from the system like device_unregister() does, but without dropping the reference count an additional time. Bug report from Bryan Wu . Signed-off-by: Lennert Buytenhek Tested-by: Bryan Wu Signed-off-by: Jeff Garzik --- Reading git-diff-tree failed