Re: [PATCH v2 09/10] RISC-V: Add to build system

2018-11-15 Thread Bin Meng
Hi Alex, On Thu, Nov 15, 2018 at 6:02 PM Alexander Graf wrote: > > > > On 15.11.18 02:48, Bin Meng wrote: > > Hi Alex, > > > > On Thu, Nov 15, 2018 at 1:02 AM Alexander Graf wrote: > >> > >> On 11/14/2018 04:34 PM, Bin Meng wrote: > >>> On Wed, Nov 14, 2018 at 11:28 PM Andreas Schwab wrote: > >

Re: [PATCH 0/5] Fix non-x86 builds after verifiers framework merged

2018-11-15 Thread Fu Wei Fu
Hi Leif, Great thanks for your information, will do ASAP when I am back home. On Thu, 15 Nov 2018 at 03:29, Leif Lindholm wrote: > > The verifiers framework caused some breakage for non-x86 > platforms that need fixing. > > Basically, this boils down to: > - Add an include guard for verify.h. > -

[PATCH v6 0/2] btrfs: Add zstd support to grub btrfs

2018-11-15 Thread Nick Terrell
Hi all, This patch set imports the upstream zstd library, adds zstd support to the btrfs module, and adds a test case. I've also tested the patch set by storing my boot partition in btrfs with and without zstd compression and rebooting. Best, Nick Terrell Changelog: v1 -> v2: - Switch to upstre

[PATCH v6 2/2] btrfs: Add zstd support to grub btrfs

2018-11-15 Thread Nick Terrell
- Adds zstd support to the btrfs module. - Adds a test case for btrfs zstd support. - Changes top_srcdir to srcdir in the btrfs module's lzo include following comments from Daniel Kiper about the zstd include. Tested on Ubuntu-18.04 with a btrfs /boot partition with and without zstd compression.

[PATCH v2] verifiers: fix double close on pgp's sig file descriptor

2018-11-15 Thread Michael Chang
An error emerged as when I was tesing the verifiers branch, so instead of putting it in pgp prefix, the verifiers is used to reflect what the patch is based on. While running verify_detached, grub aborts with error. verify_detached /@/.snapshots/1/snapshot/boot/grub/grub.cfg /@/.snapshots/1/snaps

Re: [Xen-devel] [PATCH v4 14/19] xen: init memory regions for PVH

2018-11-15 Thread Roger Pau Monné
On Fri, Nov 02, 2018 at 01:37:33PM +0100, Juergen Gross wrote: > Add all usable memory regions to grub memory management and add the > needed mmap iterate code, which will be used by grub core (e.g. > grub-core/lib/relocator.c or grub-core/mmap/mmap.c). > > As we are running in 32-bit mode don't a

Re: [Xen-devel] [PATCH v4 13/19] xen: setup Xen specific data for PVH

2018-11-15 Thread Roger Pau Monné
On Fri, Nov 02, 2018 at 01:37:32PM +0100, Juergen Gross wrote: > Initialize the needed Xen specific data. This is: > > - the Xen start of day page containing the console and Xenstore ring > page PFN and event channel > - the grant table > - the shared info page > > Write back the possibly modif

Re: [PATCH v2 09/10] RISC-V: Add to build system

2018-11-15 Thread Alexander Graf
On 15.11.18 02:48, Bin Meng wrote: > Hi Alex, > > On Thu, Nov 15, 2018 at 1:02 AM Alexander Graf wrote: >> >> On 11/14/2018 04:34 PM, Bin Meng wrote: >>> On Wed, Nov 14, 2018 at 11:28 PM Andreas Schwab wrote: On Nov 14 2018, Bin Meng wrote: > - use riscv32-* toolchain to build

Re: [PATCH] verifiers: fix double close on pgp's sig file descriptor

2018-11-15 Thread Michael Chang
On Wed, Nov 14, 2018 at 05:23:58PM +0100, Daniel Kiper wrote: > On Tue, Nov 13, 2018 at 02:31:18PM +0800, Michael Chang wrote: > > An error emerged as when I was tesing the verifiers branch, so instead > > of putting it in pgp prefix, the verifiers is used to reflect what the > > patch is based on.

Re: [Xen-devel] [PATCH v4 11/19] xen: get memory map from hypervisor for PVH

2018-11-15 Thread Roger Pau Monné
On Fri, Nov 02, 2018 at 01:37:30PM +0100, Juergen Gross wrote: > Retrieve the memory map from the hypervisor and normalize it to contain > no overlapping entries and to be sorted by address. > > Signed-off-by: Juergen Gross > --- > V3: use grub_e820_mmap_entry instead of own struct (Daniel Kiper)

Re: [Xen-devel] [PATCH v4 10/19] xen: setup hypercall page for PVH

2018-11-15 Thread Roger Pau Monné
On Fri, Nov 02, 2018 at 01:37:29PM +0100, Juergen Gross wrote: > Add the needed code to setup the hypercall page for calling into the > Xen hypervisor. > > Signed-off-by: Juergen Gross Thanks, LGTM, just one suggestion and one question. > --- > V3: grub_xen_early_halt->grub_xen_panic (Roger Pau