From mboxrd@z Thu Jan 1 00:00:00 1970 From: ebiederm@xmission.com (Eric W. Biederman) Subject: Re: [patch 00/47] Sparse irq rework Date: Sun, 03 Oct 2010 17:49:51 -0700 Message-ID: References: <20100930221351.682772535@linutronix.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from out01.mta.xmission.com ([166.70.13.231]:47099 "EHLO out01.mta.xmission.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751573Ab0JDAuD (ORCPT ); Sun, 3 Oct 2010 20:50:03 -0400 In-Reply-To: (Thomas Gleixner's message of "Sun, 3 Oct 2010 21:16:47 +0200 (CEST)") Sender: linux-arch-owner@vger.kernel.org List-ID: To: Thomas Gleixner Cc: LKML , linux-arch@vger.kernel.org, Linus Torvalds , Andrew Morton , x86@kernel.org, Peter Zijlstra , Benjamin Herrenschmidt , Paul Mundt , Russell King , David Woodhouse , Jesse Barnes , Yinghai Lu , Grant Likely Thomas Gleixner writes: > On Sun, 3 Oct 2010, Eric W. Biederman wrote: >> Thomas Gleixner writes: >> > Rationale: >> > ---------- >> > >> > The current sparse_irq allocator has several short comings due to >> > failures in the design or the lack of it: >> > >> > - Requires iteration over the number of active irqs to find a free slot >> > Some architectures have grown their own workarounds for this. >> > >> > - Freeing of irq descriptors is not possible >> > >> > - Racy between create_irq_nr and destroy_irq plugged by horrible >> > callbacks >> > >> > - Migration of active irq descriptors is not possible >> >> I believe you have distored the design when aiming for migration >> of active irq descriptors (which you have not even implemented yet). >> >> How do you plan to remove the radix tree lookup from the irq >> handling path? > > Not at all and it's not even even a requirement to remove the lookup > for implementing live migration. It sounds like it is a requirement to *keep* the lookup for supporting live migration. *Keeping* the lookup I see as a serious problem. If we do this right the only users of the radix tree will be drivers using the functions in interrupt.h. >> Those files provide the genirq irq chip implementation especially >> drivers/pci/msi.c. Of course they will do what every other irq_chip >> implementation does to get access to data. There is an unpleasant >> difference between which generic irq data field htirq.c uses and msi.c >> which may be worth cleaning up. But otherwise I don't see any >> fundamental problems. > > The fundamental problem I hit, was the hack which handed down irq_desc > to avoid the lookup. If it had been msi_desc in the first place, then > I would not even need to touch the msi code to cleanup x86. Just because you intend to rename the irq_desc irq_data... It isn't a hack for an irq method to look at irq_desc. At least not until your irq_data changes go through. This has nothing to do with how x86 is structured and everything to do with your irq_data ``cleanup'' which appears to be mostly about code churn, for very little apparent benefit. In the current state of the kernel I find it very hard to swallow that having a genirq client using irq_desc (which is the only way to implement somethings) is a hack. Eric