arch/xtensa/kernel/irq.c

Source file repositories/reference/linux-study-clean/arch/xtensa/kernel/irq.c

File Facts

System
Linux kernel
Corpus path
arch/xtensa/kernel/irq.c
Extension
.c
Size
4749 bytes
Lines
196
Domain
Architecture Layer
Bucket
arch/xtensa
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

if (newcpu >= nr_cpu_ids) {
			pr_info_ratelimited("IRQ%u no longer affine to CPU%u\n",
					    i, cpu);

			irq_set_affinity(i, cpu_all_mask);
		} else {
			irq_set_affinity(i, mask);
		}
	}
}
#endif /* CONFIG_HOTPLUG_CPU */

Annotation

Implementation Notes