fstests: remove obsolete xfs ioctl typedef usage

Convert 'xfs_foo_t' typedef usage to 'struct xfs_foo' in preparation
for changes to some of the xfs ioctls.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
Darrick J. Wong
2019-06-04 14:17:01 -07:00
committed by Eryu Guan
parent 80c49a927c
commit edd56cc427
5 changed files with 22 additions and 22 deletions
+4 -4
View File
@@ -2152,9 +2152,9 @@ bulkstat_f(int opno, long r)
int fd;
__u64 last;
int nent;
xfs_bstat_t *t;
struct xfs_bstat *t;
int64_t total;
xfs_fsop_bulkreq_t bsr;
struct xfs_fsop_bulkreq bsr;
last = 0;
nent = (r % 999) + 2;
@@ -2185,9 +2185,9 @@ bulkstat1_f(int opno, long r)
int good;
__u64 ino;
struct stat64 s;
xfs_bstat_t t;
struct xfs_bstat t;
int v;
xfs_fsop_bulkreq_t bsr;
struct xfs_fsop_bulkreq bsr;
good = random() & 1;