123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #ifndef __XFS_ITABLE_H__
- #define __XFS_ITABLE_H__
- typedef int (*bulkstat_one_pf)(struct xfs_mount *mp,
- xfs_ino_t ino,
- void __user *buffer,
- int ubsize,
- int *ubused,
- int *stat);
- #define BULKSTAT_RV_NOTHING 0
- #define BULKSTAT_RV_DIDONE 1
- #define BULKSTAT_RV_GIVEUP 2
- int
- xfs_bulkstat(
- xfs_mount_t *mp,
- xfs_ino_t *lastino,
- int *count,
- bulkstat_one_pf formatter,
- size_t statstruct_size,
- char __user *ubuffer,
- int *done);
- typedef int (*bulkstat_one_fmt_pf)(
- void __user *ubuffer,
- int ubsize,
- int *ubused,
- const xfs_bstat_t *buffer);
- int
- xfs_bulkstat_one_int(
- xfs_mount_t *mp,
- xfs_ino_t ino,
- void __user *buffer,
- int ubsize,
- bulkstat_one_fmt_pf formatter,
- int *ubused,
- int *stat);
- int
- xfs_bulkstat_one(
- xfs_mount_t *mp,
- xfs_ino_t ino,
- void __user *buffer,
- int ubsize,
- int *ubused,
- int *stat);
- typedef int (*inumbers_fmt_pf)(
- void __user *ubuffer,
- const xfs_inogrp_t *buffer,
- long count,
- long *written);
- int
- xfs_inumbers_fmt(
- void __user *ubuffer,
- const xfs_inogrp_t *buffer,
- long count,
- long *written);
- int
- xfs_inumbers(
- xfs_mount_t *mp,
- xfs_ino_t *last,
- int *count,
- void __user *buffer,
- inumbers_fmt_pf formatter);
- #endif
|