xen: introduce helper functions to do safe read and write accesses
authorJuergen Gross <jgross@suse.com>
Fri, 5 Dec 2014 12:28:04 +0000 (13:28 +0100)
committerDavid Vrabel <david.vrabel@citrix.com>
Mon, 8 Dec 2014 10:53:59 +0000 (10:53 +0000)
commit90fff3ea15a8fa6d2bd60cc0538d8ac33f14b692
tree4626f1216f41e6074e2970aeb97086258f162981
parent2e917175e1ef147a527a9158b9f09773ec94c0bd
xen: introduce helper functions to do safe read and write accesses

Introduce two helper functions to safely read and write unsigned long
values from or to memory when the access may fault because the mapping
is non-present or read-only.

These helpers can be used instead of open coded uses of __get_user()
and __put_user() avoiding the need to do casts to fix sparse warnings.

Use the helpers in page.h and p2m.c. This will fix the sparse
warnings when doing "make C=1".

Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
arch/x86/include/asm/xen/page.h
arch/x86/xen/p2m.c