]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - libfrog/bulkstat.h
libfrog: move libfrog.h to libfrog/util.h
[thirdparty/xfsprogs-dev.git] / libfrog / bulkstat.h
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 */
10 struct xfs_bstat;
11 int xfrog_bulkstat_single(struct xfs_fd *xfd, uint64_t ino,
12 struct xfs_bstat *ubuffer);
13 int xfrog_bulkstat(struct xfs_fd *xfd, uint64_t *lastino, uint32_t icount,
14 struct xfs_bstat *ubuffer, uint32_t *ocount);
15
16 struct xfs_inogrp;
17 int xfrog_inumbers(struct xfs_fd *xfd, uint64_t *lastino, uint32_t icount,
18 struct xfs_inogrp *ubuffer, uint32_t *ocount);
19
20 #endif /* __LIBFROG_BULKSTAT_H__ */