blob: 8a822285b6718f417d4ab3c04a0566d1dac3566a [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5#ifndef __XFS_ITABLE_H__
6#define __XFS_ITABLE_H__
7
8/*
9 * xfs_bulkstat() is used to fill in xfs_bstat structures as well as dm_stat
10 * structures (by the dmi library). This is a pointer to a formatter function
11 * that will iget the inode and fill in the appropriate structure.
12 * see xfs_bulkstat_one() and xfs_dm_bulkstat_one() in dmapi_xfs.c
13 */
14typedef int (*bulkstat_one_pf)(struct xfs_mount *mp,
15 xfs_ino_t ino,
16 void __user *buffer,
17 int ubsize,
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 int *ubused,
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 int *stat);
20
21/*
22 * Values for stat return value.
23 */
Nathan Scott8b56f082006-09-28 11:01:46 +100024#define BULKSTAT_RV_NOTHING 0
25#define BULKSTAT_RV_DIDONE 1
26#define BULKSTAT_RV_GIVEUP 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * Return stat information in bulk (by-inode) for the filesystem.
30 */
31int /* error status */
32xfs_bulkstat(
33 xfs_mount_t *mp, /* mount point for filesystem */
34 xfs_ino_t *lastino, /* last inode returned */
35 int *count, /* size of buffer/count returned */
36 bulkstat_one_pf formatter, /* func that'd fill a single buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 size_t statstruct_size,/* sizeof struct that we're filling */
38 char __user *ubuffer,/* buffer with inode stats */
Nathan Scottc41564b2006-03-29 08:55:14 +100039 int *done); /* 1 if there are more stats to get */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Michal Marekfaa63e92007-07-11 11:10:19 +100041typedef int (*bulkstat_one_fmt_pf)( /* used size in bytes or negative error */
42 void __user *ubuffer, /* buffer to write to */
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -060043 int ubsize, /* remaining user buffer sz */
44 int *ubused, /* bytes used by formatter */
Michal Marekfaa63e92007-07-11 11:10:19 +100045 const xfs_bstat_t *buffer); /* buffer to read from */
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047int
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -060048xfs_bulkstat_one_int(
49 xfs_mount_t *mp,
50 xfs_ino_t ino,
51 void __user *buffer,
52 int ubsize,
53 bulkstat_one_fmt_pf formatter,
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -060054 int *ubused,
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -060055 int *stat);
56
57int
Linus Torvalds1da177e2005-04-16 15:20:36 -070058xfs_bulkstat_one(
59 xfs_mount_t *mp,
60 xfs_ino_t ino,
61 void __user *buffer,
62 int ubsize,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 int *ubused,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 int *stat);
65
Michal Marekfaa63e92007-07-11 11:10:19 +100066typedef int (*inumbers_fmt_pf)(
67 void __user *ubuffer, /* buffer to write to */
68 const xfs_inogrp_t *buffer, /* buffer to read from */
69 long count, /* # of elements to read */
70 long *written); /* # of bytes written */
71
72int
73xfs_inumbers_fmt(
74 void __user *ubuffer, /* buffer to write to */
75 const xfs_inogrp_t *buffer, /* buffer to read from */
76 long count, /* # of elements to read */
77 long *written); /* # of bytes written */
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079int /* error status */
80xfs_inumbers(
81 xfs_mount_t *mp, /* mount point for filesystem */
82 xfs_ino_t *last, /* last inode returned */
83 int *count, /* size of buffer/count returned */
Michal Marekfaa63e92007-07-11 11:10:19 +100084 void __user *buffer, /* buffer with inode info */
85 inumbers_fmt_pf formatter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#endif /* __XFS_ITABLE_H__ */