[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v3 06/19] acpi/hvmloader: Replace mem_alloc() and virt_to_phys() with memory ops
>>> On 07.09.16 at 20:59, <boris.ostrovsky@xxxxxxxxxx> wrote: > Components that wish to use ACPI builder will need to provide their own > mem_alloc() and virt_to_phys() routines. Pointers to these routines will > be passed to the builder as memory ops. > > Signed-off-by: Boris Ostrovsky <boris.ostrovsky@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> Albeit I'd prefer if ... > --- a/tools/firmware/hvmloader/util.c > +++ b/tools/firmware/hvmloader/util.c > @@ -866,10 +866,27 @@ static uint8_t battery_port_exists(void) > return (inb(0x88) == 0x1F); > } > > +static unsigned long acpi_v2p(struct acpi_ctxt *ctxt, void *v) > +{ > + return virt_to_phys(v); > +} > + > +static void *acpi_mem_alloc(struct acpi_ctxt *ctxt, > + uint32_t size, uint32_t align) > +{ > + return mem_alloc(size, align); > +} > + > +static void acpi_mem_free(struct acpi_ctxt *ctxt, > + void *v, uint32_t size) > +{ > +} ... the body of this function was actually a brief comment, clarifying why this does nothing. Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |