lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 14 Jul 2008 10:17:22 -0700
From:	Andrew Morton <akpm@...ux-foundation.org>
To:	Thomas Gleixner <tglx@...utronix.de>
Cc:	Linus Torvalds <torvalds@...ux-foundation.org>,
	LKML <linux-kernel@...r.kernel.org>, Ingo Molnar <mingo@...e.hu>
Subject: Re: [GIT pull] genirq updates for 2.6.27

On Mon, 14 Jul 2008 18:27:22 +0200 (CEST) Thomas Gleixner <tglx@...utronix.de> 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.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