Merge branch 'mini2440-dev-extras' into mini2440-dev
[linux-2.6/mini2440.git] / arch / um / sys-x86_64 / bug.c
blobe8034e363d83f9be90460494af01787e73c13c77
1 /*
2 * Copyright (C) 2006 Jeff Dike (jdike@addtoit.com)
3 * Licensed under the GPL V2
4 */
6 #include <linux/uaccess.h>
8 /*
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;