Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Feb 2012 21:20:12 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-sparc64@FreeBSD.org
Subject:   Re: sparc64/164227: commit references a PR
Message-ID:  <201202012120.q11LKCUN098057@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR sparc64/164227; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: sparc64/164227: commit references a PR
Date: Wed,  1 Feb 2012 21:10:19 +0000 (UTC)

 Author: marius
 Date: Wed Feb  1 21:09:59 2012
 New Revision: 230882
 URL: http://svn.freebsd.org/changeset/base/230882
 
 Log:
   MFC: r230630
   
   For machines where the kernel address space is unrestricted increase
   VM_KMEM_SIZE_SCALE to 2, awaiting more insight from alc@. As it turns
   out, the VM apparently has problems with machines that have large holes
   in the physical address space, causing the kmem_suballoc() call in
   kmeminit() to fail with a VM_KMEM_SIZE_SCALE of 1. Using a value of 2
   allows these, namely Blade 1500 with 2GB of RAM, to boot.
   
   PR:	164227
 
 Modified:
   stable/9/sys/sparc64/include/vmparam.h
 Directory Properties:
   stable/9/sys/   (props changed)
   stable/9/sys/amd64/include/xen/   (props changed)
   stable/9/sys/boot/   (props changed)
   stable/9/sys/boot/i386/efi/   (props changed)
   stable/9/sys/boot/ia64/efi/   (props changed)
   stable/9/sys/boot/ia64/ski/   (props changed)
   stable/9/sys/boot/powerpc/boot1.chrp/   (props changed)
   stable/9/sys/boot/powerpc/ofw/   (props changed)
   stable/9/sys/cddl/contrib/opensolaris/   (props changed)
   stable/9/sys/conf/   (props changed)
   stable/9/sys/contrib/dev/acpica/   (props changed)
   stable/9/sys/contrib/octeon-sdk/   (props changed)
   stable/9/sys/contrib/pf/   (props changed)
   stable/9/sys/contrib/x86emu/   (props changed)
 
 Modified: stable/9/sys/sparc64/include/vmparam.h
 ==============================================================================
 --- stable/9/sys/sparc64/include/vmparam.h	Wed Feb  1 21:08:35 2012	(r230881)
 +++ stable/9/sys/sparc64/include/vmparam.h	Wed Feb  1 21:09:59 2012	(r230882)
 @@ -218,7 +218,7 @@
   * is the total KVA space allocated for kmem_map.
   */
  #ifndef VM_KMEM_SIZE_SCALE
 -#define	VM_KMEM_SIZE_SCALE	(tsb_kernel_ldd_phys == 0 ? 3 : 1)
 +#define	VM_KMEM_SIZE_SCALE	(tsb_kernel_ldd_phys == 0 ? 3 : 2)
  #endif
  
  /*
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201202012120.q11LKCUN098057>