diff options
| -rw-r--r-- | sys/fs/fuse/fuse_file.c | 1 | ||||
| -rw-r--r-- | sys/fs/fuse/fuse_internal.c | 2 | ||||
| -rw-r--r-- | sys/fs/fuse/fuse_ipc.c | 1 | ||||
| -rw-r--r-- | sys/fs/fuse/fuse_node.c | 1 |
4 files changed, 0 insertions, 5 deletions
diff --git a/sys/fs/fuse/fuse_file.c b/sys/fs/fuse/fuse_file.c index 050de95ec3c11..f9b0c781f49a6 100644 --- a/sys/fs/fuse/fuse_file.c +++ b/sys/fs/fuse/fuse_file.c @@ -367,7 +367,6 @@ void fuse_file_init(void) { fuse_fh_count = counter_u64_alloc(M_WAITOK); - counter_u64_zero(fuse_fh_count); } void diff --git a/sys/fs/fuse/fuse_internal.c b/sys/fs/fuse/fuse_internal.c index 39500ea8e37f6..5301e4cf9cf54 100644 --- a/sys/fs/fuse/fuse_internal.c +++ b/sys/fs/fuse/fuse_internal.c @@ -1205,9 +1205,7 @@ void fuse_internal_init(void) { fuse_lookup_cache_misses = counter_u64_alloc(M_WAITOK); - counter_u64_zero(fuse_lookup_cache_misses); fuse_lookup_cache_hits = counter_u64_alloc(M_WAITOK); - counter_u64_zero(fuse_lookup_cache_hits); } void diff --git a/sys/fs/fuse/fuse_ipc.c b/sys/fs/fuse/fuse_ipc.c index a7e89337bd0c7..514f7857faf5b 100644 --- a/sys/fs/fuse/fuse_ipc.c +++ b/sys/fs/fuse/fuse_ipc.c @@ -1087,7 +1087,6 @@ fuse_ipc_init(void) fticket_ctor, fticket_dtor, fticket_init, fticket_fini, UMA_ALIGN_PTR, 0); fuse_ticket_count = counter_u64_alloc(M_WAITOK); - counter_u64_zero(fuse_ticket_count); } void diff --git a/sys/fs/fuse/fuse_node.c b/sys/fs/fuse/fuse_node.c index 3be9828faf4d4..2cfe5881d233c 100644 --- a/sys/fs/fuse/fuse_node.c +++ b/sys/fs/fuse/fuse_node.c @@ -491,7 +491,6 @@ void fuse_node_init(void) { fuse_node_count = counter_u64_alloc(M_WAITOK); - counter_u64_zero(fuse_node_count); } void |
