genirq: Get rid of unnecessary irqaction field in task_struct
authorAlexander Gordeev <agordeev@redhat.com>
Fri, 9 Mar 2012 13:59:26 +0000 (14:59 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 9 Mar 2012 16:19:08 +0000 (17:19 +0100)
commit4bcdf1d0b652bc33d52f2322b77463e4dc58abf8
tree2a8ecf0f6ef1d0c85a4553cb1d1c7dc74706488a
parent540b60e24f3f4781d80e47122f0c4486a03375b8
genirq: Get rid of unnecessary irqaction field in task_struct

When a new thread handler is created, an irqaction is passed to it as
data. Not only that irqaction is stored in task_struct by the handler
for later use, but also a structure associated with the kernel thread
keeps this value as long as the thread exists.

This fix kicks irqaction out off task_struct. Yes, I introduce new bit
field. But it allows not only to eliminate the duplicate, but also
shortens size of task_struct.

Reported-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Link: http://lkml.kernel.org/r/20120309135925.GB2114@dhcp-26-207.brq.redhat.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
include/linux/sched.h
kernel/irq/manage.c
This page took 0.029292 seconds and 5 git commands to generate.