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:	Fri, 23 May 2008 13:47:02 -0700
From:	Randy Dunlap <rdunlap@...otime.net>
To:	Max Krasnyansky <maxk@...lcomm.com>
Cc:	mingo@...e.hu, linux-kernel@...r.kernel.org, pj@....com,
	a.p.zijlstra@...llo.nl, tglx@...utronix.de
Subject: Re: [PATCH] [genirq] Expose default irq affinity mask

On Fri, 23 May 2008 12:46:35 -0700 Max Krasnyansky wrote:

> Current IRQ affinity interface does not provide a way to set affinity
> for the IRQs that will be allocated/activated in the future.
> This patch creates /proc/irq/default_smp_affinity that lets users set
> default affinity mask for the newly allocated IRQs. Changing default
> does not affect affinity masks for the currently active IRQs, they
> have to be changed explicitly.

Documentation, perhaps an update to Documentation/filesystems/proc.txt ?

> Signed-off-by: Max Krasnyansky <maxk@...lcomm.com>
> ---
>  arch/alpha/kernel/irq.c |    5 +--
>  include/linux/irq.h     |   14 ++++-------
>  kernel/irq/manage.c     |   28 +++++++++++++++++++++-
>  kernel/irq/proc.c       |   57 ++++++++++++++++++++++++++++++++++++++++++++++-
>  4 files changed, 89 insertions(+), 15 deletions(-)
> 
> diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
> index 438a014..90f9ccc 100644
> --- a/kernel/irq/manage.c
> +++ b/kernel/irq/manage.c
> @@ -16,6 +16,8 @@
>  
>  #ifdef CONFIG_SMP
>  
> +cpumask_t irq_default_affinity = CPU_MASK_ALL;
> +
>  /**
>   *	synchronize_irq - wait for pending IRQ handlers (on other CPUs)
>   *	@irq: interrupt number to wait for
> @@ -94,6 +96,27 @@ int irq_set_affinity(unsigned int irq, cpumask_t cpumask)
>  	return 0;
>  }
>  
> +#ifndef CONFIG_AUTO_IRQ_AFFINITY
> +/**
> + * Generic version of the affinity autoselector.
> + */

Please don't use /** as the beginning of a comment block unless that
comment block is in kernel-doc format (this one is not).

> +int irq_select_affinity(unsigned int irq)
> +{
> +	cpumask_t mask;
> +
> +	if (!irq_can_set_affinity(irq))
> +		return 0;
> +
> +	cpus_and(mask, cpu_online_map, irq_default_affinity);
> +
> +	irq_desc[irq].affinity = mask;
> +	irq_desc[irq].chip->set_affinity(irq, mask);
> +
> +	set_balance_irq_affinity(irq, mask);
> +	return 0;
> +}
> +#endif


---
~Randy
--
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