]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libfrog/bulkstat.h
libfrog: share scrub headers
[thirdparty/xfsprogs-dev.git] / libfrog / bulkstat.h
CommitLineData
f31b5e12
DW
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright (c) 2019 Oracle, Inc.
4 * All Rights Reserved.
5 */
6#ifndef __LIBFROG_BULKSTAT_H__
7#define __LIBFROG_BULKSTAT_H__
8
9/* Bulkstat wrappers */
10struct xfs_bstat;
11int xfrog_bulkstat_single(struct xfs_fd *xfd, uint64_t ino,
12 struct xfs_bstat *ubuffer);
13int xfrog_bulkstat(struct xfs_fd *xfd, uint64_t *lastino, uint32_t icount,
14 struct xfs_bstat *ubuffer, uint32_t *ocount);
15
621f3374
DW
16struct xfs_inogrp;
17int xfrog_inumbers(struct xfs_fd *xfd, uint64_t *lastino, uint32_t icount,
18 struct xfs_inogrp *ubuffer, uint32_t *ocount);
19
f31b5e12 20#endif /* __LIBFROG_BULKSTAT_H__ */