blob: 102d8bd82270a6ca6a30a8cd479df8c085079a7c [file] [log] [blame]
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (C) 2018-2024 Oracle. All Rights Reserved.
* Author: Darrick J. Wong <djwong@kernel.org>
*/
#ifndef XFS_SCRUB_COUNTER_H_
#define XFS_SCRUB_COUNTER_H_
struct ptcounter;
int ptcounter_alloc(size_t nr, struct ptcounter **pp);
void ptcounter_free(struct ptcounter *ptc);
int ptcounter_add(struct ptcounter *ptc, int64_t nr);
int ptcounter_value(struct ptcounter *ptc, uint64_t *sum);
#endif /* XFS_SCRUB_COUNTER_H_ */