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] [day] [month] [year] [list]
Date:	Mon, 04 Feb 2013 09:06:44 -0600
From:	Rob Landley <rob@...dley.net>
To:	Oleg <lego12239@...dex.ru>
Cc:	linux-kernel@...r.kernel.org
Subject: Re: [docs] /proc/irq/

On 01/30/2013 03:44:32 AM, Oleg wrote:
>   Hello.
> 
>   Where can i find an info about /proc/irq/*/affinity_hint ?
>   Documentation/filesystems/proc.txt says nothing about it (3.2.37  
> kernel).

The general procedure is to look for the git commit, which may have a  
good commit comment, and also gives you an idea when it went in so you  
can look in the mailing list archives:

cd linux
find . -name '"affinity_hint"'
git annotate kernel/proc/irq.c
(search for "affinity_hint" in quotes, line 331 here, the bit on the  
left edge is the commit hash.)

commit e7a297b0d7d6049bd4e423ac1e17da31e4c401b8
Author: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@...el.com>
Date:   Fri Apr 30 14:44:50 2010 -0700

     genirq: Add CPU mask affinity hint

     This patch adds a cpumask affinity hint to the irq_desc structure,
     along with a registration function and a read-only proc entry for  
each
     interrupt.

     This affinity_hint handle for each interrupt can be used by  
underlying
     drivers that need a better mechanism to control interrupt affinity.
     The underlying driver can register a cpumask for the interrupt,  
which
     will allow the driver to provide the CPU mask for the interrupt to
     anything that requests it.  The intent is to extend the userspace
     daemon, irqbalance, to help hint to it a preferred CPU mask to  
balance
     the interrupt into.

     [ tglx: Fixed compile warnings, added WARN_ON, made SMP only ]

     Signed-off-by: Peter P Waskiewicz Jr  
<peter.p.waskiewicz.jr@...el.com>

That doesn't clarifiy much. Grepping the source for irq_affinity it  
looks like the kernel treats this as a write-only property, and never  
does anything with the info. However, include/linux/irqdesc.h has  
documentation for the structure containing the property, and it says  
this about that field:

  * @affinity_hint:      hint to user space for preferred irq affinity

So this "irqbalance" daemon you're probably not running (unless it got  
sucked into the systemd hairball, in which case you don't know you're  
running it and can't stop it) reads this process and tells the kernel  
to move the irq worker thread to this CPU while load balancing.

It sounds like you're saying Documentation/filesystems/proc.txt should  
be updated to include this information?

Rob--
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