xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] xen: arm: Select ramdisk bootmodule early enough when building dom0
@ 2014-07-26  8:04 Ian Campbell
  2014-07-26 21:31 ` Julien Grall
  0 siblings, 1 reply; 3+ messages in thread
From: Ian Campbell @ 2014-07-26  8:04 UTC (permalink / raw)
  To: xen-devel; +Cc: julien.grall, tim, Ian Campbell, stefano.stabellini

I thought in 0040b649d6df "xen: arm: Only lookup kernel/initrd bootmodule once
while building dom0" that I had identified place_modules as being soon enough,
but I was wrong, since write_properties wants to use it sooner.

Select the initrd boot module in kernel_probe at the same time we select the
kernel to avoid all this.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
 xen/arch/arm/kernel.c |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/xen/arch/arm/kernel.c b/xen/arch/arm/kernel.c
index 6912abd..31a9a85 100644
--- a/xen/arch/arm/kernel.c
+++ b/xen/arch/arm/kernel.c
@@ -68,7 +68,7 @@ static void place_modules(struct kernel_info *info,
                           paddr_t kernbase, paddr_t kernend)
 {
     /* Align DTB and initrd size to 2Mb. Linux only requires 4 byte alignment */
-    const struct bootmodule *mod = boot_module_find_by_kind(BOOTMOD_RAMDISK);
+    const struct bootmodule *mod = info->initrd_bootmodule;
     const paddr_t initrd_len = ROUNDUP(mod ? mod->size : 0, MB(2));
     const paddr_t dtb_len = ROUNDUP(fdt_totalsize(info->fdt), MB(2));
     const paddr_t modsize = initrd_len + dtb_len;
@@ -116,7 +116,6 @@ static void place_modules(struct kernel_info *info,
 
     info->dtb_paddr = modbase;
     info->initrd_paddr = info->dtb_paddr + dtb_len;
-    info->initrd_bootmodule = mod;
 }
 
 static paddr_t kernel_zimage_place(struct kernel_info *info)
@@ -390,6 +389,11 @@ int kernel_probe(struct kernel_info *info)
 
     printk("Loading kernel from boot module @ %"PRIpaddr"\n", start);
 
+    info->initrd_bootmodule = boot_module_find_by_kind(BOOTMOD_RAMDISK);
+    if ( info->initrd_bootmodule )
+        printk("Loading ramdisk from boot module @ %"PRIpaddr"\n",
+               info->initrd_bootmodule->start);
+
 #ifdef CONFIG_ARM_64
     rc = kernel_image64_probe(info, start, size);
     if (rc < 0)
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] xen: arm: Select ramdisk bootmodule early enough when building dom0
  2014-07-26  8:04 [PATCH] xen: arm: Select ramdisk bootmodule early enough when building dom0 Ian Campbell
@ 2014-07-26 21:31 ` Julien Grall
  2014-07-27  8:42   ` Ian Campbell
  0 siblings, 1 reply; 3+ messages in thread
From: Julien Grall @ 2014-07-26 21:31 UTC (permalink / raw)
  To: Ian Campbell, xen-devel; +Cc: tim, stefano.stabellini

Hi Ian,

On 26/07/14 09:04, Ian Campbell wrote:
> I thought in 0040b649d6df "xen: arm: Only lookup kernel/initrd bootmodule once
> while building dom0" that I had identified place_modules as being soon enough,
> but I was wrong, since write_properties wants to use it sooner.
>
> Select the initrd boot module in kernel_probe at the same time we select the
> kernel to avoid all this.
>
> Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Julien Grall <julien.grall@linaro.org>

Regards,

> ---
>   xen/arch/arm/kernel.c |    8 ++++++--
>   1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/xen/arch/arm/kernel.c b/xen/arch/arm/kernel.c
> index 6912abd..31a9a85 100644
> --- a/xen/arch/arm/kernel.c
> +++ b/xen/arch/arm/kernel.c
> @@ -68,7 +68,7 @@ static void place_modules(struct kernel_info *info,
>                             paddr_t kernbase, paddr_t kernend)
>   {
>       /* Align DTB and initrd size to 2Mb. Linux only requires 4 byte alignment */
> -    const struct bootmodule *mod = boot_module_find_by_kind(BOOTMOD_RAMDISK);
> +    const struct bootmodule *mod = info->initrd_bootmodule;
>       const paddr_t initrd_len = ROUNDUP(mod ? mod->size : 0, MB(2));
>       const paddr_t dtb_len = ROUNDUP(fdt_totalsize(info->fdt), MB(2));
>       const paddr_t modsize = initrd_len + dtb_len;
> @@ -116,7 +116,6 @@ static void place_modules(struct kernel_info *info,
>
>       info->dtb_paddr = modbase;
>       info->initrd_paddr = info->dtb_paddr + dtb_len;
> -    info->initrd_bootmodule = mod;
>   }
>
>   static paddr_t kernel_zimage_place(struct kernel_info *info)
> @@ -390,6 +389,11 @@ int kernel_probe(struct kernel_info *info)
>
>       printk("Loading kernel from boot module @ %"PRIpaddr"\n", start);
>
> +    info->initrd_bootmodule = boot_module_find_by_kind(BOOTMOD_RAMDISK);
> +    if ( info->initrd_bootmodule )
> +        printk("Loading ramdisk from boot module @ %"PRIpaddr"\n",
> +               info->initrd_bootmodule->start);
> +
>   #ifdef CONFIG_ARM_64
>       rc = kernel_image64_probe(info, start, size);
>       if (rc < 0)
>

-- 
Julien Grall

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] xen: arm: Select ramdisk bootmodule early enough when building dom0
  2014-07-26 21:31 ` Julien Grall
@ 2014-07-27  8:42   ` Ian Campbell
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Campbell @ 2014-07-27  8:42 UTC (permalink / raw)
  To: Julien Grall; +Cc: stefano.stabellini, tim, xen-devel


On Sat, 2014-07-26 at 22:31 +0100, Julien Grall wrote:
> Hi Ian,
> 
> On 26/07/14 09:04, Ian Campbell wrote:
> > I thought in 0040b649d6df "xen: arm: Only lookup kernel/initrd bootmodule once
> > while building dom0" that I had identified place_modules as being soon enough,
> > but I was wrong, since write_properties wants to use it sooner.
> >
> > Select the initrd boot module in kernel_probe at the same time we select the
> > kernel to avoid all this.
> >
> > Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
> Acked-by: Julien Grall <julien.grall@linaro.org>

Thanks, I've applied this since the issue is causing osstest failures.

Ian.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-07-27  8:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-26  8:04 [PATCH] xen: arm: Select ramdisk bootmodule early enough when building dom0 Ian Campbell
2014-07-26 21:31 ` Julien Grall
2014-07-27  8:42   ` Ian Campbell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).