'\" t .\" Title: struct irq_affinity_notify .\" Author: .\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: July 2017 .\" Manual: Structures .\" Source: Kernel Hackers Manual 4.11.6 .\" Language: English .\" .TH "STRUCT IRQ_AFFINITY_" "9" "July 2017" "Kernel Hackers Manual 4\&.11\&" "Structures" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" struct_irq_affinity_notify \- context for notification of IRQ affinity changes .SH "SYNOPSIS" .sp .nf struct irq_affinity_notify { unsigned int irq; struct kref kref; struct work_struct work; void (* notify) (struct irq_affinity_notify *, const cpumask_t *mask); void (* release) (struct kref *ref); }; .fi .SH "MEMBERS" .PP unsigned int irq .RS 4 Interrupt to which notification applies .RE .PP struct kref kref .RS 4 Reference count, for internal use .RE .PP struct work_struct work .RS 4 Work item, for internal use .RE .PP void (*)(struct irq_affinity_notify *, const cpumask_t *mask) notify .RS 4 Function to be called on change\&. This will be called in process context\&. .RE .PP void (*)(struct kref *ref) release .RS 4 Function to be called on release\&. This will be called in process context\&. Once registered, the structure must only be freed when this function is called or later\&. .RE .SH "AUTHORS" .PP \fBThomas Gleixner\fR <\&tglx@linutronix.de\&> .RS 4 Author. .RE .PP \fBIngo Molnar\fR <\&mingo@elte.hu\&> .RS 4 Author. .RE .SH "COPYRIGHT" .br