diff options
author | Jeremy Allison <jra@samba.org> | 2007-10-29 17:16:13 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-10-29 17:16:13 -0700 |
commit | 488b59cfac244ec8cfc60df687fcd153d693509c (patch) | |
tree | 016f3ce43e8a7b6b4a0bab95ebfd69854cf0182b /source3/include/smbprofile.h | |
parent | 32dd016353355acfb71dd773187076f95ff6e86e (diff) | |
download | samba-488b59cfac244ec8cfc60df687fcd153d693509c.tar.gz samba-488b59cfac244ec8cfc60df687fcd153d693509c.tar.xz samba-488b59cfac244ec8cfc60df687fcd153d693509c.zip |
Add in the recvfile entry to the VFS layer with a default
implementation. Needed for the zero-copy write code.
Jeremy.
(This used to be commit bfbdb6324c5d13bfde8b742e9c5a0e0c9092bd86)
Diffstat (limited to 'source3/include/smbprofile.h')
-rw-r--r-- | source3/include/smbprofile.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/smbprofile.h b/source3/include/smbprofile.h index c89815598b4..acd8460965e 100644 --- a/source3/include/smbprofile.h +++ b/source3/include/smbprofile.h @@ -103,6 +103,10 @@ enum profile_stats_values #define syscall_sendfile_count __profile_stats_value(PR_VALUE_SYSCALL_SENDFILE, count) #define syscall_sendfile_time __profile_stats_value(PR_VALUE_SYSCALL_SENDFILE, time) + PR_VALUE_SYSCALL_RECVFILE, +#define syscall_recvfile_count __profile_stats_value(PR_VALUE_SYSCALL_RECVFILE, count) +#define syscall_recvfile_time __profile_stats_value(PR_VALUE_SYSCALL_RECVFILE, time) + PR_VALUE_SYSCALL_RENAME, #define syscall_rename_count __profile_stats_value(PR_VALUE_SYSCALL_RENAME, count) #define syscall_rename_time __profile_stats_value(PR_VALUE_SYSCALL_RENAME, time) |