Is it possible for you to release one for 2.6.7-rc1?
I haven't tried this latest patch, but my own patches do not work for
2.6.7-rc1. arch_free_page seems to have a problem in the following
section...
--- a/mm/page_alloc.c 2004-03-10 08:20:20.000000000 -0500
+++ b/mm/page_alloc.c 2004-03-10 08:34:21.000000000 -0500
@@ -268,6 +268,8 @@
LIST_HEAD(list);
int i;
+ arch_free_page(page, order);
+
mod_page_state(pgfree, 1 << order);
for (i = 0 ; i < (1 << order) ; ++i)
free_pages_check(__FUNCTION__, page + i);
@@ -457,6 +459,8 @@
struct per_cpu_pages *pcp;
unsigned long flags;
+ arch_free_page(page, 0);
+
kernel_map_pages(page, 1, 0);
Thanks,
Jeff
[ jchua@... ]
On Mon, 24 May 2004, Jeff Dike wrote:
> This patch updates UML to 2.6.6. Aside from the update, there were a few
> small bug fixes.
>
> The 2.6.6-1 UML patch is available at
> http://www.user-mode-linux.org/mirror/uml-patch-2.6.6-1.bz2
>
> BK users can pull my 2.5 repository from
> http://www.user-mode-linux.org:5000/uml-2.5
>
> For the other UML mirrors and other downloads, see
> http://user-mode-linux.sourceforge.net/dl-sf.html
>
> Other links of interest:
>
> The UML project home page : http://user-mode-linux.sourceforge.net
> The UML Community site : http://usermodelinux.org
>
> Jeff
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by: Oracle 10g
> Get certified on the hottest thing ever to hit the market... Oracle 10g.
> Take an Oracle 10g class now, and we'll give you the exam FREE.
> http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
> _______________________________________________
> User-mode-linux-devel mailing list
> User-mode-linux-devel@...
> https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
>
|