traps.c (1c4de499e6134ecb048bbd80133b213c705de3e5) | traps.c (8d4a142904f07765b7c7c46abf71f811a0811987) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * OpenRISC traps.c 4 * 5 * Linux architectural port borrowing liberally from similar works of 6 * others. All original copyrights apply as per the original source 7 * declaration. 8 * --- 17 unchanged lines hidden (view full) --- 26#include <linux/errno.h> 27#include <linux/ptrace.h> 28#include <linux/timer.h> 29#include <linux/mm.h> 30#include <linux/kallsyms.h> 31#include <linux/uaccess.h> 32 33#include <asm/io.h> | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * OpenRISC traps.c 4 * 5 * Linux architectural port borrowing liberally from similar works of 6 * others. All original copyrights apply as per the original source 7 * declaration. 8 * --- 17 unchanged lines hidden (view full) --- 26#include <linux/errno.h> 27#include <linux/ptrace.h> 28#include <linux/timer.h> 29#include <linux/mm.h> 30#include <linux/kallsyms.h> 31#include <linux/uaccess.h> 32 33#include <asm/io.h> |
34#include <asm/processor.h> |
|
34#include <asm/unwinder.h> 35#include <asm/sections.h> 36 37static int kstack_depth_to_print = 0x180; 38int lwa_flag; 39static unsigned long __user *lwa_addr; 40 41asmlinkage void unhandled_exception(struct pt_regs *regs, int ea, int vector); --- 459 unchanged lines hidden --- | 35#include <asm/unwinder.h> 36#include <asm/sections.h> 37 38static int kstack_depth_to_print = 0x180; 39int lwa_flag; 40static unsigned long __user *lwa_addr; 41 42asmlinkage void unhandled_exception(struct pt_regs *regs, int ea, int vector); --- 459 unchanged lines hidden --- |