Re: svn commit: r281162 - head/sys/vm

2015-04-09 Thread luke
On Thu, Apr 9, 2015 at 1:27 PM, Justin T. Gibbs wrote: > On Apr 6, 2015, at 12:45 PM, Dmitry Chagin wrote: > > > > Author: dchagin > > Date: Mon Apr 6 18:45:41 2015 > > New Revision: 281162 > > URL: https://svnweb.freebsd.org/changeset/base/281162 > > > > Log: > > Properly calculate "UMA Zones

Re: svn commit: r281162 - head/sys/vm

2015-04-08 Thread Justin T. Gibbs
On Apr 6, 2015, at 12:45 PM, Dmitry Chagin wrote: > > Author: dchagin > Date: Mon Apr 6 18:45:41 2015 > New Revision: 281162 > URL: https://svnweb.freebsd.org/changeset/base/281162 > > Log: > Properly calculate "UMA Zones" per cpu cache size. Avoid allocating > an extra struct uma_cache since

svn commit: r281162 - head/sys/vm

2015-04-06 Thread Dmitry Chagin
Author: dchagin Date: Mon Apr 6 18:45:41 2015 New Revision: 281162 URL: https://svnweb.freebsd.org/changeset/base/281162 Log: Properly calculate "UMA Zones" per cpu cache size. Avoid allocating an extra struct uma_cache since the struct uma_zone already has one. PR: 199169 Su