diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-10 19:21:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-10 19:21:11 -0400 |
commit | 06ab838c2024db468855118087db16d8fa905ddc (patch) | |
tree | 316ddb218bf3d5482bf16d38c129b71504780835 /drivers/xen/balloon.c | |
parent | 573c577af079184ca523984e3279644eb37756a3 (diff) | |
parent | 5f51042f876b88a3b81a135cc4ca0adb3d246112 (diff) |
Merge tag 'for-linus-4.3-rc0b-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
Pull xen terminology fixes from David Vrabel:
"Use the correct GFN/BFN terms more consistently"
* tag 'for-linus-4.3-rc0b-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
xen/xenbus: Rename the variable xen_store_mfn to xen_store_gfn
xen/privcmd: Further s/MFN/GFN/ clean-up
hvc/xen: Further s/MFN/GFN clean-up
video/xen-fbfront: Further s/MFN/GFN clean-up
xen/tmem: Use xen_page_to_gfn rather than pfn_to_gfn
xen: Use correctly the Xen memory terminologies
arm/xen: implement correctly pfn_to_mfn
xen: Make clear that swiotlb and biomerge are dealing with DMA address
Diffstat (limited to 'drivers/xen/balloon.c')
-rw-r--r-- | drivers/xen/balloon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c index 1fa633b2d556..c79329fcfa78 100644 --- a/drivers/xen/balloon.c +++ b/drivers/xen/balloon.c | |||
@@ -441,7 +441,7 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp) | |||
441 | /* Update direct mapping, invalidate P2M, and add to balloon. */ | 441 | /* Update direct mapping, invalidate P2M, and add to balloon. */ |
442 | for (i = 0; i < nr_pages; i++) { | 442 | for (i = 0; i < nr_pages; i++) { |
443 | pfn = frame_list[i]; | 443 | pfn = frame_list[i]; |
444 | frame_list[i] = pfn_to_mfn(pfn); | 444 | frame_list[i] = pfn_to_gfn(pfn); |
445 | page = pfn_to_page(pfn); | 445 | page = pfn_to_page(pfn); |
446 | 446 | ||
447 | #ifdef CONFIG_XEN_HAVE_PVMMU | 447 | #ifdef CONFIG_XEN_HAVE_PVMMU |