From: Samuel Thibault <samuel.thibault@ens-lyon.org>
To: Juergen Gross <jgross@suse.com>
Cc: minios-devel@lists.xenproject.org,
xen-devel@lists.xenproject.org, wl@xen.org
Subject: Re: [PATCH 08/10] mini-os: add proper pvh grant table handling
Date: Sun, 12 Dec 2021 01:43:28 +0100 [thread overview]
Message-ID: <20211212004328.ozyid2zh4fapcnit@begin> (raw)
In-Reply-To: <20211206072337.9517-9-jgross@suse.com>
Juergen Gross, le lun. 06 déc. 2021 08:23:35 +0100, a ecrit:
> Grant table initialization for PVH requires some additional actions
> compared to PV mode. Add those.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
> ---
> arch/x86/gnttab.c | 31 +++++++++++++++++++++++++++++++
> 1 file changed, 31 insertions(+)
>
> diff --git a/arch/x86/gnttab.c b/arch/x86/gnttab.c
> index 56e59d7..281c207 100644
> --- a/arch/x86/gnttab.c
> +++ b/arch/x86/gnttab.c
> @@ -22,11 +22,15 @@
> */
>
> #include <mini-os/os.h>
> +#include <mini-os/console.h>
> +#include <mini-os/e820.h>
> #include <mini-os/hypervisor.h>
> #include <mini-os/gnttab.h>
> #include <mini-os/mm.h>
> #include <mini-os/types.h>
> +#include <xen/memory.h>
>
> +#ifdef CONFIG_PARAVIRT
> grant_entry_v1_t *arch_init_gnttab(int nr_grant_frames)
> {
> struct gnttab_setup_table setup;
> @@ -39,6 +43,33 @@ grant_entry_v1_t *arch_init_gnttab(int nr_grant_frames)
> HYPERVISOR_grant_table_op(GNTTABOP_setup_table, &setup, 1);
> return map_frames(frames, nr_grant_frames);
> }
> +#else
> +grant_entry_v1_t *arch_init_gnttab(int nr_grant_frames)
> +{
> + int i, rc;
> + struct xen_add_to_physmap xatp;
> + unsigned long pfn;
> + unsigned long frames[nr_grant_frames];
> +
> + pfn = e820_get_reserved_pfns(nr_grant_frames);
> + for ( i = 0; i < nr_grant_frames; i++ )
> + {
> + xatp.domid = DOMID_SELF;
> + xatp.idx = i;
> + xatp.space = XENMAPSPACE_grant_table;
> + xatp.gpfn = pfn + i;
> + rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp);
> + if ( rc )
> + {
> + xprintk("could not init grant table\n");
> + do_exit();
> + }
> + frames[i] = pfn + i;
> + }
> +
> + return map_frames(frames, nr_grant_frames);
> +}
> +#endif
>
> void arch_suspend_gnttab(grant_entry_v1_t *gnttab_table, int nr_grant_frames)
> {
> --
> 2.26.2
>
--
Samuel
> Il [e2fsck] a bien démarré, mais il m'a rendu la main aussitot en me
> disant "houlala, c'est pas beau à voir votre truc, je préfèrerai que
> vous teniez vous même la tronçonneuse" (traduction libre)
NC in Guide du linuxien pervers : "Bien configurer sa tronçonneuse."
next prev parent reply other threads:[~2021-12-12 0:43 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-06 7:23 [PATCH 00/10] mini-os: add missing PVH features Juergen Gross
2021-12-06 7:23 ` [PATCH 01/10] mini-os: split e820 map handling into new source file Juergen Gross
2021-12-11 23:56 ` Samuel Thibault
2021-12-06 7:23 ` [PATCH 02/10] mini-os: sort and sanitize e820 memory map Juergen Gross
2021-12-12 0:05 ` Samuel Thibault
2021-12-13 14:56 ` Juergen Gross
2021-12-13 21:19 ` Samuel Thibault
2021-12-14 6:33 ` Juergen Gross
2021-12-06 7:23 ` [PATCH 03/10] mini-os: don't assume contiguous RAM when initializing in PVH mode Juergen Gross
2021-12-12 0:15 ` Samuel Thibault
2021-12-13 14:58 ` Juergen Gross
2021-12-13 21:22 ` Samuel Thibault
2021-12-14 6:35 ` Juergen Gross
2021-12-14 7:40 ` Samuel Thibault
2021-12-06 7:23 ` [PATCH 04/10] mini-os: respect memory map when ballooning up Juergen Gross
2021-12-12 0:26 ` Samuel Thibault
2021-12-13 15:05 ` Juergen Gross
2021-12-06 7:23 ` [PATCH 05/10] mini-os: don't repeat definition available via header file Juergen Gross
2021-12-12 0:27 ` Samuel Thibault
2021-12-06 7:23 ` [PATCH 06/10] mini-os: add memory map service functions Juergen Gross
2021-12-12 0:37 ` Samuel Thibault
2021-12-06 7:23 ` [PATCH 07/10] mini-os: move x86 specific gnttab coding into arch/x86/gnttab.c Juergen Gross
2021-12-12 0:41 ` Samuel Thibault
2021-12-06 7:23 ` [PATCH 08/10] mini-os: add proper pvh grant table handling Juergen Gross
2021-12-12 0:43 ` Samuel Thibault [this message]
2021-12-06 7:23 ` [PATCH 09/10] mini-os: prepare grantmap entry interface for use by PVH mode Juergen Gross
2021-12-12 0:50 ` Samuel Thibault
2021-12-06 7:23 ` [PATCH 10/10] mini-os: modify grant mappings to work in " Juergen Gross
2021-12-12 0:51 ` Samuel Thibault
2021-12-06 12:46 ` [PATCH] mini-os: support event channel 0 for console Juergen Gross
2021-12-06 13:24 ` Jan Beulich
2021-12-06 13:30 ` Juergen Gross
2021-12-06 14:17 ` Juergen Gross
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211212004328.ozyid2zh4fapcnit@begin \
--to=samuel.thibault@ens-lyon.org \
--cc=jgross@suse.com \
--cc=minios-devel@lists.xenproject.org \
--cc=wl@xen.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.