Please test RE24.
Thanks!
--Quanah
--
Quanah Gibson-Mount Principal Software Engineer Zimbra, Inc -------------------- Zimbra :: the leader in open source messaging and collaboration
----- "Quanah Gibson-Mount" quanah@zimbra.com wrote:
Please test RE24.
I'll run it on the build farm and see how it goes. It won't be ready for this release round of tests to everyone else though.
It will be for 2.4.19.
Gavin.
Quanah Gibson-Mount wrote:
Please test RE24.
Getting an error never seen before when building on AIX 5.3:
gcc -g -O2 -Wl,-blibpath:/opt/pware/lib:/usr/lib:/lib,-brtl -g -O2 -I../../include -I../../include -I/opt/pware/include -DLDAP_LIBRARY -c os-ip.c -DPIC -o .libs/os-ip.o os-ip.c: In function 'ldap_int_prepare_socket': os-ip.c:148: error: 'SOL_TCP' undeclared (first use in this function) os-ip.c:148: error: (Each undeclared identifier is reported only once os-ip.c:148: error: for each function it appears in.) make[2]: *** [os-ip.lo] Error 1 make[2]: Leaving directory `/stage/openldap/RE24/ldap/libraries/libldap'
Offending line:
if ( setsockopt( s, SOL_TCP, TCP_KEEPIDLE,
The SOL_TCP option is not defined on AIX. Can this be applied to SOL_SOCKET which is defined?
Cheers, Bill
Thanks!
--Quanah
--
Quanah Gibson-Mount Principal Software Engineer Zimbra, Inc
Zimbra :: the leader in open source messaging and collaboration
--On Thursday, August 13, 2009 7:44 AM -0400 William Jojo w.jojo@hvcc.edu wrote:
Offending line:
if ( setsockopt( s, SOL_TCP, TCP_KEEPIDLE,
The SOL_TCP option is not defined on AIX. Can this be applied to SOL_SOCKET which is defined?
Howard has fixed this, and it is synced to RE24. Please try again on AIX to confirm. There'll be more sync's coming soon, so just confirmation on this for the moment. Thanks. :)
--Quanah
--
Quanah Gibson-Mount Principal Software Engineer Zimbra, Inc -------------------- Zimbra :: the leader in open source messaging and collaboration
Quanah Gibson-Mount wrote:
--On Thursday, August 13, 2009 7:44 AM -0400 William Jojo w.jojo@hvcc.edu wrote:
Offending line:
if ( setsockopt( s, SOL_TCP, TCP_KEEPIDLE,
The SOL_TCP option is not defined on AIX. Can this be applied to SOL_SOCKET which is defined?
Howard has fixed this, and it is synced to RE24. Please try again on AIX to confirm. There'll be more sync's coming soon, so just confirmation on this for the moment. Thanks. :)
Ok, this patch should finish the issue:
<snip> --- ./libraries/libldap/os-ip.c.old 2009-08-14 07:56:15.000000000 -0400 +++ ./libraries/libldap/os-ip.c 2009-08-14 07:56:46.000000000 -0400 @@ -162,7 +162,7 @@ if ( ld->ld_options.ldo_keepalive_probes > 0 ) { #ifdef TCP_KEEPCNT - if ( setsockopt( s, SOL_TCP, TCP_KEEPCNT, + if ( setsockopt( s, SOL_SOCKET, TCP_KEEPCNT, (void*) &ld->ld_options.ldo_keepalive_probes,
sizeof(ld->ld_options.ldo_keepalive_probes) ) == AC_SOCKET_ERROR ) { @@ -179,7 +179,7 @@ if ( ld->ld_options.ldo_keepalive_interval > 0 ) { #ifdef TCP_KEEPINTVL - if ( setsockopt( s, SOL_TCP, TCP_KEEPINTVL, + if ( setsockopt( s, SOL_SOCKET, TCP_KEEPINTVL, (void*) &ld->ld_options.ldo_keepalive_interval,
sizeof(ld->ld_options.ldo_keepalive_interval) ) == AC_SOCKET_ERROR ) { </snip>
Also, on test test058-syncrepl-asymmetric I have seen (since 2.4.15 - and reported by others):
... Using ldapsearch to check that central master received second site1 backend... Waiting 1 seconds for syncrepl to receive changes... Waiting 2 seconds for syncrepl to receive changes... Waiting 3 seconds for syncrepl to receive changes... Waiting 4 seconds for syncrepl to receive changes... Waiting 5 seconds for syncrepl to receive changes... ERROR: Second site1 backend not replicated to central master ... Found 2 errors
Exiting with a false success status for now
./scripts/test058-syncrepl-asymmetric completed OK for hdb.
Should this just be ignored?
Cheers, Bill
--Quanah
--
Quanah Gibson-Mount Principal Software Engineer Zimbra, Inc
Zimbra :: the leader in open source messaging and collaboration
--On Friday, August 14, 2009 9:27 AM -0400 William Jojo w.jojo@hvcc.edu wrote:
Quanah Gibson-Mount wrote:
--On Thursday, August 13, 2009 7:44 AM -0400 William Jojo w.jojo@hvcc.edu wrote:
Offending line:
if ( setsockopt( s, SOL_TCP, TCP_KEEPIDLE,
The SOL_TCP option is not defined on AIX. Can this be applied to SOL_SOCKET which is defined?
Howard has fixed this, and it is synced to RE24. Please try again on AIX to confirm. There'll be more sync's coming soon, so just confirmation on this for the moment. Thanks. :)
Ok, this patch should finish the issue:
Hm.. Howard was getting rid of SOL_TCP entirely... Must have missed those other two. ;) He replaced it with IPPROTO_TCP. I'm sure he'll finish that up once he's awake. :P
--Quanah
--
Quanah Gibson-Mount Principal Software Engineer Zimbra, Inc -------------------- Zimbra :: the leader in open source messaging and collaboration
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Aug 13, 2009, at 02:59 , Quanah Gibson-Mount wrote:
Please test RE24.
Tests run fine on OS X/Intel 10.5.8
jens
--On Wednesday, August 12, 2009 5:59 PM -0700 Quanah Gibson-Mount quanah@zimbra.com wrote:
Please test RE24.
A few more fixes, mainly back-meta, back-monitor, and slapo-translucent.
--Quanah
--
Quanah Gibson-Mount Principal Software Engineer Zimbra, Inc -------------------- Zimbra :: the leader in open source messaging and collaboration
Quanah Gibson-Mount quanah@zimbra.com writes:
--On Wednesday, August 12, 2009 5:59 PM -0700 Quanah Gibson-Mount quanah@zimbra.com wrote:
Please test RE24.
A few more fixes, mainly back-meta, back-monitor, and slapo-translucent.
OK for me, openSUSE-11.1-x86_64
-Dieter
Dieter Kluenter wrote:
Quanah Gibson-Mount quanah@zimbra.com writes:
--On Wednesday, August 12, 2009 5:59 PM -0700 Quanah Gibson-Mount quanah@zimbra.com wrote:
Please test RE24.
A few more fixes, mainly back-meta, back-monitor, and slapo-translucent.
OK for me, openSUSE-11.1-x86_64
Also ok for me on openSUSE Linux 11.1 i586 (with BDB, cyrus-sasl and MIT Kerberos shipped with openSUSE Linux).
Ciao, Michael.
Dieter Kluenter wrote:
Quanah Gibson-Mount quanah@zimbra.com writes:
--On Wednesday, August 12, 2009 5:59 PM -0700 Quanah Gibson-Mount quanah@zimbra.com wrote:
Please test RE24.
A few more fixes, mainly back-meta, back-monitor, and slapo-translucent.
OK for me, openSUSE-11.1-x86_64
Also ok for me on openSUSE Linux 11.1 i586 (with BDB, cyrus-sasl and MIT Kerberos shipped with openSUSE Linux).
Ciao, Michael.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Aug 14, 2009, at 23:08 , Quanah Gibson-Mount wrote:
--On Wednesday, August 12, 2009 5:59 PM -0700 Quanah Gibson-Mount <quanah@zimbra.com
wrote:
Please test RE24.
A few more fixes, mainly back-meta, back-monitor, and slapo- translucent.
No issues on Mac OS X 10.5.8/Intel.
jens
SEGVs from Round 1:
https://www.nbcs.rutgers.edu/~richton/bt-200908131638.txt
https://www.nbcs.rutgers.edu/~richton/bt-200908140452.txt
Compiling for "Round 2" now.
Aaron Richton wrote:
SEGVs from Round 1:
Looks like this is related to recent liblber changes. What's the test environment that caused this? Can you reproduce it? And can you try again using the 2.4.17 liblber?