similar to: Problem when I try to compil samba 3.4.5

Displaying 20 results from an estimated 200 matches similar to: "Problem when I try to compil samba 3.4.5"

2019 Aug 22
3
Winbind timeouts/hangs(?)
Hello group, I'm hitting a problem where group resolution through winbind seems to time out sometimes, which in turn causes invalid group information to propagate to Cronjob users or similar. The profiling information that winbind spits out is the following: [2019/08/22 14:34:14.809540, 0] ../source3/winbindd/winbindd.c:1058(winbind_client_processed) winbind_client_processed: request
2019 Aug 22
0
Winbind timeouts/hangs(?)
On 22/08/2019 13:41, Heiko Wundram via samba wrote: > Hello group, > > I'm hitting a problem where group resolution through winbind seems to > time out sometimes, which in turn causes invalid group information to > propagate to Cronjob users or similar. The profiling information that > winbind spits out is the following: > > [2019/08/22 14:34:14.809540,? 0] >
2017 Dec 06
1
[PATCH RFC 1/4] crypto: engine - Permit to enqueue all async requests
On 29/11/17 09:41, Corentin Labbe wrote: > The crypto engine could actually only enqueue hash and ablkcipher request. > This patch permit it to enqueue any type of crypto_async_request. > > Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com> > --- > crypto/crypto_engine.c | 188 +++++++++++------------------------------------- > include/crypto/engine.h | 46
2017 Dec 06
1
[PATCH RFC 1/4] crypto: engine - Permit to enqueue all async requests
On 29/11/17 09:41, Corentin Labbe wrote: > The crypto engine could actually only enqueue hash and ablkcipher request. > This patch permit it to enqueue any type of crypto_async_request. > > Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com> > --- > crypto/crypto_engine.c | 188 +++++++++++------------------------------------- > include/crypto/engine.h | 46
2018 Jan 10
1
[PATCH 2/6] crypto: engine - Permit to enqueue all async requests
On 03/01/18 21:11, Corentin Labbe wrote: > The crypto engine could actually only enqueue hash and ablkcipher request. > This patch permit it to enqueue any type of crypto_async_request. > > Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com> > --- > crypto/crypto_engine.c | 230 ++++++++++++++++++++++++------------------------ > include/crypto/engine.h | 59
2015 Jun 16
2
winbind bug - possible overflow
On Tue, Jun 16, 2015 at 09:12:24AM -0700, Jeremy Allison wrote: > Not that I know of. Can you run winbindd under valgrind ? > Should help debug this. this is the only waring regardless read/write that valgrind reports: ==16475== Syscall param writev(vector[...]) points to uninitialised byte(s) ==16475== at 0xBB32337: writev (in /usr/lib64/libc-2.17.so) ==16475== by 0xA4AC8E4:
2017 Jun 16
2
compil error samba 3.6.5
hello, When I compil the samba new version samba 3.6.5, on Debian jessie 8.8, most of the time I've got an error message. I can compile without problems samba 3.6.4 on the running servers. It doesn't happen on a fresh install Thanks for your help, - serge. 'configure' finished successfully (1m56.906s) WAF_MAKE=1 python ./buildtools/bin/waf build Waf: Entering directory
2003 Mar 03
3
Problem of access samba from rh8
Hello, I already setup a samba server as PDC for windows client to logon and working fine now with the following config: - redhat 7.3 - samba 2.2.7a Then I try to access the samba share from Redhat 8, I can use smbclient to access the share without problem but I can't access the share with "KDE's Konqueror" (smb://NetbiosName/), it can show all shares, when I double one of
2013 May 17
2
Continued compilation errors with samba 3.6.15
? Hello. ?I'm trying to compile samba on a?armnas. ? First I execute: autogen.sh configure make ? And got the following error: ? ? ? ? Compiling ../libcli/samsync/decrypt.c Linking bin/net utils/net_rpc.o: In function `net_rpc': net_rpc.c:(.text+0x88): undefined reference to `libnetapi_net_init' utils/net_rpc.o: In function `net_rpc_file': net_rpc.c:(.text+0x2d74): undefined
2017 Dec 07
0
[PATCH RFC 1/4] crypto: engine - Permit to enqueue all async requests
On Wed, Dec 06, 2017 at 11:02:23AM +0000, Fabien DESSENNE wrote: > > > On 29/11/17 09:41, Corentin Labbe wrote: > > The crypto engine could actually only enqueue hash and ablkcipher request. > > This patch permit it to enqueue any type of crypto_async_request. > > > > Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com> > > --- > >
2013 Apr 14
10
[samba4] crash of winbind after "ls -l /usr/local/samba/var/locks/sysvol"
Hi, I used Samba 4.0.5 in Wheezy. Here is that I have done: --------------------------------------------------------------- samba-tool domain provision --realm=CHEZMOI.PRIV --domain=CHEZMOI \ --server-role=dc --dns-backend=SAMBA_INTERNAL --adminpass='+toto123' echo "nameserver 192.168.0.21" > /etc/resolv.conf samba ln -s /usr/local/samba/lib/libnss_winbind.so
2017 Nov 29
0
[PATCH RFC 1/4] crypto: engine - Permit to enqueue all async requests
The crypto engine could actually only enqueue hash and ablkcipher request. This patch permit it to enqueue any type of crypto_async_request. Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com> --- crypto/crypto_engine.c | 188 +++++++++++------------------------------------- include/crypto/engine.h | 46 +++++------- 2 files changed, 60 insertions(+), 174 deletions(-) diff
2017 Nov 29
9
[PATCH RFC 0/4] crypto: engine - Permit to enqueue all async requests
Hello The current crypto_engine support only ahash and ablkcipher. My first patch which try to add skcipher was Nacked, it will add too many functions and adding other algs(aead, asymetric_key) will make the situation worst. This patchset remove all algs specific stuff and now only process generic crypto_async_request. The requests handler function pointer are now moved out of struct engine and
2017 Nov 29
9
[PATCH RFC 0/4] crypto: engine - Permit to enqueue all async requests
Hello The current crypto_engine support only ahash and ablkcipher. My first patch which try to add skcipher was Nacked, it will add too many functions and adding other algs(aead, asymetric_key) will make the situation worst. This patchset remove all algs specific stuff and now only process generic crypto_async_request. The requests handler function pointer are now moved out of struct engine and
2018 Jan 03
0
[PATCH 2/6] crypto: engine - Permit to enqueue all async requests
The crypto engine could actually only enqueue hash and ablkcipher request. This patch permit it to enqueue any type of crypto_async_request. Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com> --- crypto/crypto_engine.c | 230 ++++++++++++++++++++++++------------------------ include/crypto/engine.h | 59 +++++++------ 2 files changed, 148 insertions(+), 141 deletions(-) diff
2018 Jan 26
0
[PATCH v2 2/6] crypto: engine - Permit to enqueue all async requests
The crypto engine could actually only enqueue hash and ablkcipher request. This patch permit it to enqueue any type of crypto_async_request. Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com> Tested-by: Fabien Dessenne <fabien.dessenne at st.com> --- crypto/crypto_engine.c | 301 ++++++++++++++++++++++++++---------------------- include/crypto/engine.h | 68 ++++++----- 2
2018 Jan 03
11
[PATCH 0/6] crypto: engine - Permit to enqueue all async requests
Hello The current crypto_engine support only ahash and ablkcipher request. My first patch which try to add skcipher was Nacked, it will add too many functions and adding other algs(aead, asymetric_key) will make the situation worst. This patchset remove all algs specific stuff and now only process generic crypto_async_request. The requests handler function pointer are now moved out of struct
2018 Jan 26
10
[PATCH v2 0/6] crypto: engine - Permit to enqueue all async requests
Hello The current crypto_engine support only ahash and ablkcipher request. My first patch which try to add skcipher was Nacked, it will add too many functions and adding other algs(aead, asymetric_key) will make the situation worst. This patchset remove all algs specific stuff and now only process generic crypto_async_request. The requests handler function pointer are now moved out of struct
2018 Jan 26
10
[PATCH v2 0/6] crypto: engine - Permit to enqueue all async requests
Hello The current crypto_engine support only ahash and ablkcipher request. My first patch which try to add skcipher was Nacked, it will add too many functions and adding other algs(aead, asymetric_key) will make the situation worst. This patchset remove all algs specific stuff and now only process generic crypto_async_request. The requests handler function pointer are now moved out of struct
2015 Jun 16
2
winbind bug - possible overflow
Hello, I'm facing a bug with winbind. If I request groups for particular domain user, winbind cache gets corrupted. My winbind version is 4.1.12-23.el7_1 (Centos 7.1, x86_64). 1) this is correct UID to SID mapping: wbinfo -U 100152 S-1-5-21-3451901064-902568176-4053310204-180212 2) I request groups info for a user: id -G -n 209459 [reply with 33 groups] 3) I request UID to SID mapping