public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] x86: Add UV EFI table entry
@ 2008-08-22 21:51 Russ Anderson
  0 siblings, 0 replies; 3+ messages in thread
From: Russ Anderson @ 2008-08-22 21:51 UTC (permalink / raw)
  To: linux-kernel, mingo, tglx; +Cc: Russ Anderson, Jack Steiner

[PATCH 1/4] x86: Add UV EFI table entry

Look for a SAL entry in the EFI tables.

Signed-off-by: Russ Anderson <rja@sgi.com>
Signed-off-by: Paul Jackson <pj@sgi.com>

---
 arch/x86/kernel/efi.c |    4 ++++
 1 file changed, 4 insertions(+)

Index: linux/arch/x86/kernel/efi.c
===================================================================
--- linux.orig/arch/x86/kernel/efi.c	2008-08-22 14:49:44.000000000 -0500
+++ linux/arch/x86/kernel/efi.c	2008-08-22 14:50:10.000000000 -0500
@@ -367,6 +367,10 @@ void __init efi_init(void)
 			efi.smbios = config_tables[i].table;
 			printk(" SMBIOS=0x%lx ", config_tables[i].table);
 		} else if (!efi_guidcmp(config_tables[i].guid,
+					SAL_SYSTEM_TABLE_GUID)) {
+			efi.sal_systab = config_tables[i].table;
+			printk(" SALsystab=0x%lx ", config_tables[i].table);
+		} else if (!efi_guidcmp(config_tables[i].guid,
 					HCDP_TABLE_GUID)) {
 			efi.hcdp = config_tables[i].table;
 			printk(" HCDP=0x%lx ", config_tables[i].table);
-- 
Russ Anderson, OS RAS/Partitioning Project Lead  
SGI - Silicon Graphics Inc          rja@sgi.com

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

* [PATCH 1/4] x86: Add UV EFI table entry
@ 2008-09-22 21:08 Russ Anderson
  2008-09-23 11:07 ` Ingo Molnar
  0 siblings, 1 reply; 3+ messages in thread
From: Russ Anderson @ 2008-09-22 21:08 UTC (permalink / raw)
  To: linux-kernel, mingo, tglx; +Cc: H. Peter Anvin, Jack Steiner, Russ Anderson

[PATCH 1/4] Add UV EFI table entry

Look for a SAL entry in the EFI tables.

Signed-off-by: Russ Anderson <rja@sgi.com>
Signed-off-by: Paul Jackson <pj@sgi.com>

---
 arch/x86/kernel/efi.c |    4 ++++
 1 file changed, 4 insertions(+)

Index: linux/arch/x86/kernel/efi.c
===================================================================
--- linux.orig/arch/x86/kernel/efi.c	2008-09-22 16:01:00.000000000 -0500
+++ linux/arch/x86/kernel/efi.c	2008-09-22 16:01:07.000000000 -0500
@@ -367,6 +367,10 @@ void __init efi_init(void)
 			efi.smbios = config_tables[i].table;
 			printk(" SMBIOS=0x%lx ", config_tables[i].table);
 		} else if (!efi_guidcmp(config_tables[i].guid,
+					SAL_SYSTEM_TABLE_GUID)) {
+			efi.sal_systab = config_tables[i].table;
+			printk(" SALsystab=0x%lx ", config_tables[i].table);
+		} else if (!efi_guidcmp(config_tables[i].guid,
 					HCDP_TABLE_GUID)) {
 			efi.hcdp = config_tables[i].table;
 			printk(" HCDP=0x%lx ", config_tables[i].table);
-- 
Russ Anderson, OS RAS/Partitioning Project Lead  
SGI - Silicon Graphics Inc          rja@sgi.com

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

* Re: [PATCH 1/4] x86: Add UV EFI table entry
  2008-09-22 21:08 Russ Anderson
@ 2008-09-23 11:07 ` Ingo Molnar
  0 siblings, 0 replies; 3+ messages in thread
From: Ingo Molnar @ 2008-09-23 11:07 UTC (permalink / raw)
  To: Russ Anderson, Ying Huang
  Cc: linux-kernel, tglx, H. Peter Anvin, Jack Steiner


(Cc:-ed Ying Huang.)

* Russ Anderson <rja@sgi.com> wrote:

> [PATCH 1/4] Add UV EFI table entry
> 
> Look for a SAL entry in the EFI tables.
> 
> Signed-off-by: Russ Anderson <rja@sgi.com>
> Signed-off-by: Paul Jackson <pj@sgi.com>
> 
> ---
>  arch/x86/kernel/efi.c |    4 ++++
>  1 file changed, 4 insertions(+)
> 
> Index: linux/arch/x86/kernel/efi.c
> ===================================================================
> --- linux.orig/arch/x86/kernel/efi.c	2008-09-22 16:01:00.000000000 -0500
> +++ linux/arch/x86/kernel/efi.c	2008-09-22 16:01:07.000000000 -0500
> @@ -367,6 +367,10 @@ void __init efi_init(void)
>  			efi.smbios = config_tables[i].table;
>  			printk(" SMBIOS=0x%lx ", config_tables[i].table);
>  		} else if (!efi_guidcmp(config_tables[i].guid,
> +					SAL_SYSTEM_TABLE_GUID)) {
> +			efi.sal_systab = config_tables[i].table;
> +			printk(" SALsystab=0x%lx ", config_tables[i].table);
> +		} else if (!efi_guidcmp(config_tables[i].guid,
>  					HCDP_TABLE_GUID)) {
>  			efi.hcdp = config_tables[i].table;
>  			printk(" HCDP=0x%lx ", config_tables[i].table);
> -- 
> Russ Anderson, OS RAS/Partitioning Project Lead  
> SGI - Silicon Graphics Inc          rja@sgi.com

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

end of thread, other threads:[~2008-09-23 11:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-22 21:51 [PATCH 1/4] x86: Add UV EFI table entry Russ Anderson
  -- strict thread matches above, loose matches on Subject: below --
2008-09-22 21:08 Russ Anderson
2008-09-23 11:07 ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox