fusefs: remove superfluous counter_u64_zero

Reported by:	glebius
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Alan Somers 2019-08-06 00:50:25 +00:00
parent 508abc9494
commit 427d205cb5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/fuse2/; revision=350621
4 changed files with 0 additions and 5 deletions

View file

@ -367,7 +367,6 @@ void
fuse_file_init(void)
{
fuse_fh_count = counter_u64_alloc(M_WAITOK);
counter_u64_zero(fuse_fh_count);
}
void

View file

@ -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

View file

@ -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

View file

@ -491,7 +491,6 @@ void
fuse_node_init(void)
{
fuse_node_count = counter_u64_alloc(M_WAITOK);
counter_u64_zero(fuse_node_count);
}
void