Displaying 5 results from an estimated 5 matches for "conn_new".
2001 Dec 19
2
Out of connections: here too
...----
[2001/09/20 13:15:21, 0] lib/debug.c:reopen_logs(335)
? Unable to open new log file /var/log/samba.log: Too many open files
-----------------------
Now (2.2.2) we are having the following, same basic problem it seems (same
symptoms)
---2.2.2 samba.log---
[2001/12/19 15:08:56, 1] smbd/conn.c:conn_new(104)
ERROR! Out of connection structures
[2001/12/19 15:08:56, 0] smbd/service.c:make_connection(325)
Couldn't find free connection.
-------------------------
The Out of Connections thread triggered me as I have very similar problems.
btw Im pretty sure our sun admin did a clean install...
1999 Dec 20
0
ERROR! Out of connection structures
...Yes write=No (numopen=11)
[1999/12/20 13:19:59, 2] smbd/open.c:open_file(582)
engelber opened file desktop/shortcuts/Picasso.lnk read=Yes write=No (numopen=12)
[1999/12/20 13:19:59, 2] lib/access.c:check_access(258)
Allowed connection from aona02 (161.85.250.14)
[1999/12/20 13:19:59, 1] smbd/conn.c:conn_new(104)
ERROR! Out of connection structures
[1999/12/20 13:19:59, 0] smbd/service.c:make_connection(275)
Couldn't find free connection.
[1999/12/20 13:19:59, 0] lib/fault.c:fault_report(40)
===============================================================
[1999/12/20 13:19:59, 0] lib/fault.c:fault_r...
2005 Dec 05
1
Strange automount problem with samba & LDAP
Hi all,
I've installed samba-3.0.21rc2 on a solaris 10 machine (latest patches
applied) by compiling from source:
#uname -a
SunOS newton 5.10 Generic_118844-20 i86pc i386 i86pc
User's home is mounted using automount without any problem. But when I
try to mount using samba, it can not access the users home directory
when it 's share is not mounted and gives following error:
2003 Apr 18
0
[Fwd: Xinetd 2.3.10 Memory Leaks]
...n comes
>
> from service.c:
>
>
>
> void svc_request( struct service *sp )
>
> {
>
> connection_s *cp ;
>
> status_e ret_code;
>
>
>
>
>
> cp = conn_new( sp ) ;
>
> if ( cp == CONN_NULL )
>
> return ;
>
> if (sp->svc_not_generic)
>
> ret_code = spec_service_handler(sp, cp);
>
> else
>
> ret_code = svc_generic_handler(sp, cp);
>
>...
2000 May 10
0
patche for samba-2.0.7/source/smbd/conn.c
...****************
find first available connection slot, starting from a random position.
The randomisation stops problems with the server dieing and clients
thinking the server is still available.
****************************************************************************/
connection_struct *conn_new(void)
{
- connection_struct *conn;
- int i;
-
- i = bitmap_find(bmap, 1);
-
- if (i == -1) {
- DEBUG(1,("ERROR! Out of connection structures\n"));
- return NULL;
- }
+ connection_struct *conn;
+ int i;
- conn = (connection_struct *)malloc(sizeof(*conn));
- if (!conn) r...