mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Linus Torvalds <torvalds@linux-foundation.org>
To: Jeff Garzik <jeff@garzik.org>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>,
	Rene Herman <rene.herman@keyaccess.nl>,
	Adrian Bunk <bunk@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	LKML <linux-kernel@vger.kernel.org>,
	rmk@arm.linux.org.uk, Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>
Subject: Re: [git patch] free_irq() fixes
Date: Thu, 24 Apr 2008 08:16:53 -0700 (PDT)	[thread overview]
Message-ID: <alpine.LFD.1.10.0804240806500.2779@woody.linux-foundation.org> (raw)
In-Reply-To: <481066C1.1030805@garzik.org>



On Thu, 24 Apr 2008, Jeff Garzik wrote:
> 
> Honestly, one thing I was thinking was perhaps a change from
> 
> 	irqreturn_t foo_handler(int irq, void *dev_id)
> to
> 	irqreturn_t foo_handler(struct irq_info *ii, void *dev_id)
> 
> which would IMO make the first parameter useful again, by enabling passing of
> information like MSI message info, or more flexible platform-specific irq info
> that a platform driver may want.  Or direct access to irq_desc or irq_chip
> info.

So I *really* hate that idea. It's much *much* worse than what we have 
now.

Why?

The absolutely _only_ piece of reliably information we have that is 
architecture- and irq-controller neutral is the exact information we pass 
in to "request_irq()". That is: irq number, the name, and the device 
cookie thing. Nothing more.

And of the three things, they have the following pattern:

 - "irq number" is some random cookie, but it is a cookie that the 
   *system* forces on the driver, and that is totally independent of how 
   the irq is delivered or what kind of irq it is (device, system, PCI, 
   ISA, whatever). The driver doesn't get to choose it, but the system and 
   the driver have to agree on it some way (ie regardless of whether it's 
   a PCI driver or a Super-Integrated-bus-of-year-2025, the driver will 
   have to get it from some system resource, ie the pci_dev or whatever)

   IOW, the irq number *does* have meaning, but it is very much by design 
   something that is _purely_ a cookie. You cannot look into it - it's not 
   a pointer to any data.

 - "the name". There really is no point to passing this around, because 
   it's purely for show, and purely so that the generic irq layer can tell 
   the user something in /proc/irq etc. Passing it back to the driver 
   would be entirely pointless, because it is designed purely to be a 
   driver->system informational thing.

 - the "device cookie". This is the thing that the system itself doesn't 
   care about, and is _entirely_ under control of the driver, so the 
   driver can pass its own interrupt controller some helpful instance 
   pointers.

So of the three, "device cookie" is the one that we absolutely have to 
have. The irq number is not necessary, but it does actually have some 
meaning especially for legacy devices (eg ISA), and it is at least 
_sensible_ to pass around (ie it has no downsides, and it's not 
fundamentally broken). And the name would be just stupid.

EVERYTHING else would be architecture-specific. And that is exactly what 
we do not want. EVER. 

Passing in some context that contains bus information is absolutely the 
*last* thing we want. We do not want to have irq handlers that know about 
the interrupt controller details. 

			Linus

  reply	other threads:[~2008-04-24 15:31 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-22 22:17 Jeff Garzik
2008-04-22 22:25 ` Linus Torvalds
2008-04-22 22:59   ` Jeff Garzik
2008-04-22 23:20     ` Linus Torvalds
2008-04-22 23:49       ` Jeff Garzik
2008-04-22 23:52         ` Linus Torvalds
2008-04-23  0:05           ` Adrian Bunk
2008-04-23  0:16             ` Linus Torvalds
2008-04-23 13:51               ` Rene Herman
2008-04-24  2:10                 ` Jeff Garzik
2008-04-24  2:19                   ` Linus Torvalds
2008-04-24  5:59                     ` Eric W. Biederman
2008-04-24 10:53                       ` Jeff Garzik
2008-04-24 15:16                         ` Linus Torvalds [this message]
2008-04-24 15:40                           ` Jeff Garzik
2008-04-24 15:55                             ` Linus Torvalds
2008-04-24 15:37                               ` Alan Cox
2008-04-24 16:20                                 ` Jeff Garzik
2008-04-24 16:16                               ` Jeff Garzik
2008-04-24 16:48                               ` Eric W. Biederman
2008-04-24 16:58                                 ` Linus Torvalds
2008-04-24 18:15                                   ` Eric W. Biederman
2008-04-24 17:30                                 ` Jeff Garzik
2008-04-25  2:53                                   ` Eric W. Biederman
2008-04-25  3:33                                     ` MSI, fun for the whole family (was Re: [git patch] free_irq() fixes) Jeff Garzik
2008-04-25  3:57                                       ` MSI, fun for the whole family Roland Dreier
2008-04-25  4:19                                         ` David Miller
2008-04-25  4:35                                         ` Jeff Garzik
2008-04-25  5:48                                           ` Eric W. Biederman
2008-04-25 22:44                                           ` Roland Dreier
2008-04-25  5:08                                       ` Eric W. Biederman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.LFD.1.10.0804240806500.2779@woody.linux-foundation.org \
    --to=torvalds@linux-foundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=bunk@kernel.org \
    --cc=ebiederm@xmission.com \
    --cc=jeff@garzik.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=rene.herman@keyaccess.nl \
    --cc=rmk@arm.linux.org.uk \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®