Home | History | Annotate | Download | only in fsstress

Lines Matching defs:bsr

1579 	xfs_fsop_bulkreq_t bsr;
1587 memset(&bsr, 0, sizeof(bsr));
1588 bsr.lastip = &last;
1589 bsr.icount = nent;
1590 bsr.ubuffer = t;
1591 bsr.ocount = &count;
1593 while (ioctl(fd, XFS_IOC_FSBULKSTAT, &bsr) == 0 && count > 0)
1612 xfs_fsop_bulkreq_t bsr;
1643 memset(&bsr, 0, sizeof(bsr));
1644 bsr.lastip = &ino;
1645 bsr.icount = 1;
1646 bsr.ubuffer = &t;
1647 bsr.ocount = NULL;
1649 e = ioctl(fd, XFS_IOC_FSBULKSTAT_SINGLE, &bsr) < 0 ? errno : 0;