From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752116AbZKTKUG (ORCPT ); Fri, 20 Nov 2009 05:20:06 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751901AbZKTKUF (ORCPT ); Fri, 20 Nov 2009 05:20:05 -0500 Received: from mx2.mail.elte.hu ([157.181.151.9]:33876 "EHLO mx2.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751883AbZKTKUE (ORCPT ); Fri, 20 Nov 2009 05:20:04 -0500 Date: Fri, 20 Nov 2009 11:19:49 +0100 From: Ingo Molnar To: Alexey Dobriyan Cc: linux-tip-commits@vger.kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com, mingo@redhat.com, akpm@linux-foundation.org, tglx@linutronix.de Subject: Re: [tip:irq/core] genirq: switch /proc/irq/*/spurious to seq_file Message-ID: <20091120101949.GD16781@elte.hu> References: <20090828181743.GA14050@x200.localdomain> <20091119185056.GA29223@x200.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20091119185056.GA29223@x200.localdomain> User-Agent: Mutt/1.5.20 (2009-08-17) X-ELTE-SpamScore: 0.0 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=0.0 required=5.9 tests=none autolearn=no SpamAssassin version=3.2.5 _SUMMARY_ Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Alexey Dobriyan wrote: > On Wed, Nov 18, 2009 at 11:54:34AM +0000, tip-bot for Alexey Dobriyan wrote: > > --- a/kernel/irq/proc.c > > +++ b/kernel/irq/proc.c > > @@ -148,18 +148,28 @@ static const struct file_operations default_affinity_proc_fops = { > > }; > > #endif > > > > -static int irq_spurious_read(char *page, char **start, off_t off, > > - int count, int *eof, void *data) > > +static int irq_spurious_proc_show(struct seq_file *m, void *v) > > { > > - struct irq_desc *desc = irq_to_desc((long) data); > > - return sprintf(page, "count %u\n" > > - "unhandled %u\n" > > - "last_unhandled %u ms\n", > > - desc->irq_count, > > - desc->irqs_unhandled, > > - jiffies_to_msecs(desc->last_unhandled)); > > + struct irq_desc *desc = irq_to_desc((long) m->private); > ^^^^^^^^^^ > > + > > + seq_printf(m, "count %u\n" "unhandled %u\n" "last_unhandled %u ms\n", > > + desc->irq_count, desc->irqs_unhandled, > > + jiffies_to_msecs(desc->last_unhandled)); > > + return 0; > > +} > > + > > +static int irq_spurious_proc_open(struct inode *inode, struct file *file) > > +{ > > + return single_open(file, irq_spurious_proc_show, NULL); > > Oops, there has to be PDE(inode)->data instead of NULL. Send a patch please. Thanks, Ingo