Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.0 14 lines 394 B view raw
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* saved per-CPU IRQ register pointer 3 * 4 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved. 5 * Written by David Howells (dhowells@redhat.com) 6 */ 7#include <linux/export.h> 8#include <linux/percpu.h> 9#include <asm/irq_regs.h> 10 11#ifndef ARCH_HAS_OWN_IRQ_REGS 12DEFINE_PER_CPU(struct pt_regs *, __irq_regs); 13EXPORT_PER_CPU_SYMBOL(__irq_regs); 14#endif