Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-03-30 | s3-vfs: include smbd/smbd.h in vfs modules. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2009-09-24 | s3: Add more helpful debugging to some of the streams code | Tim Prouty | 1 | -0/+23 | |
2009-08-27 | s3:streams: check for :$DATA only in the backend (fix bug #6642) | Stefan Metzmacher | 1 | -0/+3 | |
We need to allow "\\$Extend\\$Quota:$Q:$INDEX_ALLOCATION" to pass check_path(), so that the Quota Dialog works. metze | |||||
2009-07-20 | s3: Finish plumbing the fsp->fsp_name smb_fname conversion through the modules. | Tim Prouty | 1 | -3/+7 | |
2009-07-08 | s3: Remove is_ntfs_stream_name() and split_ntfs_stream_name() | Tim Prouty | 1 | -48/+0 | |
Actually I moved split_ntfs_stream_name into torture.c which is the one consumer of it. This could probably be changed at some point. | |||||
2009-07-07 | s3 onefs: Fix a few bugs from the smb_filename migration | Tim Prouty | 1 | -8/+2 | |
2009-07-06 | s3: Update streaminfo implementations now that only base names are passed ↵ | Tim Prouty | 1 | -7/+0 | |
through the vfs | |||||
2009-07-06 | s3: Plumb smb_filename through SMB_VFS_NTIMES | Tim Prouty | 1 | -10/+27 | |
2009-07-06 | s3: Plumb smb_filename around SMB_VFS_CHFLAGS | Tim Prouty | 1 | -20/+0 | |
SMB_VFS_CHFLAGS isn't actually getting the smb_filename struct for now since it only operates on the basefile. This is the strategy for all path-based operations that will never actually operate on a stream. By clarifying the meaning of path based operations that don't take an smb_filename struct, modules that implement streams such as vfs_onefs no longer need to implement SMB_VFS_CHFLAGS to ensure it's only called on the base_name. | |||||
2009-07-06 | s3: Plumb smb_filename through SMB_VFS_UNLINK | Tim Prouty | 1 | -12/+23 | |
2009-07-06 | s3: Plumb smb_filename through SMB_VFS_RENAME | Tim Prouty | 1 | -33/+45 | |
2009-06-25 | s3 onefs: Plumb smb_filename through onefs createfile path | Tim Prouty | 1 | -31/+106 | |
2009-05-28 | s3 onefs: update the onefs module to be compliant with stat_ex | Tim Prouty | 1 | -40/+43 | |
2009-03-03 | s3 OneFS: Add parameter to ignore streams | Tim Prouty | 1 | -1/+6 | |
2009-03-01 | s3 OneFS: Refactor config code and cleanup includes | Tim Prouty | 1 | -0/+3 | |
2009-02-25 | s3 OneFS: Add .snapshot directory configuration handling | Tim Prouty | 1 | -1/+1 | |
2009-02-24 | S3: Add in profile counters for new vfs and syscall entries. | todd stecher | 1 | -3/+13 | |
2009-02-18 | s3: Fix streams enumeration bug in OneFS implementation | Aravind Srinivasan | 1 | -0/+13 | |
Previously, we didn’t call SMB_VFS_OPEN_DIR from the streams module, instead we called fdopendir(). As a result we failed to populate the dir_state list in the readdirplus module. So when we tried to view the stream data, we will always returned NULL. To solve this I separated onefs_opendir() and the initialization of the dir_state list. This is done by introducing a new utility function “onefs_rdp_add_dir_state()”, which initializes the dir_state structure and adds it to the dir_state list. This function is called from the streams module before calling readdir(). | |||||
2009-02-09 | Add an optional SMB_STRUCT_SMB parameter to VFS_OP_READDIR | Steven Danneman | 1 | -1/+1 | |
* this allows VFS implementations that prefetch stat information on readdir to return it through one VFS call * backwards compatibility is maintained by passing in NULL * if the system readdir doesn't return stat info, the stat struct is set to invalid | |||||
2009-02-09 | s3 OneFS: Fake Timestamps | todd stecher | 1 | -14/+70 | |
This checkin enables setting arbitrary timestamps on files matching the pattern stored in smb.conf. This was a customer request for a specific workflow. Changes include: 1) configuration state machine to avoid tons of string comparisons on each and every stat. 2) Code to adjust post-stat() times to match time now, or sloptime + time now. | |||||
2009-01-29 | s3: Add a new SMB_VFS_GET_ALLOC_SIZE vfs operation | Tim Prouty | 1 | -4/+4 | |
This allows module implementors to customize what allocation size is returned to the client. | |||||
2009-01-23 | Modify OneFS module to support new NTIMES interfaces | todd stecher | 1 | -42/+86 | |
2009-01-11 | s3: Fix uninitialized variable in OneFS streams | Tim Prouty | 1 | -2/+5 | |
2009-01-11 | s3: Add OneFS alternate data streams implementation | Tim Prouty | 1 | -0/+580 | |