Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757379AbYAJDvb (ORCPT ); Wed, 9 Jan 2008 22:51:31 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754189AbYAJDvX (ORCPT ); Wed, 9 Jan 2008 22:51:23 -0500 Received: from mail.suse.de ([195.135.220.2]:50185 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752447AbYAJDvW (ORCPT ); Wed, 9 Jan 2008 22:51:22 -0500 Date: Wed, 9 Jan 2008 19:55:03 -0800 From: Greg KH To: Russell King - ARM Linux Cc: Andrew Morton , Bahadir Balban , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.arm.linux.org.uk Subject: Re: 2.6.24-rc5 sysfs pci bridge duplicate symlink Message-ID: <20080110035503.GG20448@suse.de> References: <7ac1e90c0712280511y3a0f454cmc84e8c17f173c8dc@mail.gmail.com> <20071228150322.71e5ca49.akpm@linux-foundation.org> <20071228235048.GB22935@flint.arm.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20071228235048.GB22935@flint.arm.linux.org.uk> User-Agent: Mutt/1.5.16 (2007-06-09) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3036 Lines: 71 On Fri, Dec 28, 2007 at 11:50:49PM +0000, Russell King - ARM Linux wrote: > On Fri, Dec 28, 2007 at 03:03:22PM -0800, Andrew Morton wrote: > > On Fri, 28 Dec 2007 13:11:37 +0000 "Bahadir Balban" wrote: > > > > > Hi, > > > > > > On ARM with PCI, I get this error since -rc2 (didn't try rc1): > > > > > > sysfs: duplicate filename 'bridge' can not be created > > > WARNING: at fs/sysfs/dir.c:424 sysfs_add_one() > > > [] (dump_stack+0x0/0x14) from [] (sysfs_add_one+0x50/0xf4) > > > [] (sysfs_add_one+0x0/0xf4) from [] > > > (sysfs_create_link+0xec/0x184) > > > r6:cfca8b48 r5:cfca96c8 r4:cfc2fec0 > > > [] (sysfs_create_link+0x0/0x184) from [] > > > (pci_bus_add_devices+0xf0/0x144) > > > r7:cfc5a2d4 r6:cfc5a2d4 r5:cfc5a2c0 r4:cfcad800 > > > [] (pci_bus_add_devices+0x0/0x144) from [] > > > (pci_bus_add_devices+0xdc/0x144) > > > r7:cfc5a3d4 r6:cfc5a3d4 r5:cfc5a3c0 r4:cfcadc00 > > > [] (pci_bus_add_devices+0x0/0x144) from [] > > > (pci_bus_add_devices+0xdc/0x144) > > > r7:cfc5a4d4 r6:cfc5a4d4 r5:cfc5a4c0 r4:cfc5d400 > > > [] (pci_bus_add_devices+0x0/0x144) from [] > > > (pci_common_init+0x148/0x184) > > > r7:c035fd58 r6:cfc3e760 r5:c001e030 r4:cfc5a4c0 > > > > > > > > > Any idea why? > > > > > > > (suitable cc added) > > Looks to me as if the code added to pci_bus_add_devices() is off it's > rocker. > > In brief, pci_bus_add_devices() is supposed to be callable given *any* > state of the bus, and it will add any new devices found in the bus tree > from the bus that it's called for downwards. (That's how I designed > that bit of PCI code - so it can cope with hotpluggable PCI bridges.) > > It still does this. However, some bright spark decided to add sysfs > links to it - and break it. Now, whenever we descend into a subordinate > bus (and return to a higher level) we will try to create a sysfs symlink > even if the bus is one that we already registered. > > So... that sysfs_create_link() call in there should not be unconditional. > It should _only_ ever do that call if list_empty(&dev->subordinate->node) > was true. IOW, we only create symlinks for subordinate bus that we don't > already know about. > > It looks like it was introduced by Greg's "PCI: fix __must_check warnings" > but why a patch advertised _solely_ as a fix is adding additional sysfs > attributes I've no idea. I'm sorry, but I don't see where that patch added new sysfs attributes to anything. It just reports any errors that might have occured and hopefully properly handle them. Did I mess up somewhere with this? > Something like the following should fix it. Bahadir - please test. Any test results? thanks, greg k-h -- 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/