PERFORCE change 94897 for review

John-Mark Gurney jmg at FreeBSD.org
Mon Apr 10 04:38:53 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=94897

Change 94897 by jmg at jmg_arlene on 2006/04/10 04:38:07

	don't put the end too far out..  forgot to divide by the IO_PAGE_SIZE..

Affected files ...

.. //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/hviommu.c#6 edit

Differences ...

==== //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/hviommu.c#6 (text+ko) ====

@@ -220,7 +220,7 @@
 	end = him->him_dvmabase + him->him_dvmasize - 1;
 	if (rman_init(&him->him_rman) != 0 ||
 	    rman_manage_region(&him->him_rman, him->him_dvmabase >>
-	    IO_PAGE_SHIFT, end) != 0)
+	    IO_PAGE_SHIFT, end >> IO_PAGE_SHIFT) != 0)
 		panic("%s: can't initalize rman", __func__);
 
 	return him;


More information about the p4-projects mailing list