Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1763553AbZFPXFh (ORCPT ); Tue, 16 Jun 2009 19:05:37 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1763381AbZFPXFM (ORCPT ); Tue, 16 Jun 2009 19:05:12 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:46293 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761303AbZFPXFL (ORCPT ); Tue, 16 Jun 2009 19:05:11 -0400 Date: Tue, 16 Jun 2009 16:05:07 -0700 (PDT) From: Linus Torvalds X-X-Sender: torvalds@localhost.localdomain To: Andrew Patterson cc: linux-pci@vger.kernel.org, Linux Kernel Mailing List , jbarnes@virtuousgeek.org, Ivan Kokshaysky Subject: Re: [PATCH 0/1] Recurse when searching for empty slots in resources trees In-Reply-To: <1245192703.8234.226.camel@bluto.andrew> Message-ID: References: <20090616220419.14021.84524.stgit@bob.kio> <1245192703.8234.226.camel@bluto.andrew> User-Agent: Alpine 2.01 (LFD 1184 2008-12-16) MIME-Version: 1.0 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: 2366 Lines: 57 On Tue, 16 Jun 2009, Andrew Patterson wrote: > > That is at least one problem. I initially tried reparenting this stuff. > That is what got backed out in > http://thread.gmane.org/gmane.linux.kernel/768526/ Well, aren't we in the exact same situation still? Ie the problem (as Matthew claims) is: 'Basically it was that we came across a machine with the opposite problem -- that we found a parent after we found a child (and claimed the child's resources), and had no way to insert the parent's region above the child's region. Alex's machine finds the child after the parent and needs to insert the child's resource inside the parent's resource.' and the problem is that anything that isn't explicitly aware of the topology is always going to be potentially confused about things like this, since it's not clear at which level you want to find or add a resource. > > But you fix it by making find_resource always go as deep as it can (if I > > read the code correctly). > > Well, just deep enough. Ok, color me confused now. When is "as deep as it can" different from your "just deep enough"? > Is there a reason that find_resources should stop at the roots immediate > child/sibling. It seems like a bug to me. Hence this patch. Well, find_resource() found room for a resource. So it returns it. The point is, your patch returns another - equally valid one. Now, I'm not saying that your patch is wrong, but I _am_ worried that it (once more) changes some random heuristic when we have two choices, and it just makes it choose the other choice. We've had those kinds of situations before. The thread you point to is an exact case of this. My point is that I'd rather try to _avoid_ any ambiguous cases, and try to solve it properly at a higher PCI level, where the ambiguity doesn't exist any more (because we'd explicitly take the actual bus topology into account). So your patch may fix a bug, but I'm pretty sure I've seen a patch from Ivan that should _also_ fix it, and that I would expect to do it not by just tweaking a fundamentally ambiguous case. Linus -- 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/