summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_readahead.c
AgeCommit message (Collapse)AuthorFilesLines
2012-04-06build: Remove SMB_OFF_T, replace with off_tAndrew Bartlett1-4/+4
Now that we always require a 64 bit off_t, we no longer need SMB_OFF_T. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Fri Apr 6 01:47:43 CEST 2012 on sn-devel-104
2012-04-05Remove off64_t declarationsAndrew Bartlett1-1/+1
2011-12-12vfs: Make function pointer names consistent. They all end in _fnRichard Sharpe1-2/+2
Autobuild-User: Richard Sharpe <sharpe@samba.org> Autobuild-Date: Mon Dec 12 04:58:40 CET 2011 on sn-devel-104
2011-04-14s3-includes: move readahead prototype to its only user.Günther Deschner1-0/+4
Guenther
2011-03-30s3-vfs: include smbd/smbd.h in vfs modules.Günther Deschner1-0/+1
Guenther
2011-03-30s3-includes: only include system/filesys.h when needed.Günther Deschner1-0/+1
Guenther
2009-11-30Restructure the connect function code to always callJeremy Allison1-2/+9
down to NEXT-> before initializing. This allows us to do cleanup (by calling DISCONNECT) if initialization fails. Also fix vfs_acl_xattr which was failing to call the NEXT connect function. Jeremy.
2009-07-24Make the smbd VFS typesafeVolker Lendecke1-13/+6
2008-01-11Combine fsp and fromfd to fromfsp in SMB_VFS_SENDFILE().Michael Adam1-8/+6
Michael (This used to be commit a52cfb7d777157c93c9dc26c67f457be592dd537)
2008-01-07Remove unneeded parameter fd from SMB_VFS_PREAD().Michael Adam1-6/+5
Michael (This used to be commit 73e28806ce87d829ea7c38ed3440020845bb13bf)
2007-12-19Remove unused variable 'didmsg'.James Peach1-4/+0
(This used to be commit 5de89dd6e0a8a56a5a0f998e3b1d3538367db7d6)
2007-10-18RIP BOOL. Convert BOOL -> bool. I found a few interestingJeremy Allison1-2/+2
bugs in various places whilst doing this (places that assumed BOOL == int). I also need to fix the Samba4 pidl generation (next checkin). Jeremy. (This used to be commit f35a266b3cbb3e5fa6a86be60f34fe340a3ca71f)
2007-10-10r23831: Fix vfs_readahead: transparent modules should always pass throughAlexander Bokovoy1-1/+1
(This used to be commit 800cf5c81c12985922f34610473d746458c85f90)
2007-10-10r23801: The FSF has moved around a lot. This fixes their Mass Ave address.Andrew Tridgell1-2/+1
(This used to be commit 87c91e4362c51819032bfbebbb273c52e203b227)
2007-10-10r23779: Change from v2 or later to v3 or later.Jeremy Allison1-1/+1
Jeremy. (This used to be commit 407e6e695b8366369b7c76af1ff76869b45347b3)
2007-10-10r22147: Next tryVolker Lendecke1-1/+1
(This used to be commit 42f42321558ed0647697e5bfd7d5339a29aa30d9)
2007-10-10r22146: Attempt to fix the buildVolker Lendecke1-1/+1
(This used to be commit 825255c7600f2372c1702a0cecb309e9f22c087e)
2007-10-10r22132: I hate inefficiency. Don't call conv_str_size()Jeremy Allison1-41/+88
on every pread/sendfile call, initialize these variables in an allocated struct at connection time and just refer to them directly. Jeremy. (This used to be commit 85df3fca681a44c882f596ef042ad9956c3a63c0)
2007-10-10r22111: Allow readahead params to use size suffixes as K,M, etc.Jeremy Allison1-4/+28
Jeremy. (This used to be commit e296f07e1d3a14fe05a444ccdc752cd945fee5bc)
2007-10-10r22105: Added vfs_readahead module that appears to do wonderful thingsJeremy Allison1-0/+117
for copying files from Samba when using Windows Vista Windows explorer.... :-). By default if you add this I can go on my vmware sessions from 7MB/sec to 12MB/sec (+1 extra MB/sec if I turn sendfile on). Jeremy. (This used to be commit 97fdd67e83bb2706106a9bae95b32d8d9f8b4066)