mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
e182c965b6
The BUG changes in -mm3 need some arch support. This patch adds the UML support needed. For the most part, it was stolen from the underlying architecture. The exception is the kernel eip < PAGE_OFFSET test, which is wrong for skas mode UMLs. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Jeremy Fitzhardinge <jeremy@goop.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
20 lines
400 B
C
20 lines
400 B
C
/*
|
|
* Copyright (C) 2006 Jeff Dike (jdike@addtoit.com)
|
|
* Licensed under the GPL V2
|
|
*/
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
/* Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because
|
|
* that's not relevent in skas mode.
|
|
*/
|
|
|
|
int is_valid_bugaddr(unsigned long eip)
|
|
{
|
|
unsigned short ud2;
|
|
|
|
if (probe_kernel_address((unsigned short __user *)eip, ud2))
|
|
return 0;
|
|
|
|
return ud2 == 0x0b0f;
|
|
}
|