
CVS log for servers/slapd/sl_malloc.c
Up to [OpenLDAP] / servers / slapd
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.70: download - view: text, markup - select for diffs
Tue Jan 4 23:43:16 2011 UTC (12 years, 4 months ago) by kurt
Branches: MAIN
CVS tags: MIGRATION_CVS2GIT,
HEAD
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +2 -2
lines
Happy New Year
Revision 1.69: download - view: text, markup - select for diffs
Mon Apr 19 20:55:51 2010 UTC (13 years, 1 month ago) by quanah
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +2 -2
lines
Agreed upon log messages for sl_malloc/zn_malloc when falling back
Revision 1.68: download - view: text, markup - select for diffs
Fri Jan 15 17:53:13 2010 UTC (13 years, 4 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +2 -2
lines
Gentler message when falling back to ch_malloc
Revision 1.67: download - view: text, markup - select for diffs
Wed Jan 6 08:14:08 2010 UTC (13 years, 4 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +1 -1
lines
ITS#6437 FORCED COMMIT: 1.62's Ensure Align >= sizeof(ber_len_t) anticipated
1.64 sl_malloc()'s size=(size +...+ Align-1 + !size)... to make room for tail.
Revision 1.66: download - view: text, markup - select for diffs
Tue Jan 5 22:31:14 2010 UTC (13 years, 4 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +19 -13
lines
ITS#6437: Fix pool version misalignment: It aligned heads, not returned blocks
Revision 1.65: download - view: text, markup - select for diffs
Tue Jan 5 22:14:14 2010 UTC (13 years, 4 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +20 -1
lines
ITS#6437, move structs slab_object and slab_heap from slap.h to sl_malloc.c
Revision 1.64: download - view: text, markup - select for diffs
Tue Jan 5 21:11:24 2010 UTC (13 years, 4 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +43 -42
lines
ITS#6437, save space: Do not allocate the tail, except if size==0.
Store a tail only in freed blocks. (Alignment ensures there will
be room.) Put the freed mark in next block's head.
Revision 1.63: download - view: text, markup - select for diffs
Tue Jan 5 18:40:28 2010 UTC (13 years, 4 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +10 -23
lines
ITS#6437 cleanup (noop patch): Join SLAP_NO_SL_MALLOC code with identical
ctx==NULL code. Add enum No_sl_malloc to avoid #ifdef SLAP_NO_SL_MALLOC.
Revision 1.62: download - view: text, markup - select for diffs
Tue Jan 5 18:25:28 2010 UTC (13 years, 4 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +14 -15
lines
ITS#6437, follow up previous fixes:
Ensure Align >= sizeof(ber_len_t), to clarify the code's requirements.
Rearrange a slap_sl_malloc() branch to factor out ch_malloc fallbacks.
Fix range check (ptr+size >= endptr) -> (size >= endptr-ptr). Fix debug msg.
Revision 1.61: download - view: text, markup - select for diffs
Sat Jan 2 22:42:31 2010 UTC (13 years, 5 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +45 -10
lines
Add comments
Revision 1.60: download - view: text, markup - select for diffs
Sat Jan 2 21:53:22 2010 UTC (13 years, 5 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +14 -3
lines
ITS#6437, slap_sl_calloc():
Check count*size overflow. Omit slap_sl_malloc failure check, it cannot fail.
Revision 1.59: download - view: text, markup - select for diffs
Sat Jan 2 21:41:41 2010 UTC (13 years, 5 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +17 -14
lines
ITS#6437, failure/fallback/debug handling:
slap_sl_malloc could return failure. Exit instead, like the rest of sl_malloc.
Since we increase size, reduce it before Debug() and/or fallback to ch_malloc.
Debug() before exit() on failure. Tweak debug formats and a comment.
Revision 1.58: download - view: text, markup - select for diffs
Sat Jan 2 21:03:48 2010 UTC (13 years, 5 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +27 -42
lines
ITS#6437 cleanup (noop change):
Move thread/nothread code to macros SET_MEMCTX()/GET_MEMCTX().
Rename some thread/memory contexts 'ctx' to thrctx/memctx to avoid confusion.
Revision 1.57: download - view: text, markup - select for diffs
Sat Jan 2 20:39:46 2010 UTC (13 years, 5 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +32 -25
lines
ITS#6437, fixes for stack implementation of slap_sl_realloc():
Preserve 2*int alignment on hosts where sizeof(int) == sizeof(ber_len_t).
If realloc of last block falls back to ch_malloc, free last block properly.
Fix range check (ptr + size < endptr) --> (size < endptr - ptr).
Revision 1.56: download - view: text, markup - select for diffs
Sat Jan 2 20:05:11 2010 UTC (13 years, 5 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +5 -8
lines
ITS#6437: Fix alignment after slap_sl_realloc().
Also use -Align instead of ~pad: Valid also for non-twos complement.
Revision 1.55: download - view: text, markup - select for diffs
Sat Jan 2 17:42:33 2010 UTC (13 years, 5 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +12 -14
lines
ITS#6437 cleanup (noop change): Simplify slap_sl_free() code reclaiming space
Revision 1.54: download - view: text, markup - select for diffs
Sat Jan 2 17:27:51 2010 UTC (13 years, 5 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +18 -41
lines
ITS#6437 cleanup (noop change): Compute pad,order_start at compile time
Revision 1.53: download - view: text, markup - select for diffs
Sat Jan 2 17:05:56 2010 UTC (13 years, 5 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +16 -61
lines
ITS#6437, slap_sl_mem_create():
Bugfix: Switching implementation stack<->pool on an old context could
crash or leak, it ran the wrong implementation's cleanup code.
Cleanup: Factor out identical stack/pool code. Call
slap_sl_mem_destroy(NULL,) instead of copying its pool code.
API change: slap_sl_mem_destroy(key=NULL,) gets a new meaning. Does
not affect current OpenLDAP code, it never passed NULL.
Revision 1.52: download - view: text, markup - select for diffs
Sun Nov 15 09:34:10 2009 UTC (13 years, 6 months ago) by hyc
Branches: MAIN
CVS tags: ACLCHECK_0,
ACLCHECK
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +25 -23
lines
Cleanup
Revision 1.51: download - view: text, markup - select for diffs
Sun Nov 15 02:02:09 2009 UTC (13 years, 6 months ago) by hyc
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -2
lines
Fix 1.49 sl_realloc
Revision 1.50: download - view: text, markup - select for diffs
Sat Nov 14 22:25:14 2009 UTC (13 years, 6 months ago) by hyc
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +9 -1
lines
Add a note about sl_malloc stack-based behavior
Revision 1.49: download - view: text, markup - select for diffs
Sat Nov 14 22:20:44 2009 UTC (13 years, 6 months ago) by hyc
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +42 -15
lines
Mark freed regions so they can be reclaimed
Revision 1.48: download - view: text, markup - select for diffs
Sat Apr 11 01:40:12 2009 UTC (14 years, 1 month ago) by hyc
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +15 -4
lines
ITS#6054 assert/exit on failed allocs
Revision 1.47: download - view: text, markup - select for diffs
Sun Mar 8 23:48:44 2009 UTC (14 years, 2 months ago) by hyc
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -2
lines
ITS#6005 realloc should be ch_realloc
Revision 1.46: download - view: text, markup - select for diffs
Wed Jan 21 23:40:28 2009 UTC (14 years, 4 months ago) by kurt
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +2 -2
lines
Update copyright notices
Revision 1.45: download - view: text, markup - select for diffs
Fri Jan 11 05:07:43 2008 UTC (15 years, 4 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +3 -2
lines
Warning cleanup: function ptr <=> void* at ldap_pvt_thread_pool_<set/get>key()
Revision 1.44: download - view: text, markup - select for diffs
Mon Jan 7 23:20:09 2008 UTC (15 years, 4 months ago) by kurt
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +2 -2
lines
Happy New Year (belated)
Revision 1.43: download - view: text, markup - select for diffs
Mon Jan 7 20:35:03 2008 UTC (15 years, 4 months ago) by ando
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +4 -4
lines
rename ldap_pvt_thread_pool_setkey_x() to ldap_pvt_thread_pool_setkey() (as part of ITS#5309)
Revision 1.42: download - view: text, markup - select for diffs
Wed Jul 4 20:49:34 2007 UTC (15 years, 11 months ago) by hallvard
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_4_MP
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +2 -2
lines
Fix SLAP_NO_SL_MALLOC (ber_malloc_x -> ber_memalloc_x) for ITS#4990.
Revision 1.41: download - view: text, markup - select for diffs
Wed Feb 14 07:51:47 2007 UTC (16 years, 3 months ago) by hyc
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +6 -2
lines
Added "slapd" rewrite map handler, connection_fake_init2 to use existing
tmpmemctx without reinitializing
Revision 1.40: download - view: text, markup - select for diffs
Tue Jan 2 19:01:06 2007 UTC (16 years, 5 months ago) by kurt
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +2 -2
lines
happy new year
Revision 1.39: download - view: text, markup - select for diffs
Thu Apr 6 17:13:41 2006 UTC (17 years, 2 months ago) by ando
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_4_BP,
OPENLDAP_REL_ENG_2_4_3ALPHA,
OPENLDAP_REL_ENG_2_4_2ALPHA,
OPENLDAP_REL_ENG_2_4_1ALPHA,
OPENLDAP_REL_ENG_2_4_0ALPHA,
OPENLDAP_REL_ENG_2_3_MP
Branch point for: OPENLDAP_REL_ENG_2_4
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +14 -1
lines
don't leak if realloc fails (ITS#4477)
Revision 1.38: download - view: text, markup - select for diffs
Thu Apr 6 17:07:48 2006 UTC (17 years, 2 months ago) by ando
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +35 -26
lines
don't leak if realloc fails (ITS#4477); s/new/newptr/
Revision 1.37: download - view: text, markup - select for diffs
Fri Mar 31 08:45:23 2006 UTC (17 years, 2 months ago) by hyc
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +4 -1
lines
Cleanup
Revision 1.36: download - view: text, markup - select for diffs
Tue Jan 3 22:12:16 2006 UTC (17 years, 5 months ago) by kurt
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +2 -2
lines
Happy new year!
Revision 1.35: download - view: text, markup - select for diffs
Mon Nov 14 20:47:18 2005 UTC (17 years, 6 months ago) by ando
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_2_MP
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +5 -1
lines
silence warnings...
Revision 1.34: download - view: text, markup - select for diffs
Wed Jul 20 17:26:46 2005 UTC (17 years, 10 months ago) by ando
Branches: MAIN
CVS tags: OPENLDAP_AC_MP,
OPENLDAP_AC_BP,
OPENLDAP_AC
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +1 -3
lines
mostly revert previous commit
Revision 1.33: download - view: text, markup - select for diffs
Wed Jul 20 17:07:04 2005 UTC (17 years, 10 months ago) by ando
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +3 -1
lines
allow to unregister (and free) memory handling functions
Revision 1.32: download - view: text, markup - select for diffs
Mon Jul 18 04:22:34 2005 UTC (17 years, 10 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +3 -3
lines
assert expects int. (int)<nonnull ptr/long> can be 0. Use assert(arg!=0/NULL).
Revision 1.31: download - view: text, markup - select for diffs
Thu Jul 14 19:57:25 2005 UTC (17 years, 10 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +11 -7
lines
struct slab_heap *sh was accessed through the wrong type
Revision 1.30: download - view: text, markup - select for diffs
Mon Jul 11 10:11:15 2005 UTC (17 years, 10 months ago) by hyc
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +5 -9
lines
ITS#3847 silence warnings
Revision 1.29: download - view: text, markup - select for diffs
Mon Jul 4 03:29:12 2005 UTC (17 years, 11 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +2 -2
lines
Format fixes (%d<->%lu etc)
Revision 1.28: download - view: text, markup - select for diffs
Fri Apr 29 23:15:10 2005 UTC (18 years, 1 month ago) by hyc
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +5 -1
lines
Fix ITS#3695 preserve stack alignment in slap_sl_realloc
Revision 1.27: download - view: text, markup - select for diffs
Wed Jan 19 20:42:04 2005 UTC (18 years, 4 months ago) by hyc
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +3 -1
lines
Make sl_context just return NULL in tool mode, we have no threads here
Revision 1.26: download - view: text, markup - select for diffs
Fri Jan 14 10:50:24 2005 UTC (18 years, 4 months ago) by ando
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +6 -3
lines
silence (a couple of) warnings
Revision 1.25: download - view: text, markup - select for diffs
Sat Jan 1 19:49:50 2005 UTC (18 years, 5 months ago) by kurt
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -2
lines
Happy New Year!
Revision 1.24: download - view: text, markup - select for diffs
Wed Dec 8 07:12:15 2004 UTC (18 years, 5 months ago) by jongchoi
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_3_BP,
OPENLDAP_REL_ENG_2_3_0ALPHA
Branch point for: OPENLDAP_REL_ENG_2_3
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +8 -8
lines
misc cleanup
Revision 1.23: download - view: text, markup - select for diffs
Tue Dec 7 07:48:28 2004 UTC (18 years, 5 months ago) by hyc
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +3 -2
lines
Fix ITS#3420
Revision 1.22: download - view: text, markup - select for diffs
Tue Nov 30 15:32:37 2004 UTC (18 years, 6 months ago) by jongchoi
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +61 -115
lines
restructuring and cleanup
Revision 1.21: download - view: text, markup - select for diffs
Sat Nov 27 14:08:24 2004 UTC (18 years, 6 months ago) by ando
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2
lines
make unregistered known controls show up as undefined; move LDAPsync cid to frontend; some cleanup
Revision 1.20: download - view: text, markup - select for diffs
Tue Nov 23 14:37:06 2004 UTC (18 years, 6 months ago) by jongchoi
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +530 -75
lines
buddy allocator for sl_malloc. Configurable at thread heap creation time. Need optimization for higher perf.
Revision 1.19: download - view: text, markup - select for diffs
Sat Sep 4 02:54:31 2004 UTC (18 years, 9 months ago) by kurt
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +1 -12
lines
unifdef -UNEW_LOGGING
Revision 1.18: download - view: text, markup - select for diffs
Thu May 27 06:54:34 2004 UTC (19 years ago) by hyc
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +21 -1
lines
Fix ITS#3155
Revision 1.17: download - view: text, markup - select for diffs
Tue Apr 20 01:44:57 2004 UTC (19 years, 1 month ago) by kurt
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +27 -30
lines
ITS#3092: Rename sl_free() and friends to slap_sl_free()
Revision 1.16: download - view: text, markup - select for diffs
Thu Jan 1 18:15:32 2004 UTC (19 years, 5 months ago) by kurt
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_1_MP
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2
lines
Happy new year
Revision 1.15: download - view: text, markup - select for diffs
Thu Dec 18 02:54:48 2003 UTC (19 years, 5 months ago) by hyc
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +5 -5
lines
ITS#2884 silence warning. We don't dereference this pointer, we just use
it's value as a unique key.
Revision 1.14: download - view: text, markup - select for diffs
Sun Dec 7 03:00:47 2003 UTC (19 years, 6 months ago) by hyc
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +1 -22
lines
ITS#2864 removed sl_mark/sl_release code
Revision 1.13: download - view: text, markup - select for diffs
Thu Nov 27 00:17:16 2003 UTC (19 years, 6 months ago) by kurt
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +13 -4
lines
Updated notices
Revision 1.12: download - view: text, markup - select for diffs
Fri May 30 19:44:18 2003 UTC (20 years ago) by jongchoi
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_2_BP,
OPENLDAP_REL_ENG_2_2_2BETA,
OPENLDAP_REL_ENG_2_2_1BETA,
OPENLDAP_REL_ENG_2_2_0ALPHA
Branch point for: OPENLDAP_REL_ENG_2_2
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +1 -8
lines
cleanup comments of sl_mem_detach()
Revision 1.11: download - view: text, markup - select for diffs
Fri May 23 07:10:05 2003 UTC (20 years ago) by hyc
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +9 -1
lines
Add comments to sl_mem_detach()
Revision 1.10: download - view: text, markup - select for diffs
Fri May 23 02:24:39 2003 UTC (20 years ago) by hyc
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +1 -6
lines
ITS#2542 fix?
Revision 1.9: download - view: text, markup - select for diffs
Thu May 22 19:52:02 2003 UTC (20 years ago) by hallvard
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2
lines
Don't do pointer arithmetic on void pointers.
Revision 1.8: download - view: text, markup - select for diffs
Tue May 20 18:21:39 2003 UTC (20 years ago) by jongchoi
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +16 -2
lines
persistent search updates with recent changes
Revision 1.7: download - view: text, markup - select for diffs
Tue Apr 29 12:54:22 2003 UTC (20 years, 1 month ago) by hallvard
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +6 -6
lines
Don't do arithmetic on void pointers.
Revision 1.6: download - view: text, markup - select for diffs
Sat Apr 12 03:12:40 2003 UTC (20 years, 1 month ago) by hyc
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +51 -7
lines
Added sl_context() to return the context associated with an alloc'd ptr.
Improved ch_malloc/sl_malloc compatibility.
Revision 1.5: download - view: text, markup - select for diffs
Thu Apr 10 23:29:30 2003 UTC (20 years, 1 month ago) by hyc
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +8 -5
lines
More memory context tweaks
Revision 1.4: download - view: text, markup - select for diffs
Thu Apr 10 04:21:53 2003 UTC (20 years, 1 month ago) by hyc
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +28 -27
lines
More memory context tweaks
Revision 1.3: download - view: text, markup - select for diffs
Wed Apr 9 21:37:00 2003 UTC (20 years, 1 month ago) by hyc
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +4 -3
lines
Minor cleanups
Revision 1.2: download - view: text, markup - select for diffs
Wed Apr 9 15:34:58 2003 UTC (20 years, 1 month ago) by hyc
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +6 -11
lines
Eliminate getkey search
Revision 1.1: download - view: text, markup - select for diffs
Wed Apr 9 14:52:03 2003 UTC (20 years, 1 month ago) by hyc
Branches: MAIN
First cut at thread-local malloc. Only used by search() for now...
Needs work in normalizers, etc.
Revision 1.12.2.7: download - view: text, markup - select for diffs
Thu Jan 20 17:01:10 2005 UTC (18 years, 4 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_2
CVS tags: OPENLDAP_REL_ENG_2_2_30,
OPENLDAP_REL_ENG_2_2_29,
OPENLDAP_REL_ENG_2_2_28,
OPENLDAP_REL_ENG_2_2_27,
OPENLDAP_REL_ENG_2_2_26,
OPENLDAP_REL_ENG_2_2_25,
OPENLDAP_REL_ENG_2_2_24,
OPENLDAP_REL_ENG_2_2_23,
OPENLDAP_REL_ENG_2_2_22,
OPENLDAP_REL_ENG_2_2_21
Diff to: previous 1.12.2.6: preferred, colored; branchpoint 1.12: preferred, colored; next MAIN 1.13: preferred, colored
Changes since revision 1.12.2.6: +2 -2
lines
Happy new year!
Revision 1.12.2.6: download - view: text, markup - select for diffs
Fri Dec 17 09:35:23 2004 UTC (18 years, 5 months ago) by hyc
Branches: OPENLDAP_REL_ENG_2_2
CVS tags: OPENLDAP_REL_ENG_2_2_20
Diff to: previous 1.12.2.5: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.2.5: +3 -2
lines
Import ITS#3420 fix from HEAD (also #3404, #3296)
Revision 1.12.2.5: download - view: text, markup - select for diffs
Fri Jun 4 03:39:43 2004 UTC (19 years ago) by kurt
Branches: OPENLDAP_REL_ENG_2_2
CVS tags: OPENLDAP_REL_ENG_2_2_19,
OPENLDAP_REL_ENG_2_2_18,
OPENLDAP_REL_ENG_2_2_17,
OPENLDAP_REL_ENG_2_2_16,
OPENLDAP_REL_ENG_2_2_15,
OPENLDAP_REL_ENG_2_2_14,
OPENLDAP_REL_ENG_2_2_13,
OPENLDAP_REL_ENG_2_2_12
Diff to: previous 1.12.2.4: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.2.4: +21 -1
lines
From HEAD
+ Fixed slapd abandon/cancel pending bug (ITS#3160)
+ Fixed slapd sl_malloc memory leak (ITS#3155)
+ Fixed pcache erroneous reply (ITS#3153)
+ Fixed pcache remove_query_data bug (ITS#3170)
+ Fixed liblutil passwd seed len bug (ITS#3169)
Revision 1.12.2.4: download - view: text, markup - select for diffs
Thu Jan 1 18:16:35 2004 UTC (19 years, 5 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_2
CVS tags: OPENLDAP_REL_ENG_2_2_9,
OPENLDAP_REL_ENG_2_2_8,
OPENLDAP_REL_ENG_2_2_7,
OPENLDAP_REL_ENG_2_2_6,
OPENLDAP_REL_ENG_2_2_5,
OPENLDAP_REL_ENG_2_2_11,
OPENLDAP_REL_ENG_2_2_10
Diff to: previous 1.12.2.3: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.2.3: +2 -2
lines
Happy new year
Revision 1.12.2.3: download - view: text, markup - select for diffs
Thu Dec 18 23:05:03 2003 UTC (19 years, 5 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_2
CVS tags: OPENLDAP_REL_ENG_2_2_4
Diff to: previous 1.12.2.2: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.2.2: +5 -5
lines
Sync with HEAD
Revision 1.12.2.2: download - view: text, markup - select for diffs
Mon Dec 15 22:05:23 2003 UTC (19 years, 5 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_2
Diff to: previous 1.12.2.1: preferred, colored; branchpoint 1.12: preferred, colored
Changes since revision 1.12.2.1: +1 -22
lines
Sync with HEAD
Revision 1.12.2.1: download - view: text, markup - select for diffs
Mon Dec 1 00:58:37 2003 UTC (19 years, 6 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_2
CVS tags: OPENLDAP_REL_ENG_2_2_3BETA
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +13 -4
lines
Sync with HEAD
Revision 1.24.2.8: download - view: text, markup - select for diffs
Mon Feb 11 23:24:18 2008 UTC (15 years, 3 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_3
CVS tags: OPENLDAP_REL_ENG_2_3_43,
OPENLDAP_REL_ENG_2_3_42,
OPENLDAP_REL_ENG_2_3_41
Diff to: previous 1.24.2.7: preferred, colored; branchpoint 1.24: preferred, colored; next MAIN 1.25: preferred, colored
Changes since revision 1.24.2.7: +2 -2
lines
Happy new year! (belated)
Revision 1.24.2.7: download - view: text, markup - select for diffs
Tue Jan 2 21:43:58 2007 UTC (16 years, 5 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_3
CVS tags: OPENLDAP_REL_ENG_2_3_40,
OPENLDAP_REL_ENG_2_3_39,
OPENLDAP_REL_ENG_2_3_38,
OPENLDAP_REL_ENG_2_3_37,
OPENLDAP_REL_ENG_2_3_36,
OPENLDAP_REL_ENG_2_3_35,
OPENLDAP_REL_ENG_2_3_34,
OPENLDAP_REL_ENG_2_3_33,
OPENLDAP_REL_ENG_2_3_32
Diff to: previous 1.24.2.6: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.2.6: +2 -2
lines
happy new year
Revision 1.24.2.6: download - view: text, markup - select for diffs
Tue Jan 3 22:16:15 2006 UTC (17 years, 5 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_3
CVS tags: OPENLDAP_REL_ENG_2_3_31,
OPENLDAP_REL_ENG_2_3_30,
OPENLDAP_REL_ENG_2_3_29,
OPENLDAP_REL_ENG_2_3_28,
OPENLDAP_REL_ENG_2_3_27,
OPENLDAP_REL_ENG_2_3_26,
OPENLDAP_REL_ENG_2_3_25,
OPENLDAP_REL_ENG_2_3_24,
OPENLDAP_REL_ENG_2_3_23,
OPENLDAP_REL_ENG_2_3_22,
OPENLDAP_REL_ENG_2_3_21,
OPENLDAP_REL_ENG_2_3_20,
OPENLDAP_REL_ENG_2_3_19,
OPENLDAP_REL_ENG_2_3_18,
OPENLDAP_REL_ENG_2_3_17,
OPENLDAP_REL_ENG_2_3_16,
OPENLDAP_REL_ENG_2_3_15
Diff to: previous 1.24.2.5: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.2.5: +2 -2
lines
Happy new year!
Revision 1.24.2.5: download - view: text, markup - select for diffs
Tue Nov 15 20:25:46 2005 UTC (17 years, 6 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_3
CVS tags: OPENLDAP_REL_ENG_2_3_14,
OPENLDAP_REL_ENG_2_3_13,
OPENLDAP_REL_ENG_2_3_12
Diff to: previous 1.24.2.4: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.2.4: +5 -1
lines
Sync with HEAD
Revision 1.24.2.4: download - view: text, markup - select for diffs
Tue Aug 9 21:04:00 2005 UTC (17 years, 9 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_3
CVS tags: OPENLDAP_REL_ENG_2_3_9,
OPENLDAP_REL_ENG_2_3_8,
OPENLDAP_REL_ENG_2_3_7,
OPENLDAP_REL_ENG_2_3_6,
OPENLDAP_REL_ENG_2_3_5,
OPENLDAP_REL_ENG_2_3_11,
OPENLDAP_REL_ENG_2_3_10
Diff to: previous 1.24.2.3: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.2.3: +17 -17
lines
Sync with HEAD
Revision 1.24.2.3: download - view: text, markup - select for diffs
Mon Jul 11 05:55:30 2005 UTC (17 years, 10 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_3
Diff to: previous 1.24.2.2: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.2.2: +2 -2
lines
Sync with HEAD
Revision 1.24.2.2: download - view: text, markup - select for diffs
Fri May 6 16:42:51 2005 UTC (18 years, 1 month ago) by kurt
Branches: OPENLDAP_REL_ENG_2_3
CVS tags: OPENLDAP_REL_ENG_2_3_4,
OPENLDAP_REL_ENG_2_3_3BETA
Diff to: previous 1.24.2.1: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.2.1: +5 -1
lines
Merge from HEAD
Revision 1.24.2.1: download - view: text, markup - select for diffs
Thu Jan 20 18:03:56 2005 UTC (18 years, 4 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_3
CVS tags: OPENLDAP_REL_ENG_2_3_2BETA,
OPENLDAP_REL_ENG_2_3_1ALPHA
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +9 -4
lines
Sync with HEAD
Revision 1.39.2.14: download - view: text, markup - select for diffs
Tue Jan 4 23:50:24 2011 UTC (12 years, 4 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_4
CVS tags: OPENLDAP_REL_ENG_2_4_25,
OPENLDAP_REL_ENG_2_4_24,
OPENLDAP_RELEASE
Diff to: previous 1.39.2.13: preferred, colored; branchpoint 1.39: preferred, colored; next MAIN 1.40: preferred, colored
Changes since revision 1.39.2.13: +2 -2
lines
Happy New Year!
Revision 1.39.2.13: download - view: text, markup - select for diffs
Mon Apr 19 20:58:45 2010 UTC (13 years, 1 month ago) by quanah
Branches: OPENLDAP_REL_ENG_2_4
CVS tags: OPENLDAP_REL_ENG_2_4_23,
OPENLDAP_REL_ENG_2_4_22
Diff to: previous 1.39.2.12: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.12: +1 -1
lines
agreed upon log messages
Revision 1.39.2.12: download - view: text, markup - select for diffs
Fri Apr 16 18:08:16 2010 UTC (13 years, 1 month ago) by quanah
Branches: OPENLDAP_REL_ENG_2_4
Diff to: previous 1.39.2.11: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.11: +2 -2
lines
Gentler message when falling back to ch_malloc
Revision 1.39.2.11: download - view: text, markup - select for diffs
Tue Apr 13 20:23:20 2010 UTC (13 years, 1 month ago) by kurt
Branches: OPENLDAP_REL_ENG_2_4
Diff to: previous 1.39.2.10: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.10: +2 -2
lines
happy belated new year
Revision 1.39.2.10: download - view: text, markup - select for diffs
Wed Nov 18 01:22:22 2009 UTC (13 years, 6 months ago) by quanah
Branches: OPENLDAP_REL_ENG_2_4
CVS tags: OPENLDAP_STABLE,
OPENLDAP_REL_ENG_2_4_21,
OPENLDAP_REL_ENG_2_4_20
Diff to: previous 1.39.2.9: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.9: +67 -30
lines
ITS#6380
Revision 1.39.2.9: download - view: text, markup - select for diffs
Wed Apr 29 01:22:17 2009 UTC (14 years, 1 month ago) by quanah
Branches: OPENLDAP_REL_ENG_2_4
CVS tags: OPENLDAP_REL_ENG_2_4_19,
OPENLDAP_REL_ENG_2_4_18,
OPENLDAP_REL_ENG_2_4_17
Diff to: previous 1.39.2.8: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.8: +15 -4
lines
ITS#6054
Revision 1.39.2.8: download - view: text, markup - select for diffs
Mon Mar 9 23:16:48 2009 UTC (14 years, 2 months ago) by quanah
Branches: OPENLDAP_REL_ENG_2_4
CVS tags: OPENLDAP_REL_ENG_2_4_16
Diff to: previous 1.39.2.7: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.7: +2 -2
lines
ITS#6005
Revision 1.39.2.7: download - view: text, markup - select for diffs
Thu Jan 22 00:01:03 2009 UTC (14 years, 4 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_4
CVS tags: OPENLDAP_REL_ENG_2_4_15,
OPENLDAP_REL_ENG_2_4_14
Diff to: previous 1.39.2.6: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.6: +2 -2
lines
Update copyright for next release
Revision 1.39.2.6: download - view: text, markup - select for diffs
Mon Feb 11 23:34:15 2008 UTC (15 years, 3 months ago) by quanah
Branches: OPENLDAP_REL_ENG_2_4
CVS tags: OPENLDAP_REL_ENG_2_4_9,
OPENLDAP_REL_ENG_2_4_8,
OPENLDAP_REL_ENG_2_4_13,
OPENLDAP_REL_ENG_2_4_12,
OPENLDAP_REL_ENG_2_4_11,
OPENLDAP_REL_ENG_2_4_10
Diff to: previous 1.39.2.5: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.5: +3 -2
lines
Warning cleanup: function ptr <=> void* at ldap_pvt_thread_pool_<set/get>key()
Revision 1.39.2.5: download - view: text, markup - select for diffs
Mon Feb 11 23:26:44 2008 UTC (15 years, 3 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_4
Diff to: previous 1.39.2.4: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.4: +2 -2
lines
Happy new year! (belated)
Revision 1.39.2.4: download - view: text, markup - select for diffs
Mon Feb 11 22:22:14 2008 UTC (15 years, 3 months ago) by quanah
Branches: OPENLDAP_REL_ENG_2_4
Diff to: previous 1.39.2.3: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.3: +4 -4
lines
ITS#5309 work
Revision 1.39.2.3: download - view: text, markup - select for diffs
Fri Aug 31 23:14:00 2007 UTC (15 years, 9 months ago) by quanah
Branches: OPENLDAP_REL_ENG_2_4
CVS tags: OPENLDAP_REL_ENG_2_4_7,
OPENLDAP_REL_ENG_2_4_6,
OPENLDAP_REL_ENG_2_4_5BETA
Diff to: previous 1.39.2.2: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.2: +2 -2
lines
Sync with HEAD for OL 2.4.5
Revision 1.39.2.2: download - view: text, markup - select for diffs
Thu Feb 15 00:44:18 2007 UTC (16 years, 3 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_4
CVS tags: OPENLDAP_REL_ENG_2_4_4ALPHA
Diff to: previous 1.39.2.1: preferred, colored; branchpoint 1.39: preferred, colored
Changes since revision 1.39.2.1: +6 -2
lines
Import recent changes in 2.4 for release
Revision 1.39.2.1: download - view: text, markup - select for diffs
Tue Feb 13 20:22:21 2007 UTC (16 years, 3 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_4
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +2 -2
lines
Quick merge: everything from HEAD
______________
© Copyright 1998-2020,
OpenLDAP Foundation, info@OpenLDAP.org