A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, mdb.master has been updated
via a2ed03642ca325cfe7685d6df782f3b363f9e46c (commit)
via 2ce9ffa003ca190c25b68bd5486635a186f967d8 (commit)
via 7e453c97632599a420824c06458353f2a18242aa (commit)
via a58fd16ae5823823567d51c33f7ca07d983255f9 (commit)
via d69d2ce2307e9d0e2167843935c386b05a869c31 (commit)
via 734bc7e6ada2588cddac6a67688421591a895807 (commit)
via a8de10d148e99297c9ce4fba7a6ede053c3d6c74 (commit)
via 6808abe770d916c395a20718571ff843c903af71 (commit)
via c0858e6d93edb062b3f33672c37294c60dfdf069 (commit)
via fcb0d09598ace3b47ef95022d2f3b41f531a7d1f (commit)
via 753356a38a01eb5ec62ee3b0c3f0100e38b4ecf8 (commit)
via e1266bf33174383cec0a1a8a25133cf86bbd51ff (commit)
from 1ffb5e1cba200b0e362d1f7a56f09f8ad8081451 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a2ed03642ca325cfe7685d6df782f3b363f9e46c
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Replace MDB_node.mn_offset[], to ease debugging.
commit 2ce9ffa003ca190c25b68bd5486635a186f967d8
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Comment MDB_node, mdb_page_unspill, mdb_update_key
commit 7e453c97632599a420824c06458353f2a18242aa
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Fix mdb_reader_list() and its spec.
It and the MDB_msg_func can now return >= 0 for success.
Always return any MDB_msg_func() error result.
commit a58fd16ae5823823567d51c33f7ca07d983255f9
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Support dynamic max MDB keysize.
commit d69d2ce2307e9d0e2167843935c386b05a869c31
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Raise safe max MDB_MAXKEYSIZE.
Use a sub-DB for DUPSORT item #1/#2 per key if needed: Not a sub-
page too big for a node, nor an overflow page (which not all DUPSORT
code checks for). Move "insert" code, to avoid non-loop goto upwards.
(This is the commit which needs the change to xdata.mv_size in
commit 9d6e4a916367e85ffdf37b1cb7b5cdb7ac0e15b5 "page sizes".)
commit 734bc7e6ada2588cddac6a67688421591a895807
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
Relax MDB_MAXKEYSIZE for existing data.
Handle keys stored by a liblmdb with a bigger MDB_MAXKEYSIZE.
mdb_get/mdb_del(absent key bigger than our MDB_MAXKEYSIZE)
now return MDB_NOTFOUND instead of MDB_BAD_VALSIZE.
commit a8de10d148e99297c9ce4fba7a6ede053c3d6c74
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
ITS#7589 Fix me_nodemax and related node sizes.
Change me_nodemax to not count the mp_ptrs[] entry. That's mostly
how it was used. Compare node sizes ">" me_nodemax instead of ">=".
The ">=" was a workaround for confusing sizes with and without the
mp_ptrs[] entry, but broke for nodes with size (old me_nodemax-1).
Explicitly make me_nodemax even. An odd value could break the
comparisons. It was even anyway because MDB_MINKEYS == 2.
commit 6808abe770d916c395a20718571ff843c903af71
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
ITS#7589 Fix delete(uneven-sized MDB_DUPFIXED data).
Do not give uneven sizes to the sub-page and the node it lives in.
commit c0858e6d93edb062b3f33672c37294c60dfdf069
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
put(MDB_MULTIPLE): Skip existing item cleanly.
Don't set dkey.mv_size if mdb won't clear it before next iteration.
commit fcb0d09598ace3b47ef95022d2f3b41f531a7d1f
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
Add EVEN(): Micro-optimize "up to multiple of 2".
commit 753356a38a01eb5ec62ee3b0c3f0100e38b4ecf8
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
Warning cleanup.
Drop unused computed/assigned values.
mdb_page_alloc(): Make "mop_len>0 implies mop!=NULL" provable.
commit e1266bf33174383cec0a1a8a25133cf86bbd51ff
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
Clean up mdb_copy.
Support MDB_NOSUBDIR. Catch more errors. Write messages
to stderr, not stdout which the data too may be piped to.
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/lmdb.h | 10 +-
libraries/liblmdb/mdb.c | 240 +++++++++++++++++++++++-------------------
libraries/liblmdb/mdb_copy.1 | 10 ++-
libraries/liblmdb/mdb_copy.c | 28 ++++--
libraries/liblmdb/midl.c | 2 +-
5 files changed, 166 insertions(+), 124 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via 26ce222b6ac2ee2194e2126eee7c0970844e6398 (commit)
from 815eddda4c24eb7c48ad796c8a01243467d2cbdb (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 26ce222b6ac2ee2194e2126eee7c0970844e6398
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue Dec 10 18:08:36 2013 -0800
ITS#7761 bail out of search if config is pausing
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/back-bdb/search.c | 3 +++
servers/slapd/back-mdb/search.c | 3 +++
servers/slapd/back-perl/search.c | 2 +-
servers/slapd/back-sql/search.c | 1 +
4 files changed, 8 insertions(+), 1 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via 815eddda4c24eb7c48ad796c8a01243467d2cbdb (commit)
from 80e6316d37dd024bf32ed6db024f195c1b51ef7f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 815eddda4c24eb7c48ad796c8a01243467d2cbdb
Author: Howard Chu <hyc(a)openldap.org>
Date: Mon Dec 9 01:30:30 2013 -0800
ITS#7753 use $(MAKE) for tests
-----------------------------------------------------------------------
Summary of changes:
Makefile.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via 80e6316d37dd024bf32ed6db024f195c1b51ef7f (commit)
from f8efeb42783f958dd0dc997f8084e6b3b4502830 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 80e6316d37dd024bf32ed6db024f195c1b51ef7f
Author: Howard Chu <hyc(a)openldap.org>
Date: Sat Dec 7 08:36:14 2013 -0800
ITS#7759 avoid assert in parse_passwdpolicy_control
-----------------------------------------------------------------------
Summary of changes:
libraries/libldap/ppolicy.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, mdb.master has been updated
via 1ffb5e1cba200b0e362d1f7a56f09f8ad8081451 (commit)
from b77689f97572980d5de729e2fe6d8a5e6e9d6218 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1ffb5e1cba200b0e362d1f7a56f09f8ad8081451
Author: Howard Chu <hyc(a)symas.com>
Date: Wed Dec 4 18:42:49 2013 -0800
Fix GET_BOTH_RANGE
On near match, return the matched data.
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_5 has been updated
via fe5a757912c877f6805e39dc6fb302a682133463 (commit)
from c3d84bcd06d0017a7fad5f1d7932c590605e6369 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit fe5a757912c877f6805e39dc6fb302a682133463
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue Dec 3 14:16:20 2013 -0800
ITS#7757 plug memleak
-----------------------------------------------------------------------
Summary of changes:
libraries/libldap/cyrus.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_4 has been updated
via 28e182d7a7c7c9e13c1d8ac8698613254ca7eb39 (commit)
via 167482e63c79dfa326ed71871d93a5bc7377c81e (commit)
from a34e06985276b8bf0630f2e49c9f853c28ca2f34 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 28e182d7a7c7c9e13c1d8ac8698613254ca7eb39
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Wed Dec 4 10:37:45 2013 -0800
ITS#7757
commit 167482e63c79dfa326ed71871d93a5bc7377c81e
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue Dec 3 14:16:20 2013 -0800
ITS#7757 plug memleak
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 1 +
libraries/libldap/cyrus.c | 10 ++++++++--
2 files changed, 9 insertions(+), 2 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via f8efeb42783f958dd0dc997f8084e6b3b4502830 (commit)
from 1fcd116219680bd3b3a2a439242ad29f3eaca345 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f8efeb42783f958dd0dc997f8084e6b3b4502830
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue Dec 3 14:16:20 2013 -0800
ITS#7757 plug memleak
-----------------------------------------------------------------------
Summary of changes:
libraries/libldap/cyrus.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_4 has been updated
via a34e06985276b8bf0630f2e49c9f853c28ca2f34 (commit)
via 5b2687a0106a77977106b0a726f7e9e9026bdc8c (commit)
via b77689f97572980d5de729e2fe6d8a5e6e9d6218 (commit)
from a122865625c8245f65da20bf41e19f30c1c3b6a5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a34e06985276b8bf0630f2e49c9f853c28ca2f34
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Dec 2 09:51:20 2013 -0800
ITS#7756
commit 5b2687a0106a77977106b0a726f7e9e9026bdc8c
Merge: a122865 b77689f
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Dec 2 09:50:50 2013 -0800
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 1 +
libraries/liblmdb/mdb.c | 20 ++++++++++++++------
2 files changed, 15 insertions(+), 6 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_5 has been updated
via c3d84bcd06d0017a7fad5f1d7932c590605e6369 (commit)
via b77689f97572980d5de729e2fe6d8a5e6e9d6218 (commit)
from b9783ac6ff1e6ca946b2d060ddf76b9e656769cb (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c3d84bcd06d0017a7fad5f1d7932c590605e6369
Merge: b9783ac b77689f
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Dec 2 09:50:38 2013 -0800
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_5
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb.c | 20 ++++++++++++++------
1 files changed, 14 insertions(+), 6 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git