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 85003d8a54e23d2f93f18c2e6c75d80fecb6f75a (commit)
from 7915f51889eec1bbaff386f997ef885162979a1c (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 85003d8a54e23d2f93f18c2e6c75d80fecb6f75a
Author: Emily Backes <ebackes(a)symas.com>
Date: Mon Sep 30 15:14:22 2013 -0700
ITS#7712 Fix lock ordering in libldap abandon
-----------------------------------------------------------------------
Summary of changes:
libraries/libldap/abandon.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 e3f6c152c5ab1a9810a1d3ed7de9a3252ff9e35a (commit)
via 2980bd30f5e7dcb5918ac26d82f658ddb05eabe7 (commit)
via 31cfca9316da2b2b901d384811d80a328eefbcdb (commit)
via 7bdb5be0b572a4ff952456a2faca9ecb7a6e8786 (commit)
via 52cb8b3417386e2cacee98401a797d8dd1a81020 (commit)
via 8e1d10e82887a0b8fdea6151c73377f9cabeb517 (commit)
via a3b3482854698f520135a49de930df4b788694dd (commit)
via bc48a40621ee26f15503dbd16321c972648b4769 (commit)
via cfe262dce9a0be4791db4720aa308d5a6ecb8888 (commit)
via 5b96d68fafd1732790ac5f887e5050033a48da42 (commit)
via 5b21307f29ccda563e5f0d82294083c841b0e927 (commit)
via 3335b2583490f10c3f273391b48e1e2987022f4c (commit)
from 912e09fd04e0512e6f764176a4a0a2ab009c87d1 (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 e3f6c152c5ab1a9810a1d3ed7de9a3252ff9e35a
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:21:11 2013 +0200
Drop unneeded code.
MDB_txn.mt_toggle: Use (mt_txnid & 1) instead.
Drop error checks which will be repeated.
mdb_cursor_set(): Turn assert into if/return to match the above.
mdb_cursor_del(): 'flags' are now used as bitflags.
commit 2980bd30f5e7dcb5918ac26d82f658ddb05eabe7
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:21:11 2013 +0200
Clean up and simplify mdb_page_search().
Only named DBs can have DB_STALE, and they do not use MDB_PS_MODIFY.
Replace magic key values with flags. Drop duplicated comments at
mdb_page_search_root() vs. mdb_page_search(), and rephrase.
commit 31cfca9316da2b2b901d384811d80a328eefbcdb
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:20:42 2013 +0200
Tweak MDB_DEBUG output
commit 7bdb5be0b572a4ff952456a2faca9ecb7a6e8786
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:20:05 2013 +0200
Rename SWAP() to avoid conflict with sqlightning.
Happened since sqlightning #includes mdb.c, midl.c.
commit 52cb8b3417386e2cacee98401a797d8dd1a81020
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:13:27 2013 +0200
mdb_page_unspill(): Rename local vars.
The names have caused bugs, "txn" was treated as
the current transaction.
commit 8e1d10e82887a0b8fdea6151c73377f9cabeb517
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:13:27 2013 +0200
ITS#7515 Fix mdb_page_unspill() in nested txn.
Malloc a page in this txn, not in a parent.
commit a3b3482854698f520135a49de930df4b788694dd
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:13:27 2013 +0200
ITS#7515 Fix mdb_txn_commit(nested txn with spills).
Catch malloc error.
Fix hunt for dirty vs spilled pages: Don't leave x at a deleted pageno.
Cleanup: Factor out variables, squash pages already marked for deletion.
commit bc48a40621ee26f15503dbd16321c972648b4769
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:13:27 2013 +0200
ITS#7515 Fix mt_dirty_room in nested txns.
Fix description & code: Also ignore dirty pages hidden by
spilled pages, as they won't merge into our dirty_list.
Update it in mdb_page_flush() instead of mdb_page_spill().
commit cfe262dce9a0be4791db4720aa308d5a6ecb8888
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:13:27 2013 +0200
ITS#7515 mdb_pages_xkeep(): Careful about xcursors.
Don't prod sub-pages or pages referring to uninitialized xcursors.
commit 5b96d68fafd1732790ac5f887e5050033a48da42
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:13:27 2013 +0200
mdb_pages_xkeep(): Reformat, use common flag mask
commit 5b21307f29ccda563e5f0d82294083c841b0e927
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:09:47 2013 +0200
Update MDB documentation and comments.
commit 3335b2583490f10c3f273391b48e1e2987022f4c
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Mon Sep 23 20:07:29 2013 +0200
ITS#7682 mdb_env_copy(): Avoid Linux O_DIRECT bug.
Use fcntl() to set the flag. Linux open(,O_DIRECT...) can create
the file even on failure, if the filesystem lacks O_DIRECT support.
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/lmdb.h | 18 ++-
libraries/liblmdb/mdb.c | 339 ++++++++++++++++++++--------------------------
libraries/liblmdb/midl.c | 12 +-
libraries/liblmdb/midl.h | 2 +-
4 files changed, 163 insertions(+), 208 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 912e09fd04e0512e6f764176a4a0a2ab009c87d1 (commit)
via 0144da6eab00cf5f321d5c6794175485ba3efefd (commit)
from 0f842a271085c198eb1df1ce3e177122c7a3c6ae (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 912e09fd04e0512e6f764176a4a0a2ab009c87d1
Author: Howard Chu <hyc(a)symas.com>
Date: Sun Sep 15 13:08:29 2013 -0700
ITS#7681 fix 18a07eb7c2dc33372455a6040984cd6b699b41a5
Set rc=0 when taking the SET_RANGE branch
commit 0144da6eab00cf5f321d5c6794175485ba3efefd
Author: Howard Chu <hyc(a)symas.com>
Date: Sat Sep 21 14:37:11 2013 -0700
ITS#7701 fix mdb_rebalance
Must copy tmp cursor back to real cursor when merging into tmp cursor.
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb.c | 11 ++++++++---
1 files changed, 8 insertions(+), 3 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 7915f51889eec1bbaff386f997ef885162979a1c (commit)
from a672161ab7061940acb87e9d5b3140ddca44bac6 (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 7915f51889eec1bbaff386f997ef885162979a1c
Author: Howard Chu <hyc(a)symas.com>
Date: Thu Sep 19 15:58:40 2013 -0700
Fix modrdn unique check
Just check normalized name match. Case-changes are allowed.
-----------------------------------------------------------------------
Summary of changes:
contrib/slapd-modules/samba4/rdnval.c | 9 +++------
1 files changed, 3 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 b165fbda79b30afe4eb9d8403199ea015e23015a (commit)
from c7244671cd994ba6793e576a9eee5f9184d94920 (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 b165fbda79b30afe4eb9d8403199ea015e23015a
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Sep 19 15:03:53 2013 -0700
Add maxsize parameter for mdb examples
-----------------------------------------------------------------------
Summary of changes:
doc/guide/admin/quickstart.sdf | 9 ++++++---
doc/guide/admin/replication.sdf | 8 +++++---
doc/guide/admin/slapdconfig.sdf | 4 ++--
servers/slapd/slapd.conf | 1 +
4 files changed, 14 insertions(+), 8 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 a672161ab7061940acb87e9d5b3140ddca44bac6 (commit)
from 4eecd27729bed0ac6da0c821a842afb478118bf3 (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 a672161ab7061940acb87e9d5b3140ddca44bac6
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Sep 19 15:03:53 2013 -0700
Add maxsize parameter for mdb examples
-----------------------------------------------------------------------
Summary of changes:
doc/guide/admin/quickstart.sdf | 9 ++++++---
doc/guide/admin/replication.sdf | 8 +++++---
doc/guide/admin/slapdconfig.sdf | 4 ++--
servers/slapd/slapd.conf | 1 +
4 files changed, 14 insertions(+), 8 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 c7244671cd994ba6793e576a9eee5f9184d94920 (commit)
via ee07f34b7c484987be4ac1c29684eddd5ad07491 (commit)
from f8d97bf6eeb1b743a04fb7fc13186e833c7efe41 (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 c7244671cd994ba6793e576a9eee5f9184d94920
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Sep 19 14:28:12 2013 -0700
Update example slapd.conf bits to use mdb instead of bdb
commit ee07f34b7c484987be4ac1c29684eddd5ad07491
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Sep 19 14:23:11 2013 -0700
Switch example slapd.conf to use mdb instead of bdb
-----------------------------------------------------------------------
Summary of changes:
contrib/slapd-modules/allop/slapo-allop.5 | 2 +-
contrib/slapd-modules/lastmod/slapo-lastmod.5 | 2 +-
contrib/slapd-modules/smbk5pwd/README | 2 +-
contrib/slapd-modules/usn/README | 2 +-
doc/man/man5/slapd-relay.5 | 2 +-
doc/man/man5/slapd.conf.5 | 6 ++++--
doc/man/man5/slapo-accesslog.5 | 4 ++--
doc/man/man5/slapo-dyngroup.5 | 2 +-
doc/man/man5/slapo-ppolicy.5 | 2 +-
doc/man/man5/slapo-valsort.5 | 2 +-
servers/slapd/slapd.conf | 5 ++---
11 files changed, 16 insertions(+), 15 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 206c4150d40e935c7ea8ac3048ec94bb0268c4f4 (commit)
from b77951f92b7e027c80e0a1770f2c34ed340cc7bb (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 206c4150d40e935c7ea8ac3048ec94bb0268c4f4
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Sep 19 14:31:25 2013 -0700
Fix mdb missing from list of backends
-----------------------------------------------------------------------
Summary of changes:
doc/man/man5/slapd.conf.5 | 2 ++
1 files changed, 2 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, master has been updated
via 4eecd27729bed0ac6da0c821a842afb478118bf3 (commit)
via 74c52fb1364ca5685c9e18e2e53ec45586780f3e (commit)
from 4562f89a90988a962d2c9451dafc9e929b7237bb (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 4eecd27729bed0ac6da0c821a842afb478118bf3
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Sep 19 14:28:12 2013 -0700
Update example slapd.conf bits to use mdb instead of bdb
commit 74c52fb1364ca5685c9e18e2e53ec45586780f3e
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Sep 19 14:23:11 2013 -0700
Switch example slapd.conf to use mdb instead of bdb
-----------------------------------------------------------------------
Summary of changes:
contrib/slapd-modules/allop/slapo-allop.5 | 2 +-
contrib/slapd-modules/lastmod/slapo-lastmod.5 | 2 +-
contrib/slapd-modules/smbk5pwd/README | 2 +-
contrib/slapd-modules/usn/README | 2 +-
doc/man/man5/slapd-relay.5 | 2 +-
doc/man/man5/slapd.conf.5 | 6 ++++--
doc/man/man5/slapo-accesslog.5 | 4 ++--
doc/man/man5/slapo-dyngroup.5 | 2 +-
doc/man/man5/slapo-ppolicy.5 | 2 +-
doc/man/man5/slapo-valsort.5 | 2 +-
servers/slapd/slapd.conf | 5 ++---
11 files changed, 16 insertions(+), 15 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 f8d97bf6eeb1b743a04fb7fc13186e833c7efe41 (commit)
via e1f129d6feaf021f406efbc2dde3e8072443eeea (commit)
from c39cc996fef15453a19aefc68e188bf65ec7657e (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 f8d97bf6eeb1b743a04fb7fc13186e833c7efe41
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Sep 19 13:40:11 2013 -0700
Updated configure
commit e1f129d6feaf021f406efbc2dde3e8072443eeea
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Sep 19 13:38:37 2013 -0700
Fix option bits
-----------------------------------------------------------------------
Summary of changes:
configure | 26 +++++++++++++-------------
configure.in | 4 ++--
2 files changed, 15 insertions(+), 15 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git