Hello, the fix for this bug in 2.6.11-rc3 for this bug is wrong, I thought I posted the right one (that I already applied to all SUSE branches except the HEAD branch that probably is in sync with the inferior fix in mainline). Right fix is the below one. And then of course drop those useless -PAGE_SIZE in change_page_attr p->size parameter in the arch code. Exposing vmalloc.c internal knowledge of the guard-page-size into the arch code is an unnecssary breakage of the vmalloc abstraction and I've been very careful to avoid that and I thought I posted it too. It has been even quicker to fix it right for me in a single place than to hand edit the (not single) change_page_attr callers. I'd like the right fix to obsolete the hand editing of arch code in multiple places that breaks the layering. Thanks.
From: Andrea Arcangeli <[EMAIL PROTECTED]> Subject: reject zero page vm-area request, align size properly and hide the guard page from the callers like ioremap - this avoids a kernel crash due one more page being passed to change_page_attr Signed-off-by: Andrea Arcangeli <[EMAIL PROTECTED]> --- sl9.2/mm/vmalloc.c.~1~ 2004-12-04 01:44:23.352416128 +0100 +++ sl9.2/mm/vmalloc.c 2004-12-04 03:02:37.299827656 +0100 @@ -199,20 +199,22 @@ struct vm_struct *__get_vm_area(unsigned align = 1ul << bit; } addr = ALIGN(start, align); + size = PAGE_ALIGN(size); area = kmalloc(sizeof(*area), GFP_KERNEL); if (unlikely(!area)) return NULL; - /* - * We always allocate a guard page. - */ - size += PAGE_SIZE; if (unlikely(!size)) { kfree (area); return NULL; } + /* + * We always allocate a guard page. + */ + size += PAGE_SIZE; + write_lock(&vmlist_lock); for (p = &vmlist; (tmp = *p) != NULL ;p = &tmp->next) { if ((unsigned long)tmp->addr < addr) { @@ -290,6 +292,11 @@ found: unmap_vm_area(tmp); *p = tmp->next; write_unlock(&vmlist_lock); + + /* + * Remove the guard page. + */ + tmp->size -= PAGE_SIZE; return tmp; } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/