Displaying 3 results from an estimated 3 matches for "smb_vfs_open".
Did you mean:
smb_vfs_openat
2016 Apr 28
1
poor samba performance with many smaller files
...9.693969, 10, pid=5623, effective(32697, 10513),
real(32697, 0)] ../source3/smbd/open.c:4806(create_file_unixpath)
create_file_unixpath: NT_STATUS_OBJECT_NAME_NOT_FOUND
Any idea what is wrong?
And if stat() is the problem, could SMB_VFS_STAT be implemented in
vfs_aio_pthread module the same way SMB_VFS_OPEN is implemented?
On Wed, Apr 27, 2016 at 6:49 PM, Jeremy Allison <jra at samba.org> wrote:
> On Wed, Apr 27, 2016 at 01:02:54PM +0200, Peter Bulin wrote:
> > Hi,
> > I did use wireshark to verify that the client (window7) is not the
> problem,
> > client is sending...
2016 Apr 27
3
poor samba performance with many smaller files
Hi,
I did use wireshark to verify that the client (window7) is not the problem,
client is sending out multiple "SMB2 Create request" packets before he gets
some answer.
On the server side samba is processing this requests in a synchronous way,
in order which they were send, that is what I see from strace output.
On Wed, Apr 27, 2016 at 8:31 AM, Volker Lendecke <Volker.Lendecke at
2004 Feb 17
0
VFS module programmieren
...struct vfs_handle_struct *read;
struct vfs_handle_struct *write;
struct vfs_handle_struct *lseek;
struct vfs_handle_struct *sendfile;
...
} handles;
};
This macros SHOULD be used to call any vfs operation. DO NOT ACCESS
conn->vfs.ops.* directly !!!
...
/* File operations */
#define SMB_VFS_OPEN(conn, fname, flags, mode) \
((conn)->vfs.ops.open((conn)->vfs.handles.open,\
(conn), (fname), (flags), (mode)))
#define SMB_VFS_CLOSE(fsp, fd) \
((fsp)->conn->vfs.ops.close(\
(fsp)->conn->vfs.handles.close, (fsp), (fd)))
#define SMB_VFS_READ(fsp, fd, data, n) \
((fsp)->co...