Lines Matching defs:breq
70 struct xfs_ibulk *breq,
73 struct compat_xfs_inogrp __user *p32 = breq->ubuffer;
84 return xfs_ibulk_advance(breq, sizeof(struct compat_xfs_inogrp));
159 struct xfs_ibulk *breq,
162 struct compat_xfs_bstat __user *p32 = breq->ubuffer;
166 xfs_bulkstat_to_bstat(breq->mp, &bs1, bstat);
192 return xfs_ibulk_advance(breq, sizeof(struct compat_xfs_bstat));
205 struct xfs_ibulk breq = {
266 breq.ubuffer = bulkreq.ubuffer;
267 breq.icount = bulkreq.icount;
281 breq.startino = lastino ? lastino + 1 : 0;
282 error = xfs_inumbers(&breq, inumbers_func);
283 lastino = breq.startino - 1;
285 breq.startino = lastino;
286 breq.icount = 1;
287 error = xfs_bulkstat_one(&breq, bs_one_func);
288 lastino = breq.startino;
290 breq.startino = lastino ? lastino + 1 : 0;
291 error = xfs_bulkstat(&breq, bs_one_func);
292 lastino = breq.startino - 1;
304 copy_to_user(bulkreq.ocount, &breq.ocount, sizeof(__s32)))