Kexec Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Dave Young <dyoung@redhat.com>
To: Matt Fleming <matt@console-pimps.org>
Cc: mjg59@srcf.ucam.org, linux-efi@vger.kernel.org,
	toshi.kani@hp.com, greg@kroah.com, x86@kernel.org,
	kexec@lists.infradead.org, linux-kernel@vger.kernel.org,
	James.Bottomley@HansenPartnership.com, horms@verge.net.au,
	Borislav Petkov <bp@alien8.de>,
	ebiederm@xmission.com, hpa@zytor.com, vgoyal@redhat.com
Subject: Re: [PATCH v5 08/14] efi: export efi runtime memory mapping to sysfs
Date: Mon, 16 Dec 2013 11:02:29 +0800	[thread overview]
Message-ID: <20131216030229.GA7408@dhcp-16-126.nay.redhat.com> (raw)
In-Reply-To: <20131216013319.GA3754@dhcp-16-126.nay.redhat.com>

On 12/16/13 at 09:33am, Dave Young wrote:
> On 12/13/13 at 12:30pm, Matt Fleming wrote:
> > On Fri, 13 Dec, at 03:26:00PM, Dave Young wrote:
> > > On 12/12/13 at 09:53pm, Borislav Petkov wrote:
> > > > On Thu, Dec 12, 2013 at 10:36:17AM +0800, Dave Young wrote:
> > > > > Sorry that I forgot to explain this in changelog, should ask you before.
> > > > > 
> > > > > I did try moving it to efisubsys_init but it need add extern declaration
> > > > 
> > > > So what? Add it.
> > > > 
> > > > > for efi_runtime_map_init. Since link order will ensure it being called after
> > > > > efisubsys_init I think it's fine with this static function.
> > > > 
> > > > This is actually exactly the reason why it shouldn't be another
> > > > subsys_initcall() if it can be helped. People would need to go have a
> > > > look at drivers/firmware/efi/Makefile to realize that the link order is
> > > > ok.
> > > > 
> > > > And, this is prone to future breakage if people go and move code around
> > > > and thereby change the link order.
> > > > 
> > > > Please call efi_runtime_map_init from efisubsys_init.
> > > 
> > > After moving to efisubsys_init, the code will looks like below, because
> 
> Will call it in efi_subsys_init as what I replied previously.

Actually change a bit from your below suggestion.

