summaryrefslogtreecommitdiffstats
path: root/source3/modules/vfs_syncops.c
Commit message (Collapse)AuthorAgeFilesLines
* vfs: Make function pointer names consistent. They all end in _fnRichard Sharpe2011-12-121-8/+8
| | | | | Autobuild-User: Richard Sharpe <sharpe@samba.org> Autobuild-Date: Mon Dec 12 04:58:40 CET 2011 on sn-devel-104
* s3-vfs: rename open function to open_fn.Günther Deschner2011-04-211-1/+1
| | | | | | | | | | | This should finally fix the AIX build and allow to remove AIX specific ifdefs. Guenther Signed-off-by: Jeremy Allison <jra@samba.org> Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Apr 21 02:01:20 CEST 2011 on sn-devel-104
* s3-vfs: include smbd/smbd.h in vfs modules.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* s3-includes: only include system/filesys.h when needed.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* s3-vfs: make syncops_connect in modules/vfs_syncops.c static.Günther Deschner2011-02-251-2/+2
| | | | Guenther
* s3:vfs:syncops add option to disable metasync per shareChristian Ambach2011-02-181-4/+14
| | | | | | | | | | | introduce an option to disable the metadata sync in case the filesystem handles this correctly the sync can be skipped, but synchronization of the data that was written can still be configured (in opposition to the disable flag disabling all sync operations) Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Fri Feb 18 17:31:59 CET 2011 on sn-devel-104
* s3:vfs:syncops add option to disable module per shareChristian Ambach2010-10-131-6/+35
| | | | | | add an option to disable the syncops module completely for a share with syncops:disable = true
* s3:vfs:syncops make it possible to specify syncops:onclose per shareChristian Ambach2010-10-131-7/+43
| | | | | | | | convert the onclose option of the vfs_syncops module from a global option to a service-specific one as preparation for further flags, use a struct to store in the VFS handle instead of just the onclose flag
* Make the smbd VFS typesafeVolker Lendecke2009-07-241-18/+12
|
* s3: Plumb smb_filename through SMB_VFS_UNLINKTim Prouty2009-07-061-3/+4
|
* s3: Plumb smb_filename through SMB_VFS_RENAMETim Prouty2009-07-061-3/+5
|
* s3: Change SMB_VFS_OPEN to take an smb_filename structTim Prouty2009-06-171-2/+23
| | | | | | | | | | | | This was a little messy because of all of the vfs modules I had to touch. Most of them were pretty straight forward, but the streams modules required a little attention to handle smb_filename. Since the use of smb_filename enables the vfs modules to access the raw, over-the-wire stream, a little bit of the handling that was being done by split_ntfs_stream_name has now been shifted into the individual stream modules. It may be a little more code, but overall it gives more flexibility to the streams modules, while also allowing correct stream handling.
* Remove redundant parameter fd from SMB_VFS_CLOSE().Michael Adam2008-04-211-3/+3
| | | | | | | Now all those redundant fd's have vanished from the VFS API. Michael (This used to be commit 14294535512a7f191c5008e622b6708e417854ae)
* added a syncops VFS module for filesystems which do not guarantee meta-data ↵Andrew Tridgell2007-10-231-0/+210
operations are immediately committed to disk in stable form. Essential for clustered Samba setups (This used to be commit 8b19cb17b9ae9e1cd4a96df6e7dedb75aff7ee96)