Lines Matching defs:breq
84 struct xfs_ibulk *breq,
87 struct compat_xfs_inogrp __user *p32 = breq->ubuffer;
98 return xfs_ibulk_advance(breq, sizeof(struct compat_xfs_inogrp));
173 struct xfs_ibulk *breq,
176 struct compat_xfs_bstat __user *p32 = breq->ubuffer;
180 xfs_bulkstat_to_bstat(breq->mp, &bs1, bstat);
206 return xfs_ibulk_advance(breq, sizeof(struct compat_xfs_bstat));
218 struct xfs_ibulk breq = {
278 breq.ubuffer = bulkreq.ubuffer;
279 breq.icount = bulkreq.icount;
293 breq.startino = lastino ? lastino + 1 : 0;
294 error = xfs_inumbers(&breq, inumbers_func);
295 lastino = breq.startino - 1;
297 breq.startino = lastino;
298 breq.icount = 1;
299 error = xfs_bulkstat_one(&breq, bs_one_func);
300 lastino = breq.startino;
302 breq.startino = lastino ? lastino + 1 : 0;
303 error = xfs_bulkstat(&breq, bs_one_func);
304 lastino = breq.startino - 1;
316 copy_to_user(bulkreq.ocount, &breq.ocount, sizeof(__s32)))