> 
> > > the funtion only is used in drivers/firmware/efi/efi.c thus I can not
> > > add a blank function in #else section in the efi.h header file. Creating
> > > another header file for this one function looks bad to me.
> > 
> > I agree with Borislav that this should be invoked from efisubsys_init().
> > Also Dave, there's nothing inherently x86-specific about runtime-map.c -
> > we've been trying not to dump arch-specific code in
> > drivers/firmware/efi/.
> > 
> > How about something like this, just to give you an idea? This would
> > allow the ARM/ia64 folks to enable this code if they want at some later
> > date. But more than that, it makes the code more self-contained and uses
> > some real interfaces instead of relying on global variables,
> > 
> > (not compile tested)
> 
> Thanks for the good idea, will tune and test the code.
> 
> > diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c
> > index 94a1cbcf6e2e..f45ea41deae0 100644
> > --- a/arch/x86/platform/efi/efi.c
> > +++ b/arch/x86/platform/efi/efi.c
> > @@ -76,8 +76,8 @@ static __initdata efi_config_table_type_t arch_tables[] = {
> >  	{NULL_GUID, NULL, NULL},
> >  };
> >  
> > -void *efi_runtime_map;
> > -int nr_efi_runtime_map;
> > +static void *efi_runtime_map;
> > +static int nr_efi_runtime_map;
> >  static u64 efi_setup; /* efi setup_data physical address */
> >  
> >  /*
> > @@ -1084,6 +1084,9 @@ void __init efi_enter_virtual_mode(void)
> >  		}
> >  	}
> >  
> > +	efi_runtime_map_setup(efi_runtime_map, nr_efi_runtime_map,
> > +			      boot_params.efi_info.efi_memdesc_size);
> > +
> >  	BUG_ON(!efi.systab);
> >  
> >  	efi_setup_page_tables();
> > diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c
> > index 0a288e306252..9870eb55d0e5 100644
> > --- a/drivers/firmware/efi/efi.c
> > +++ b/drivers/firmware/efi/efi.c
> > @@ -38,8 +38,7 @@ struct efi __read_mostly efi = {
> >  };
> >  EXPORT_SYMBOL(efi);
> >  
> > -struct kobject *efi_kobj;
> > -EXPORT_SYMBOL_GPL(efi_kobj);
> > +static struct kobject *efi_kobj;
> >  static struct kobject *efivars_kobj;
> >  
> >  /*
> > @@ -176,6 +175,8 @@ static int __init efisubsys_init(void)
> >  		goto err_remove_group;
> >  	}
> >  
> > +	efi_runtime_map_init(efi_kobj);

Will add #ifdef CONFIG_EFI_RUNTIME_MAP around above line and add
error handling

Also will update the usage of gloable efi_kobj, pass it via function
parameter.

> > +
> >  	return 0;
> >  
> >  err_remove_group:
> > diff --git a/drivers/firmware/efi/runtime-map.c b/drivers/firmware/efi/runtime-map.c
> > index e5e998494d8a..ef9631e9c03e 100644
> > --- a/drivers/firmware/efi/runtime-map.c
> > +++ b/drivers/firmware/efi/runtime-map.c
> > @@ -14,6 +14,10 @@
> >  
> >  #include <asm/setup.h>
> >  
> > +static void *efi_runtime_map;
> > +static int nr_efi_runtime_map;
> > +static u32 efi_memdesc_size;
> > + 
> >  struct efi_runtime_map_entry {
> >  	efi_memory_desc_t md;
> >  	struct kobject kobj;   /* kobject for each entry */
> > @@ -105,7 +109,6 @@ static struct efi_runtime_map_entry *add_sysfs_runtime_map_entry(int nr)
> >  {
> >  	int ret;
> >  	struct efi_runtime_map_entry *entry;
> > -	struct efi_info *e = &boot_params.efi_info;
> >  
> >  	if (!map_kset) {
> >  		map_kset = kset_create_and_add("runtime-map", NULL,
> > @@ -120,7 +123,7 @@ static struct efi_runtime_map_entry *add_sysfs_runtime_map_entry(int nr)
> >  		return entry;
> >  	}
> >  
> > -	memcpy(&entry->md, efi_runtime_map + nr * e->efi_memdesc_size,
> > +	memcpy(&entry->md, efi_runtime_map + nr * efi_memdesc_size,
> >  	       sizeof(efi_memory_desc_t));
> >  
> >  	kobject_init(&entry->kobj, &map_ktype);
> > @@ -135,7 +138,14 @@ static struct efi_runtime_map_entry *add_sysfs_runtime_map_entry(int nr)
> >  	return entry;
> >  }
> >  
> > -static int __init efi_runtime_map_init(void)
> > +int efi_runtime_map_setup(void *map, int nr_entries, u32 desc_size)

Will change it to void instead of return int 

> > +{
> > +	efi_runtime_map = map;
> > +	nr_efi_runtime_map = nr_entries;
> > +	efi_memdesc_size = desc_size;
> > +}
> > +
> > +int __init efi_runtime_map_init(struct kobject *efi_kobj)
> >  {
> >  	int i, j, ret = 0;
> >  	struct efi_runtime_map_entry *entry;
> > @@ -172,5 +182,3 @@ out_add_entry:
> >  out:
> >  	return ret;
> >  }
> > -
> > -subsys_initcall(efi_runtime_map_init);
> > diff --git a/include/linux/efi.h b/include/linux/efi.h
> > index 4f1651d303b8..47e067044054 100644
> > --- a/include/linux/efi.h
> > +++ b/include/linux/efi.h
> > @@ -873,9 +873,8 @@ int efivars_sysfs_init(void);
> >  #endif /* CONFIG_EFI_VARS */
> >  
> >  #ifdef CONFIG_EFI_RUNTIME_MAP
> > -extern void *efi_runtime_map;
> > -extern int nr_efi_runtime_map;
> > -extern struct kobject *efi_kobj;
> > +int efi_runtime_map_init(struct kobject *);
> > +int efi_runtime_map_setup(void *, int, u32);

Will change to void.

> >  #endif
> >  
> >  #endif /* _LINUX_EFI_H */
> > 
> > -- 
> > Matt Fleming, Intel Open Source Technology Center

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

  reply	other threads:[~2013-12-16  3:03 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-09  9:42 [PATCH v5 00/14] kexec kernel efi runtime support Dave Young
2013-12-09  9:42 ` [PATCH v5 01/14] x86/mm: sparse warning fix for early_memremap Dave Young
2013-12-09 15:05   ` Borislav Petkov
2013-12-10  2:12     ` Dave Young
2013-12-11 10:20       ` Matt Fleming
2013-12-11 11:12         ` Borislav Petkov
2013-12-12  2:06           ` Dave Young
2013-12-09  9:42 ` [PATCH v5 02/14] efi: use early_memremap and early_memunmap Dave Young
2013-12-11 10:39   ` Matt Fleming
2013-12-11 11:02     ` Leif Lindholm
2013-12-11 11:32       ` Matt Fleming
2013-12-11 15:17         ` Mark Salter
2013-12-13 15:51           ` Leif Lindholm
2013-12-16  1:50             ` Dave Young
2013-12-12  2:04     ` Dave Young
2013-12-11 17:38   ` Borislav Petkov
2013-12-09  9:42 ` [PATCH v5 03/14] efi: remove unused variables in __map_region Dave Young
2013-12-09  9:42 ` [PATCH v5 04/14] efi: add a wrapper function efi_map_region_fixed Dave Young
2013-12-09  9:42 ` [PATCH v5 05/14] efi: reserve boot service fix Dave Young
2013-12-09  9:42 ` [PATCH v5 06/14] efi: cleanup efi_enter_virtual_mode function Dave Young
2013-12-09  9:42 ` [PATCH v5 07/14] efi: export more efi table variable to sysfs Dave Young
2013-12-11 18:32   ` Borislav Petkov
2013-12-12  2:15     ` Dave Young
2013-12-09  9:42 ` [PATCH v5 08/14] efi: export efi runtime memory mapping " Dave Young
2013-12-11 18:55   ` Borislav Petkov
2013-12-12  2:36     ` Dave Young
2013-12-12  7:13       ` Dave Young
2013-12-12 20:36         ` Borislav Petkov
2013-12-13  7:20           ` Dave Young
2013-12-12 20:53       ` Borislav Petkov
2013-12-13  7:26         ` Dave Young
2013-12-13 12:30           ` Matt Fleming
2013-12-16  1:33             ` Dave Young
2013-12-16  3:02               ` Dave Young [this message]
2013-12-16  6:02             ` Dave Young
2013-12-09  9:42 ` [PATCH v5 09/14] efi: passing kexec necessary efi data via setup_data Dave Young
2013-12-11 12:13   ` Matt Fleming
2013-12-11 14:05     ` Borislav Petkov
2013-12-12  2:11       ` Dave Young
2013-12-12  2:10     ` Dave Young
2013-12-11 22:20   ` Borislav Petkov
2013-12-12  3:06     ` Dave Young
2013-12-12  6:25       ` Dave Young
2013-12-12  7:17       ` Dave Young
2013-12-12 21:04         ` Borislav Petkov
2013-12-13  7:27           ` Dave Young
2013-12-09  9:42 ` [PATCH v5 10/14] efi: only print saved efi runtime maps instead of all memmap ranges for kexec Dave Young
2013-12-13 16:01   ` Borislav Petkov
2013-12-16  2:00     ` Dave Young
2013-12-16 11:33       ` Borislav Petkov
2013-12-17  6:34         ` Dave Young
2013-12-17 15:58           ` Borislav Petkov
2013-12-18  2:06             ` Dave Young
2013-12-09  9:42 ` [PATCH v5 11/14] x86: add xloadflags bit for efi runtime support on kexec Dave Young
2013-12-09  9:42 ` [PATCH v5 12/14] x86: export x86 boot_params to sysfs Dave Young
2013-12-13 20:04   ` Borislav Petkov
2013-12-09  9:42 ` [PATCH v5 13/14] x86: reserve setup_data ranges late after parsing memmap cmdline Dave Young
2013-12-13 20:04   ` Borislav Petkov
2013-12-09  9:42 ` [PATCH v5 14/14] x86: kdebugfs do not use __va for getting setup_data virt addr Dave Young
2013-12-10 23:25 ` [PATCH v5 00/14] kexec kernel efi runtime support Andrew Morton
2013-12-10 23:32   ` Borislav Petkov
2013-12-10 23:38     ` H. Peter Anvin
2013-12-11 12:37       ` Matt Fleming

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=20131216030229.GA7408@dhcp-16-126.nay.redhat.com \
    --to=dyoung@redhat.com \
    --cc=James.Bottomley@HansenPartnership.com \
    --cc=bp@alien8.de \
    --cc=ebiederm@xmission.com \
    --cc=greg@kroah.com \
    --cc=horms@verge.net.au \
    --cc=hpa@zytor.com \
    --cc=kexec@lists.infradead.org \
    --cc=linux-efi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matt@console-pimps.org \
    --cc=mjg59@srcf.ucam.org \
    --cc=toshi.kani@hp.com \
    --cc=vgoyal@redhat.com \
    --cc=x86@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox