mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
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:
committed by
Eryu Guan
parent
80c49a927c
commit
edd56cc427
+4
-4
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user