Re: vmalloc fix buggy again?
From: Mark Lord
Date: Thu Mar 18 2004 - 16:18:51 EST
Yup.
Thanks, Sergey. I'm suffering severe brain-impairment on this one.
Please pass this on to Marcelo.
Cheers
--
Mark Lord
Real-Time Remedies Inc.
mlord@xxxxxxxxx
Sergey Vlasov wrote:
Hello!
# ChangeSet
# 2004/03/14 13:16:58-03:00 mlord...
# [PATCH] Yet another vmalloc() fixup
#
diff -Nru a/mm/vmalloc.c b/mm/vmalloc.c
--- a/mm/vmalloc.c Thu Mar 18 09:44:53 2004
+++ b/mm/vmalloc.c Thu Mar 18 09:44:53 2004
@@ -184,7 +184,7 @@
spin_unlock(&init_mm.page_table_lock);
flush_cache_all();
if (address > start)
- vmfree_area_pages((address - start), address - start);
+ vmfree_area_pages(address, address - start);
return -ENOMEM;
}
Looks like this should be
vmfree_area_pages(start, address - start);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/