RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / um / sys-i386 / bug.c
blob8d4f273f1219b0aaab6d3fc24769d7dddb5ec4c4
1 /*
2 * Copyright (C) 2006 Jeff Dike (jdike@addtoit.com)
3 * Licensed under the GPL V2
4 */
6 #include <linux/uaccess.h>
7 #include <asm/errno.h>
9 /* Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because
10 * that's not relevant in skas mode.
13 int is_valid_bugaddr(unsigned long eip)
15 unsigned short ud2;
17 if (probe_kernel_address((unsigned short __user *)eip, ud2))
18 return 0;
20 return ud2 == 0x0b0f;