diff options
author | Jim McDonough <jmcd@samba.org> | 2007-02-14 02:37:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:17:56 -0500 |
commit | 5a052edf031d2c02b018743f0947a12b4df16c2d (patch) | |
tree | 6f379555b9225349ef61e00645fbf89a1e8cb279 /source3/include/smbprofile.h | |
parent | 9918e74984467ebaae306f2e3f3bfdc7453a1327 (diff) | |
download | samba-5a052edf031d2c02b018743f0947a12b4df16c2d.tar.gz samba-5a052edf031d2c02b018743f0947a12b4df16c2d.tar.xz samba-5a052edf031d2c02b018743f0947a12b4df16c2d.zip |
r21324: Add linux setlease to the vfs layer. Next round, as Volker points out,
it should be abstracted a little higher up so other os'es can have an
entry, but it will take a bit more work. Thanks to Chetan Shringarpure
and Mathias Dietz.
I didn't increment the vfs number again because the kernel change notify
stuff hasn't been released yet anyway.
(This used to be commit 9463211bf3b46ee408b88dfbf42d498e3839d4cc)
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 48a44948dc8..fa7c6e4a5ae 100644 --- a/source3/include/smbprofile.h +++ b/source3/include/smbprofile.h @@ -168,6 +168,10 @@ enum profile_stats_values #define syscall_kernel_flock_count __profile_stats_value(PR_VALUE_SYSCALL_KERNEL_FLOCK, count) #define syscall_kernel_flock_time __profile_stats_value(PR_VALUE_SYSCALL_KERNEL_FLOCK, time) + PR_VALUE_SYSCALL_LINUX_SETLEASE, +#define syscall_linux_setlease_count __profile_stats_value(PR_VALUE_SYSCALL_LINUX_SETLEASE, count) +#define syscall_linux_setlease_time __profile_stats_value(PR_VALUE_SYSCALL_LINUX_SETLEASE, time) + PR_VALUE_SYSCALL_FCNTL_GETLOCK, #define syscall_fcntl_getlock_count __profile_stats_value(PR_VALUE_SYSCALL_FCNTL_GETLOCK, count) #define syscall_fcntl_getlock_time __profile_stats_value(PR_VALUE_SYSCALL_FCNTL_GETLOCK, time) |