From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754764AbYGNRSV (ORCPT ); Mon, 14 Jul 2008 13:18:21 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757852AbYGNRRr (ORCPT ); Mon, 14 Jul 2008 13:17:47 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:44650 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757846AbYGNRRq (ORCPT ); Mon, 14 Jul 2008 13:17:46 -0400 Date: Mon, 14 Jul 2008 10:17:22 -0700 From: Andrew Morton To: Thomas Gleixner Cc: Linus Torvalds , LKML , Ingo Molnar Subject: Re: [GIT pull] genirq updates for 2.6.27 Message-Id: <20080714101722.e0df1608.akpm@linux-foundation.org> In-Reply-To: References: X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.5; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 14 Jul 2008 18:27:22 +0200 (CEST) Thomas Gleixner wrote: > Linus, > > Please pull the latest genirq git tree from: > > git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git genirq > Could you cc me on the pull requests please? I _do_ look them over, but I'm often days behind in my lkml reading. > +void register_default_affinity_proc(void) > +{ > +#ifdef CONFIG_SMP > + struct proc_dir_entry *entry; > + > + /* create /proc/irq/default_smp_affinity */ > + entry = create_proc_entry("default_smp_affinity", 0600, root_irq_dir); > + if (entry) { > + entry->data = NULL; > + entry->read_proc = default_affinity_read; > + entry->write_proc = default_affinity_write; > + } > +#endif > +} This should have static scope.