summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2002-01-10 19:35:46 +0000
committerHerb Lewis <herb@samba.org>2002-01-10 19:35:46 +0000
commit467ca7d091fd3b87e4d75300e9c615cc3499f25b (patch)
tree83dd3f761dc763b714066d3048ef0c5ac9530579
parentd525a1c9736b339d9a8b90617e1333e6bb1980c6 (diff)
downloadsamba-467ca7d091fd3b87e4d75300e9c615cc3499f25b.tar.gz
samba-467ca7d091fd3b87e4d75300e9c615cc3499f25b.tar.xz
samba-467ca7d091fd3b87e4d75300e9c615cc3499f25b.zip
added structure members referred to by recent changes in vfs-wrap.c
-rw-r--r--source/include/profile.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/include/profile.h b/source/include/profile.h
index fbd83d6e3e1..719318195e0 100644
--- a/source/include/profile.h
+++ b/source/include/profile.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;