diff options
author | Herb Lewis <herb@samba.org> | 2002-01-10 19:40:40 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-01-10 19:40:40 +0000 |
commit | c5e14d73dffee86ef2dabcf7031eea0da9e32f3d (patch) | |
tree | 3266b36fac770885ba528460c95e7f76246b134d /source/include | |
parent | 09e3276fb7207dff73f181072851bd542fb64263 (diff) | |
download | samba-c5e14d73dffee86ef2dabcf7031eea0da9e32f3d.tar.gz samba-c5e14d73dffee86ef2dabcf7031eea0da9e32f3d.tar.xz samba-c5e14d73dffee86ef2dabcf7031eea0da9e32f3d.zip |
added structure members referred to by recent changes in vfs-wrap.c
Diffstat (limited to 'source/include')
-rw-r--r-- | source/include/smbprofile.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/include/smbprofile.h b/source/include/smbprofile.h index fbd83d6e3e1..719318195e0 100644 --- a/source/include/smbprofile.h +++ b/source/include/smbprofile.h @@ -35,7 +35,7 @@ enum flush_reason_enum { SEEK_FLUSH, READ_FLUSH, WRITE_FLUSH, READRAW_FLUSH, #define PROF_SHMEM_KEY ((key_t)0x07021999) #define PROF_SHM_MAGIC 0x6349985 -#define PROF_SHM_VERSION 5 +#define PROF_SHM_VERSION 6 /* time values in the following structure are in microseconds */ @@ -100,6 +100,10 @@ struct profile_stats { unsigned syscall_readlink_time; unsigned syscall_symlink_count; unsigned syscall_symlink_time; + unsigned syscall_link_count; + unsigned syscall_link_time; + unsigned syscall_mknod_count; + unsigned syscall_mknod_time; /* stat cache counters */ unsigned statcache_lookups; unsigned statcache_misses; |