Skip to content

Commit

Permalink
[IA64] kexec: Minor enhancement to includes in crash.c
Browse files Browse the repository at this point in the history
linux/uaccess.h was being included, but it seems that
really the following includes are needed.

asm/page.h: for __va() and PAGE_SHIFT
asm/uaccess.h: for copy_to_user()

I guess that linux/uaccess.h pulls in both asm/page.h and asm/uaccess.h.
I notices this while backporting the code to xen's linux-2.6.16.33,
which does not have linux/uaccess.h. I'm posting it as I think it is a
correct, though somewhat cosmetic fix.

Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Horms authored and Tony Luck committed Feb 5, 2007
1 parent 233c2f9 commit 8a697d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/ia64/kernel/crash_dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
#include <linux/errno.h>
#include <linux/types.h>

#include <linux/uaccess.h>
#include <asm/page.h>
#include <asm/uaccess.h>

/**
* copy_oldmem_page - copy one page from "oldmem"
Expand Down

0 comments on commit 8a697d0

Please sign in to comment.