public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix amd64-agp aperture validation
@ 2007-03-29  7:58 Jan Beulich
  2007-03-29 10:00 ` [patches] " Andi Kleen
  2007-03-29 17:08 ` Muli Ben-Yehuda
  0 siblings, 2 replies; 3+ messages in thread
From: Jan Beulich @ 2007-03-29  7:58 UTC (permalink / raw)
  To: linux-kernel, patches; +Cc: mark.langsdorf

Under CONFIG_DISCONTIGMEM, assuming that a !pfn_valid() implies all
subsequent pfn-s are also invalid is wrong. Thus replace this by
explicitly checking against the E820 map.

Signed-off-by: Jan Beulich <jbeulich@novell.com>
Acked-by: Mark Langsdorf <mark.langsdorf@amd.com>

--- linux-2.6.21-rc5/arch/i386/kernel/e820.c	2007-03-26 15:20:01.000000000 +0200
+++ 2.6.21-rc5-amd64-agp/arch/i386/kernel/e820.c	2007-03-28 15:32:24.000000000 +0200
@@ -818,6 +818,26 @@ void __init limit_regions(unsigned long 
 	print_memory_map("limit_regions endfunc");
 }
 
+/*
+ * This function checks if any part of the range <start,end> is mapped
+ * with type.
+ */
+int
+e820_any_mapped(u64 start, u64 end, unsigned type)
+{
+	int i;
+	for (i = 0; i < e820.nr_map; i++) {
+		const struct e820entry *ei = &e820.map[i];
+		if (type && ei->type != type)
+			continue;
+		if (ei->addr >= end || ei->addr + ei->size <= start)
+			continue;
+		return 1;
+	}
+	return 0;
+}
+EXPORT_SYMBOL_GPL(e820_any_mapped);
+
  /*
   * This function checks if the entire range <start,end> is mapped with type.
   *
--- linux-2.6.21-rc5/arch/x86_64/kernel/e820.c	2007-03-26 15:20:12.000000000 +0200
+++ 2.6.21-rc5-amd64-agp/arch/x86_64/kernel/e820.c	2007-03-28 15:26:08.000000000 +0200
@@ -98,7 +98,7 @@ static inline int bad_addr(unsigned long
  * This function checks if any part of the range <start,end> is mapped
  * with type.
  */
-int __meminit
+int
 e820_any_mapped(unsigned long start, unsigned long end, unsigned type)
 { 
 	int i;
@@ -112,6 +112,7 @@ e820_any_mapped(unsigned long start, uns
 	} 
 	return 0;
 }
+EXPORT_SYMBOL_GPL(e820_any_mapped);
 
 /*
  * This function checks if the entire range <start,end> is mapped with type.
--- linux-2.6.21-rc5/drivers/char/agp/amd64-agp.c	2007-03-26 15:20:14.000000000 +0200
+++ 2.6.21-rc5-amd64-agp/drivers/char/agp/amd64-agp.c	2007-03-28 15:20:49.000000000 +0200
@@ -14,6 +14,7 @@
 #include <linux/agp_backend.h>
 #include <linux/mmzone.h>
 #include <asm/page.h>		/* PAGE_SIZE */
+#include <asm/e820.h>
 #include <asm/k8.h>
 #include "agp.h"
 
