fusefs: remove superfluous counter_u64_zero
Reported by: glebius Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
1470460eb5
commit
b51e4fb226
@ -367,7 +367,6 @@ void
|
||||
fuse_file_init(void)
|
||||
{
|
||||
fuse_fh_count = counter_u64_alloc(M_WAITOK);
|
||||
counter_u64_zero(fuse_fh_count);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -491,7 +491,6 @@ void
|
||||
fuse_node_init(void)
|
||||
{
|
||||
fuse_node_count = counter_u64_alloc(M_WAITOK);
|
||||
counter_u64_zero(fuse_node_count);
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user