antoine 2008-08-23 12:40:07 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
SVN rev 182047 on 2008-08-23 12:40:07Z by antoine
Remove unused variable nosleepwithlocks.
PR: 126609
Submitted by: Mateusz Guzik
MFC after:
nwhitehorn2008-08-23 01:35:36 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
SVN rev 182028 on 2008-08-23 01:35:36Z by nwhitehorn
Allow the MD UMA allocator to use VM routines like kmem_*(). Existing code
requires MD allocator to be availab
jhb 2007-10-18 18:45:53 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/vm uma_core.c
Log:
MFC: Allow recursion on the 'zones' internal UMA zone.
RevisionChangesPath
1.119.2.20 +1 -1 src/sys/vm/uma_core.c
___
jhb 2007-10-18 18:45:17 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sys/vm uma_core.c
Log:
MFC: Allow recursion on the 'zones' internal UMA zone.
Approved by:re (kensmith)
Revision ChangesPath
1.147.2.1 +1 -1
jhb 2007-10-11 20:11:27 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
Allow recursion on the 'zones' internal UMA zone.
Submitted by: thompsa
MFC after: 1 week
Approved by:re (kensmith)
Discussed with: jeff
Revision
mohans 2007-02-11 03:13:54 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/vm uma_core.c
Log:
MFC :
Fix for a bug where only one process (of multiple) blocked on
maxpages on a zone is woken up, with the rest never being woken up as
Hi Gleb,
I did look at the case where the uma_zfree_arg() would free the object back
to the cache and not wake up the processes. uma_zfree_arg() checks for
ZFLAG_FULL, when that is set it calls uma_zfree_internal(). The wakeup will
happen from uma_zfree_internal().
mohan
--- Gleb Smirnoff <[EM
Mohan,
On Wed, Jan 24, 2007 at 10:49:12PM +, Mohan Srinivasan wrote:
M> mohans 2007-01-24 22:49:12 UTC
M>
M> FreeBSD src repository
M>
M> Modified files:
M> sys/vm uma_core.c
M> Log:
M> Fix for a bug where only one process (of multiple) blocked on
M> maxpa
mohans 2007-01-24 22:49:12 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
Fix for a bug where only one process (of multiple) blocked on
maxpages on a zone is woken up, with the rest never being woken up as
a result of the ZFLAG_FULL flag bein
rwatson 2007-01-10 21:04:43 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
Remove uma_zalloc_arg() hack, which coerced M_WAITOK to M_NOWAIT when
allocations were made using improper flags in interrupt context.
Replace with a simple WITNESS war
On Thu, 26 Oct 2006, Ruslan Ermilov wrote:
On Thu, Oct 26, 2006 at 12:55:32PM +, Robert Watson wrote:
rwatson 2006-10-26 12:55:32 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
Better align output of "show uma" by moving from displaying th
On Thu, Oct 26, 2006 at 12:55:32PM +, Robert Watson wrote:
> rwatson 2006-10-26 12:55:32 UTC
>
> FreeBSD src repository
>
> Modified files:
> sys/vm uma_core.c
> Log:
> Better align output of "show uma" by moving from displaying the basic
> counters of allocs/
rwatson 2006-10-26 12:55:32 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
Better align output of "show uma" by moving from displaying the basic
counters of allocs/frees/use for each zone to the same statistics
shown by userspace "vmstat -z".
rwatson 2006-07-18 01:13:18 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
Fix build of uma_core.c when DDB is not compiled into the kernel by
making uma_zone_sumstat() ifdef DDB, as it's only used with DDB now.
Submitted by: Wolfram Fens
rwatson 2006-07-16 22:53:26 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
Remove sysctl_vm_zone() and vm.zone sysctl from 7.x. As of 6.x,
libmemstat(3) is used by vmstat (and friends) to produce more accurate
and more detailed statistics inf
rwatson 2006-06-02 09:56:28 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/vm uma_core.c
Log:
Merge uma_core.c:1.137 from HEAD to RELENG_6:
When allocating a bucket to hold a free'd item in UMA fails, don't
report this as an allo
rwatson 2006-05-21 23:25:32 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
When allocating a bucket to hold a free'd item in UMA fails, don't
report this as an allocation failure for the item type. The failure
will be separately recorded with
rwatson 2006-02-14 03:37:58 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/vm uma_core.c
Log:
Merge uma_core.c:1.136 from HEAD to RELENG_6:
Skip per-cpu caches associated with absent CPUs when generating a
memory statistics recor
rwatson 2006-02-11 19:20:56 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
Skip per-cpu caches associated with absent CPUs when generating a
memory statistics record stream via sysctl.
MFC after: 3 days
Revision ChangesPath
jhb 2006-01-06 18:03:45 UTC
FreeBSD src repository
Modified files:
sys/vm uma_core.c
Log:
Reduce the scope of one #ifdef to avoid duplicating a SYSCTL_INT() macro
and trim another unneeded #ifdef (it was just around a macro that is
already conditionally defi
alc 2005-11-13 06:22:34 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/vm uma_core.c
Log:
MFC revision 1.130
Introduce a new lock for the purpose of synchronizing access to the
UMA boot pages.
Disable recursion on the gen
rwatson 2005-11-07 18:57:08 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/vm uma_core.c
Log:
Merge uma_core.c:1.132 from HEAD to RELENG_6:
Add a "show uma" command to DDB, which prints out the current stats for
available UMA zon
22 matches
Mail list logo