diff options
author | Michael Adam <obnox@samba.org> | 2008-01-07 17:14:20 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-07 17:14:20 +0100 |
commit | 195c519377c2fdc655e25760b52bc0694b8dda81 (patch) | |
tree | 395db980543330c9aeec4d4af8091555a1124828 /source/include/vfs.h | |
parent | 5c01309a2b078f08c4f0caf802d81c9b3d53382f (diff) | |
download | samba-195c519377c2fdc655e25760b52bc0694b8dda81.tar.gz samba-195c519377c2fdc655e25760b52bc0694b8dda81.tar.xz samba-195c519377c2fdc655e25760b52bc0694b8dda81.zip |
Remove redundant parameter fd from SMB_VFS_KERNEL_FLOCK().
Michael
Diffstat (limited to 'source/include/vfs.h')
-rw-r--r-- | source/include/vfs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/include/vfs.h b/source/include/vfs.h index 9cf49bf7214..3ca602cc09e 100644 --- a/source/include/vfs.h +++ b/source/include/vfs.h @@ -88,6 +88,7 @@ /* Leave at 22 - not yet released. Remove parameter fd from fchown. - obnox */ /* Leave at 22 - not yet released. Remove parameter fd from ftruncate. - obnox */ /* Leave at 22 - not yet released. Remove parameter fd from lock. - obnox */ +/* Leave at 22 - not yet released. Remove parameter fd from kernel_flock. - obnox */ #define SMB_VFS_INTERFACE_VERSION 22 @@ -301,7 +302,7 @@ struct vfs_ops { int (*ntimes)(struct vfs_handle_struct *handle, const char *path, const struct timespec ts[2]); int (*ftruncate)(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_OFF_T offset); bool (*lock)(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type); - int (*kernel_flock)(struct vfs_handle_struct *handle, struct files_struct *fsp, int fd, uint32 share_mode); + int (*kernel_flock)(struct vfs_handle_struct *handle, struct files_struct *fsp, uint32 share_mode); int (*linux_setlease)(struct vfs_handle_struct *handle, struct files_struct *fsp, int fd, int leasetype); bool (*getlock)(struct vfs_handle_struct *handle, struct files_struct *fsp, int fd, SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid); int (*symlink)(struct vfs_handle_struct *handle, const char *oldpath, const char *newpath); |