Re: [zones-discuss] updated webrev...

2009-10-28 Thread Casper . Dik
>On Tue 27 Oct 2009 at 10:58AM, Edward Pilatowicz wrote: >> hey all, >> >> i have an updated webrev for my previous fix: >> >> http://cr.opensolaris.org/~edp/onnv-zmount/ >> 6889379 zoneadm mount fails on opensolaris >> 6894901 zoneadmd can hang if fdetach() return EBUSY >> >> you'll notice i a

[zones-discuss] restrcit physical memory with zone.max-locked-memory

2009-10-28 Thread Ketan
Is it possible to restrict physical memory in solaris zone with zone.max-locked-memory just like we can do with rcapd ? I do not want to used rcapd -- This message posted from opensolaris.org ___ zones-discuss mailing list zones-discuss@opensolaris.

Re: [zones-discuss] restrcit physical memory with zone.max-locked-memory

2009-10-28 Thread Jerry Jelinek
Ketan wrote: Is it possible to restrict physical memory in solaris zone with zone.max-locked-memory just like we can do with rcapd ? I do not want to used rcapd No, locked memory is not the same thing as the total physical memory used by a zone. The only way to cap physical memory is with

[zones-discuss] Errors from zonemgr using -d option

2009-10-28 Thread Joachim Pierre
Hi, I'm using zonemgr 2.0.6 with the -D "domain" -d"ns1;ns2" options. This is my full command line and I get syntax errors: ./zonemgr -a add -n stina -P newroot -Z "/export/zones/stina|stina-zproot/stina" -t w -I "192.168.1.92|e1000g1387005|255.255.255.192|stina" -D "domain.exmple.com" -d "192.1

Re: [zones-discuss] restrcit physical memory with zone.max-locked-memory

2009-10-28 Thread Ketan
So for what purpose zone.max-locked-memory is used ? -- This message posted from opensolaris.org ___ zones-discuss mailing list zones-discuss@opensolaris.org

Re: [zones-discuss] updated webrev...

2009-10-28 Thread Edward Pilatowicz
On Wed, Oct 28, 2009 at 08:59:15AM +0100, casper@sun.com wrote: > > >On Tue 27 Oct 2009 at 10:58AM, Edward Pilatowicz wrote: > >> hey all, > >> > >> i have an updated webrev for my previous fix: > >> > >> http://cr.opensolaris.org/~edp/onnv-zmount/ > >> 6889379 zoneadm mount fails on opensolari

Re: [zones-discuss] restrcit physical memory with zone.max-locked-memory

2009-10-28 Thread Steve Lawrence
It limits the amount of physical memory that can be pinned by a zone by mlock() or shmat(SHM_SHARE_MMU). These are typically done by databases or performance critical apps. locked memory cannot be paged out. -Steve L. On Wed, Oct 28, 2009 at 10:25:01AM -0700, Ketan wrote: > So for what purpose