@@ -259,7 +260,6 @@ static const struct agp_bridge_driver am
 /* Some basic sanity checks for the aperture. */
 static int __devinit aperture_valid(u64 aper, u32 size)
 {
-	u32 pfn, c;
 	if (aper == 0) {
 		printk(KERN_ERR PFX "No aperture\n");
 		return 0;
@@ -272,14 +272,9 @@ static int __devinit aperture_valid(u64 
 		printk(KERN_ERR PFX "Aperture out of bounds\n");
 		return 0;
 	}
-	pfn = aper >> PAGE_SHIFT;
-	for (c = 0; c < size/PAGE_SIZE; c++) {
-		if (!pfn_valid(pfn + c))
-			break;
-		if (!PageReserved(pfn_to_page(pfn + c))) {
-			printk(KERN_ERR PFX "Aperture pointing to RAM\n");
-			return 0;
-		}
+	if (e820_any_mapped(aper, aper + size, E820_RAM)) {
+		printk(KERN_ERR PFX "Aperture pointing to RAM\n");
+		return 0;
 	}
 
 	/* Request the Aperture. This catches cases when someone else
--- linux-2.6.21-rc5/include/asm-i386/e820.h	2007-02-04 19:44:54.000000000 +0100
+++ 2.6.21-rc5-amd64-agp/include/asm-i386/e820.h	2007-03-28 15:21:47.000000000 +0200
@@ -38,6 +38,7 @@ extern struct e820map e820;
 
 extern int e820_all_mapped(unsigned long start, unsigned long end,
 			   unsigned type);
+extern int e820_any_mapped(u64 start, u64 end, unsigned type);
 extern void find_max_pfn(void);
 extern void register_bootmem_low_pages(unsigned long max_low_pfn);
 extern void e820_register_memory(void);



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

* Re: [patches] [PATCH] fix amd64-agp aperture validation
  2007-03-29  7:58 [PATCH] fix amd64-agp aperture validation Jan Beulich
@ 2007-03-29 10:00 ` Andi Kleen
  2007-03-29 17:08 ` Muli Ben-Yehuda
  1 sibling, 0 replies; 3+ messages in thread
From: Andi Kleen @ 2007-03-29 10:00 UTC (permalink / raw)
  To: patches; +Cc: Jan Beulich, linux-kernel, mark.langsdorf

On Thursday 29 March 2007 09:58, Jan Beulich wrote:
> Under CONFIG_DISCONTIGMEM, assuming that a !pfn_valid() implies all
> subsequent pfn-s are also invalid is wrong. Thus replace this by
> explicitly checking against the E820 map.

Applied thanks.
-Andi

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

* Re: [PATCH] fix amd64-agp aperture validation
  2007-03-29  7:58 [PATCH] fix amd64-agp aperture validation Jan Beulich
  2007-03-29 10:00 ` [patches] " Andi Kleen
@ 2007-03-29 17:08 ` Muli Ben-Yehuda
  1 sibling, 0 replies; 3+ messages in thread
From: Muli Ben-Yehuda @ 2007-03-29 17:08 UTC (permalink / raw)
  To: Jan Beulich; +Cc: linux-kernel, mark.langsdorf

On Thu, Mar 29, 2007 at 08:58:00AM +0100, Jan Beulich wrote:

> Under CONFIG_DISCONTIGMEM, assuming that a !pfn_valid() implies all
> subsequent pfn-s are also invalid is wrong. Thus replace this by
> explicitly checking against the E820 map.
> 
> Signed-off-by: Jan Beulich <jbeulich@novell.com>
> Acked-by: Mark Langsdorf <mark.langsdorf@amd.com>
> 
> --- linux-2.6.21-rc5/drivers/char/agp/amd64-agp.c	2007-03-26 15:20:14.000000000 +0200
> +++ 2.6.21-rc5-amd64-agp/drivers/char/agp/amd64-agp.c	2007-03-28 15:20:49.000000000 +0200
> @@ -14,6 +14,7 @@
>  #include <linux/agp_backend.h>
>  #include <linux/mmzone.h>
>  #include <asm/page.h>		/* PAGE_SIZE */
> +#include <asm/e820.h>
>  #include <asm/k8.h>
>  #include "agp.h"
>  
> @@ -259,7 +260,6 @@ static const struct agp_bridge_driver am
>  /* Some basic sanity checks for the aperture. */
>  static int __devinit aperture_valid(u64 aper, u32 size)
>  {
> -	u32 pfn, c;
>  	if (aper == 0) {
>  		printk(KERN_ERR PFX "No aperture\n");
>  		return 0;
> @@ -272,14 +272,9 @@ static int __devinit aperture_valid(u64 
>  		printk(KERN_ERR PFX "Aperture out of bounds\n");
>  		return 0;
>  	}
> -	pfn = aper >> PAGE_SHIFT;
> -	for (c = 0; c < size/PAGE_SIZE; c++) {
> -		if (!pfn_valid(pfn + c))
> -			break;
> -		if (!PageReserved(pfn_to_page(pfn + c))) {
> -			printk(KERN_ERR PFX "Aperture pointing to RAM\n");
> -			return 0;
> -		}
> +	if (e820_any_mapped(aper, aper + size, E820_RAM)) {
> +		printk(KERN_ERR PFX "Aperture pointing to RAM\n");
> +		return 0;
>  	}

This pretty much duplicates the checking done in
arch/x86-64/kernel/aperture.c:aperture_valid(), with slight variations
(e.g., 32MB vs. 64MB aperture size). Should these two functions be
consolidated?

Cheers,
Muli

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

end of thread, other threads:[~2007-03-29 17:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-29  7:58 [PATCH] fix amd64-agp aperture validation Jan Beulich
2007-03-29 10:00 ` [patches] " Andi Kleen
2007-03-29 17:08 ` Muli Ben-Yehuda

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