|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] gnttab: simplify (really: drop) gnttab_set_frame_gfn()
commit eff88c4d35435fc56dcb07155e45bef16a56e892
Author: Jan Beulich <jbeulich@xxxxxxxx>
AuthorDate: Fri May 22 08:21:14 2026 +0200
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Fri May 22 08:21:14 2026 +0200
gnttab: simplify (really: drop) gnttab_set_frame_gfn()
It's not really doing anything for valid GFNs, which renders its one use
site pretty pointless. The other isn't so much about setting anything, but
rather about clearing.
The main point here, however, is about Rafal spotting the double
fetching of the GFN (first in gnttab_unpopulate_status_frames(), then
again in gnttab_set_frame_gfn()). Re-purpose the macro parameter to pass
in the already fetched GFN, while dropping the no longer used parameters.
As the result is a mere wrapper around guest_physmap_remove_page(), drop
the hook altogether.
Suggested-by: Rafal Wojtczuk <rafal.wojtczuk@xxxxxxxxxx>
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Release-Acked-by: Oleksii Kurochko <oleksii.kurochko@xxxxxxxxx>
---
xen/arch/arm/include/asm/grant_table.h | 7 -------
xen/arch/x86/include/asm/grant_table.h | 6 ------
xen/common/grant_table.c | 5 +----
3 files changed, 1 insertion(+), 17 deletions(-)
diff --git a/xen/arch/arm/include/asm/grant_table.h
b/xen/arch/arm/include/asm/grant_table.h
index c47058a3a0..7661a95341 100644
--- a/xen/arch/arm/include/asm/grant_table.h
+++ b/xen/arch/arm/include/asm/grant_table.h
@@ -50,13 +50,6 @@ int replace_grant_host_mapping(uint64_t gpaddr, mfn_t frame,
#define gnttab_dom0_frames() \
min_t(unsigned int, opt_max_grant_frames, PFN_DOWN(_etext - _stext))
-#define gnttab_set_frame_gfn(gt, st, idx, gfn, mfn) \
- (gfn_eq(gfn, INVALID_GFN) \
- ? guest_physmap_remove_page((gt)->domain, \
- gnttab_get_frame_gfn(gt, st, idx), \
- mfn, 0) \
- : 0)
-
#define gnttab_get_frame_gfn(gt, st, idx) ({ \
(st) ? gnttab_status_gfn(NULL, gt, idx) \
: gnttab_shared_gfn(NULL, gt, idx); \
diff --git a/xen/arch/x86/include/asm/grant_table.h
b/xen/arch/x86/include/asm/grant_table.h
index 5c23cec90c..e939c9bacb 100644
--- a/xen/arch/x86/include/asm/grant_table.h
+++ b/xen/arch/x86/include/asm/grant_table.h
@@ -32,12 +32,6 @@ static inline int replace_grant_host_mapping(uint64_t addr,
mfn_t frame,
return replace_grant_pv_mapping(addr, frame, new_addr, flags);
}
-#define gnttab_set_frame_gfn(gt, st, idx, gfn, mfn) \
- (gfn_eq(gfn, INVALID_GFN) \
- ? guest_physmap_remove_page((gt)->domain, \
- gnttab_get_frame_gfn(gt, st, idx), \
- mfn, 0) \
- : 0 /* Handled in add_to_physmap_one(). */)
#define gnttab_get_frame_gfn(gt, st, idx) ({ \
mfn_t mfn_ = (st) ? gnttab_status_mfn(gt, idx) \
: gnttab_shared_mfn(gt, idx); \
diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c
index f516641eba..2dda1abd3f 100644
--- a/xen/common/grant_table.c
+++ b/xen/common/grant_table.c
@@ -1844,8 +1844,7 @@ gnttab_unpopulate_status_frames(struct domain *d, struct
grant_table *gt)
{
int rc = gfn_eq(gfn, INVALID_GFN)
? 0
- : gnttab_set_frame_gfn(gt, true, i, INVALID_GFN,
- page_to_mfn(pg));
+ : guest_physmap_remove_page(d, gfn, page_to_mfn(pg), 0);
if ( rc )
{
@@ -4285,8 +4284,6 @@ int gnttab_map_frame_begin(
*/
if ( !get_page(pg, d) )
rc = -EBUSY;
- else if ( (rc = gnttab_set_frame_gfn(gt, status, idx, gfn, *mfn)) )
- put_page(pg);
}
if ( rc )
--
generated by git-patchbot for /home/xen/git/xen.git#master
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |