autobuild[sn-devel-104]: intermittent test failure detected

2016-10-21 Thread autobuild
The autobuild test system (on sn-devel-104) has detected an intermittent 
failing test in 
the current master tree.

The autobuild log of the failure is available here:

   http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-22-0410/flakey.log

The samba build logs are available here:

   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-22-0410/samba.stderr
   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-22-0410/samba.stdout
  
The top commit at the time of the failure was:

commit 92a0a56c3852726e0812d260e043957c879aefa4
Author: Michael Adam 
Date:   Fri Oct 21 00:15:06 2016 +0200

vfs:glusterfs: preallocate result for glfs_realpath

This makes us independent of the allocation
method used inside glfs_realpath.

Signed-off-by: Michael Adam 
Reviewed-by: Ira Cooper 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Sat Oct 22 00:28:41 CEST 2016 on sn-devel-144



[SCM] Samba Shared Repository - branch master updated

2016-10-21 Thread Jeremy Allison
The branch, master has been updated
   via  92a0a56 vfs:glusterfs: preallocate result for glfs_realpath
   via  b9436f5 s3:util_cmdline: make struct user_auth_info private to 
util_cmdline.c
   via  30013ef s3:libsmb: make use of proper allocated struct 
user_auth_info in SMBC_opendir_ctx()
   via  87c3ff0 s3:libsmb: make use of get_cmdline_auth_info_* helper 
functions in get_ipc_connect()
   via  5cb394a s3:lib/netapi: make use of 
set_cmdline_auth_info_signing_state_raw()
   via  a0792eb s3:util_cmdline: add 
set_cmdline_auth_info_signing_state_raw() helper function
  from  ad60b8c s3: selftest: Add test for orphan 'lost-XXX' directories in 
streams_depot.

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 92a0a56c3852726e0812d260e043957c879aefa4
Author: Michael Adam 
Date:   Fri Oct 21 00:15:06 2016 +0200

vfs:glusterfs: preallocate result for glfs_realpath

This makes us independent of the allocation
method used inside glfs_realpath.

Signed-off-by: Michael Adam 
Reviewed-by: Ira Cooper 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Sat Oct 22 00:28:41 CEST 2016 on sn-devel-144

commit b9436f5348213cc2a1b7fd670854bed4e21c5ea9
Author: Stefan Metzmacher 
Date:   Fri Oct 21 10:23:21 2016 +0200

s3:util_cmdline: make struct user_auth_info private to util_cmdline.c

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Jeremy Allison 

commit 30013efe39a736af6cc0143158c90401925ba48e
Author: Stefan Metzmacher 
Date:   Fri Oct 21 10:17:59 2016 +0200

s3:libsmb: make use of proper allocated struct user_auth_info in 
SMBC_opendir_ctx()

We should avoid to dereference struct user_auth_info.

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Jeremy Allison 

commit 87c3ff0f3bc2d7d162107ae65ec81ade36be6c66
Author: Stefan Metzmacher 
Date:   Fri Oct 21 10:17:59 2016 +0200

s3:libsmb: make use of get_cmdline_auth_info_* helper functions in 
get_ipc_connect()

We should avoid to dereference struct user_auth_info.

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Jeremy Allison 

commit 5cb394a288722e8135ffad46e65725a3a6cfb2d9
Author: Stefan Metzmacher 
Date:   Fri Oct 21 10:17:04 2016 +0200

s3:lib/netapi: make use of set_cmdline_auth_info_signing_state_raw()

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Jeremy Allison 

commit a0792eba6c474f11ec8307c00d4e39ebf81e25da
Author: Stefan Metzmacher 
Date:   Fri Oct 21 10:16:26 2016 +0200

s3:util_cmdline: add set_cmdline_auth_info_signing_state_raw() helper 
function

Signed-off-by: Stefan Metzmacher 
Reviewed-by: Jeremy Allison 

---

Summary of changes:
 source3/include/auth_info.h | 16 +++-
 source3/lib/netapi/cm.c |  2 +-
 source3/lib/util_cmdline.c  | 20 
 source3/libsmb/cliconnect.c |  6 +++---
 source3/libsmb/libsmb_dir.c | 17 ++---
 source3/modules/vfs_glusterfs.c | 15 ++-
 6 files changed, 47 insertions(+), 29 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/include/auth_info.h b/source3/include/auth_info.h
index d8d8317..04ac422 100644
--- a/source3/include/auth_info.h
+++ b/source3/include/auth_info.h
@@ -20,19 +20,7 @@
 #ifndef _AUTH_INFO_H
 #define _AUTH_INFO_H
 
-struct user_auth_info {
-   char *username;
-   char *domain;
-   char *password;
-   bool got_pass;
-   bool use_kerberos;
-   int signing_state;
-   bool smb_encrypt;
-   bool use_machine_account;
-   bool fallback_after_kerberos;
-   bool use_ccache;
-   bool use_pw_nt_hash;
-};
+struct user_auth_info;
 
 struct user_auth_info *user_auth_info_init(TALLOC_CTX *mem_ctx);
 const char *get_cmdline_auth_info_username(const struct user_auth_info 
*auth_info);
@@ -46,6 +34,8 @@ void set_cmdline_auth_info_password(struct user_auth_info 
*auth_info,
 const char *get_cmdline_auth_info_password(const struct user_auth_info 
*auth_info);
 bool set_cmdline_auth_info_signing_state(struct user_auth_info *auth_info,
 const char *arg);
+void set_cmdline_auth_info_signing_state_raw(struct user_auth_info *auth_info,
+int signing_state);
 int get_cmdline_auth_info_signing_state(const struct user_auth_info 
*auth_info);
 void set_cmdline_auth_info_use_ccache(struct user_auth_info *auth_info,
  bool b);
diff --git 

autobuild[sn-devel-144]: intermittent test failure detected

2016-10-21 Thread autobuild
The autobuild test system (on sn-devel-144) has detected an intermittent 
failing test in 
the current master tree.

The autobuild log of the failure is available here:

   http://git.samba.org/autobuild.flakey.sn-devel-144/2016-10-22-0025/flakey.log

The samba build logs are available here:

   
http://git.samba.org/autobuild.flakey.sn-devel-144/2016-10-22-0025/samba.stderr
   
http://git.samba.org/autobuild.flakey.sn-devel-144/2016-10-22-0025/samba.stdout
  
The top commit at the time of the failure was:

commit ad60b8cc48b1095ce97170eed3d09fca7181a3bc
Author: Jeremy Allison 
Date:   Wed Oct 19 16:33:52 2016 -0700

s3: selftest: Add test for orphan 'lost-XXX' directories in streams_depot.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12384

Signed-off-by: Jeremy Allison 
Reviewed-by: Uri Simchoni 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Fri Oct 21 04:48:52 CEST 2016 on sn-devel-144



autobuild[sn-devel-104]: intermittent test failure detected

2016-10-21 Thread autobuild
The autobuild test system (on sn-devel-104) has detected an intermittent 
failing test in 
the current master tree.

The autobuild log of the failure is available here:

   http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-22-0008/flakey.log

The samba build logs are available here:

   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-22-0008/samba.stderr
   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-22-0008/samba.stdout
  
The top commit at the time of the failure was:

commit ad60b8cc48b1095ce97170eed3d09fca7181a3bc
Author: Jeremy Allison 
Date:   Wed Oct 19 16:33:52 2016 -0700

s3: selftest: Add test for orphan 'lost-XXX' directories in streams_depot.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12384

Signed-off-by: Jeremy Allison 
Reviewed-by: Uri Simchoni 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Fri Oct 21 04:48:52 CEST 2016 on sn-devel-144



autobuild[sn-devel-104]: intermittent test failure detected

2016-10-21 Thread autobuild
The autobuild test system (on sn-devel-104) has detected an intermittent 
failing test in 
the current master tree.

The autobuild log of the failure is available here:

   http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-2004/flakey.log

The samba build logs are available here:

   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-2004/samba.stderr
   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-2004/samba.stdout
  
The top commit at the time of the failure was:

commit ad60b8cc48b1095ce97170eed3d09fca7181a3bc
Author: Jeremy Allison 
Date:   Wed Oct 19 16:33:52 2016 -0700

s3: selftest: Add test for orphan 'lost-XXX' directories in streams_depot.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12384

Signed-off-by: Jeremy Allison 
Reviewed-by: Uri Simchoni 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Fri Oct 21 04:48:52 CEST 2016 on sn-devel-144



autobuild[sn-devel-104]: intermittent test failure detected

2016-10-21 Thread autobuild
The autobuild test system (on sn-devel-104) has detected an intermittent 
failing test in 
the current master tree.

The autobuild log of the failure is available here:

   http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-1604/flakey.log

The samba build logs are available here:

   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-1604/samba.stderr
   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-1604/samba.stdout
  
The top commit at the time of the failure was:

commit ad60b8cc48b1095ce97170eed3d09fca7181a3bc
Author: Jeremy Allison 
Date:   Wed Oct 19 16:33:52 2016 -0700

s3: selftest: Add test for orphan 'lost-XXX' directories in streams_depot.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12384

Signed-off-by: Jeremy Allison 
Reviewed-by: Uri Simchoni 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Fri Oct 21 04:48:52 CEST 2016 on sn-devel-144



autobuild[sn-devel-104]: intermittent test failure detected

2016-10-21 Thread autobuild
The autobuild test system (on sn-devel-104) has detected an intermittent 
failing test in 
the current master tree.

The autobuild log of the failure is available here:

   http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-1205/flakey.log

The samba build logs are available here:

   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-1205/samba.stderr
   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-1205/samba.stdout
  
The top commit at the time of the failure was:

commit ad60b8cc48b1095ce97170eed3d09fca7181a3bc
Author: Jeremy Allison 
Date:   Wed Oct 19 16:33:52 2016 -0700

s3: selftest: Add test for orphan 'lost-XXX' directories in streams_depot.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12384

Signed-off-by: Jeremy Allison 
Reviewed-by: Uri Simchoni 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Fri Oct 21 04:48:52 CEST 2016 on sn-devel-144



[SCM] Socket Wrapper Repository - branch master updated

2016-10-21 Thread Michael Adam
The branch, master has been updated
   via  86fd744 swrap: Mark flags in swrap_accept4 as unused
   via  46615cd swrap: Fix the build on BSD and Solaris
  from  d8cf3b0 swrap: Handle threads that fork

https://git.samba.org/?p=socket_wrapper.git;a=shortlog;h=master


- Log -
commit 86fd744333ddc74d32d301f316ce83e3a2d0c844
Author: Andreas Schneider 
Date:   Fri Oct 21 08:04:02 2016 +0200

swrap: Mark flags in swrap_accept4 as unused

This removes a compiler warning on non-Linux systems.

Signed-off-by: Andreas Schneider 
Reviewed-by: Michael Adam 

commit 46615cd9119e0e66175768e1757c9bc3e15b9cc8
Author: Andreas Schneider 
Date:   Fri Oct 21 07:56:24 2016 +0200

swrap: Fix the build on BSD and Solaris

Signed-off-by: Andreas Schneider 
Reviewed-by: Michael Adam 

---

Summary of changes:
 src/socket_wrapper.c | 6 ++
 1 file changed, 6 insertions(+)


Changeset truncated at 500 lines:

diff --git a/src/socket_wrapper.c b/src/socket_wrapper.c
index 6679d5c..fb92904 100644
--- a/src/socket_wrapper.c
+++ b/src/socket_wrapper.c
@@ -142,6 +142,8 @@ enum swrap_dbglvl_e {
 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
 #endif
 
+#define UNUSED(x) (void)(x)
+
 #ifdef IPV6_PKTINFO
 # ifndef IPV6_RECVPKTINFO
 #  define IPV6_RECVPKTINFO IPV6_PKTINFO
@@ -512,7 +514,9 @@ struct swrap_libc_symbols {
 #endif
SWRAP_SYMBOL_ENTRY(socket);
SWRAP_SYMBOL_ENTRY(socketpair);
+#ifdef HAVE_TIMERFD_CREATE
SWRAP_SYMBOL_ENTRY(timerfd_create);
+#endif
SWRAP_SYMBOL_ENTRY(write);
SWRAP_SYMBOL_ENTRY(writev);
 };
@@ -2882,6 +2886,7 @@ static int swrap_accept(int s,
 #ifdef HAVE_ACCEPT4
return libc_accept4(s, addr, addrlen, flags);
 #else
+   UNUSED(flags);
return libc_accept(s, addr, addrlen);
 #endif
}
@@ -2899,6 +2904,7 @@ static int swrap_accept(int s,
 #ifdef HAVE_ACCEPT4
ret = libc_accept4(s, _addr.sa.s, _addr.sa_socklen, flags);
 #else
+   UNUSED(flags);
ret = libc_accept(s, _addr.sa.s, _addr.sa_socklen);
 #endif
if (ret == -1) {


-- 
Socket Wrapper Repository



autobuild[sn-devel-104]: intermittent test failure detected

2016-10-21 Thread autobuild
The autobuild test system (on sn-devel-104) has detected an intermittent 
failing test in 
the current master tree.

The autobuild log of the failure is available here:

   http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-0809/flakey.log

The samba build logs are available here:

   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-0809/samba.stderr
   
http://git.samba.org/autobuild.flakey.sn-devel-104/2016-10-21-0809/samba.stdout
  
The top commit at the time of the failure was:

commit ad60b8cc48b1095ce97170eed3d09fca7181a3bc
Author: Jeremy Allison 
Date:   Wed Oct 19 16:33:52 2016 -0700

s3: selftest: Add test for orphan 'lost-XXX' directories in streams_depot.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12384

Signed-off-by: Jeremy Allison 
Reviewed-by: Uri Simchoni 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Fri Oct 21 04:48:52 CEST 2016 on sn-devel-144