Home
last modified time | relevance | path

Searched refs:breq (Results 1 – 25 of 25) sorted by relevance

/openbmc/linux/fs/xfs/
H A Dxfs_itable.c35 struct xfs_ibulk *breq; member
123 if (!(bc->breq->flags & XFS_IBULK_NREXT64)) in xfs_bulkstat_one_int()
161 error = bc->formatter(bc->breq, buf); in xfs_bulkstat_one_int()
174 bc->breq->startino = ino + 1; in xfs_bulkstat_one_int()
182 struct xfs_ibulk *breq, in xfs_bulkstat_one() argument
187 .breq = breq, in xfs_bulkstat_one()
192 if (breq->idmap != &nop_mnt_idmap) { in xfs_bulkstat_one()
193 xfs_warn_ratelimited(breq->mp, in xfs_bulkstat_one()
198 ASSERT(breq->icount == 1); in xfs_bulkstat_one()
209 error = xfs_trans_alloc_empty(breq->mp, &tp); in xfs_bulkstat_one()
[all …]
H A Dxfs_itable.h31 struct xfs_ibulk *breq, in xfs_ibulk_advance() argument
34 char __user *b = breq->ubuffer; in xfs_ibulk_advance()
36 breq->ubuffer = b + bytes; in xfs_ibulk_advance()
37 breq->ocount++; in xfs_ibulk_advance()
38 return breq->ocount == breq->icount ? -ECANCELED : 0; in xfs_ibulk_advance()
53 typedef int (*bulkstat_one_fmt_pf)(struct xfs_ibulk *breq,
56 int xfs_bulkstat_one(struct xfs_ibulk *breq, bulkstat_one_fmt_pf formatter);
57 int xfs_bulkstat(struct xfs_ibulk *breq, bulkstat_one_fmt_pf formatter);
61 typedef int (*inumbers_fmt_pf)(struct xfs_ibulk *breq,
64 int xfs_inumbers(struct xfs_ibulk *breq, inumbers_fmt_pf formatter);
H A Dxfs_ioctl32.c70 struct xfs_ibulk *breq, in xfs_fsinumbers_fmt_compat() argument
73 struct compat_xfs_inogrp __user *p32 = breq->ubuffer; in xfs_fsinumbers_fmt_compat()
84 return xfs_ibulk_advance(breq, sizeof(struct compat_xfs_inogrp)); in xfs_fsinumbers_fmt_compat()
159 struct xfs_ibulk *breq, in xfs_fsbulkstat_one_fmt_compat() argument
162 struct compat_xfs_bstat __user *p32 = breq->ubuffer; in xfs_fsbulkstat_one_fmt_compat()
166 xfs_bulkstat_to_bstat(breq->mp, &bs1, bstat); in xfs_fsbulkstat_one_fmt_compat()
192 return xfs_ibulk_advance(breq, sizeof(struct compat_xfs_bstat)); in xfs_fsbulkstat_one_fmt_compat()
205 struct xfs_ibulk breq = { in xfs_compat_ioc_fsbulkstat() local
266 breq.ubuffer = bulkreq.ubuffer; in xfs_compat_ioc_fsbulkstat()
267 breq.icount = bulkreq.icount; in xfs_compat_ioc_fsbulkstat()
[all …]
H A Dxfs_ioctl.c635 struct xfs_ibulk *breq, in xfs_fsbulkstat_one_fmt() argument
640 xfs_bulkstat_to_bstat(breq->mp, &bs1, bstat); in xfs_fsbulkstat_one_fmt()
641 if (copy_to_user(breq->ubuffer, &bs1, sizeof(bs1))) in xfs_fsbulkstat_one_fmt()
643 return xfs_ibulk_advance(breq, sizeof(struct xfs_bstat)); in xfs_fsbulkstat_one_fmt()
648 struct xfs_ibulk *breq, in xfs_fsinumbers_fmt() argument
654 if (copy_to_user(breq->ubuffer, &ig1, sizeof(struct xfs_inogrp))) in xfs_fsinumbers_fmt()
656 return xfs_ibulk_advance(breq, sizeof(struct xfs_inogrp)); in xfs_fsinumbers_fmt()
667 struct xfs_ibulk breq = { in xfs_ioc_fsbulkstat() local
696 breq.ubuffer = bulkreq.ubuffer; in xfs_ioc_fsbulkstat()
697 breq.icount = bulkreq.icount; in xfs_ioc_fsbulkstat()
[all …]
H A Dxfs_ioctl.h68 int xfs_fsbulkstat_one_fmt(struct xfs_ibulk *breq,
70 int xfs_fsinumbers_fmt(struct xfs_ibulk *breq, const struct xfs_inumbers *igrp);
/openbmc/linux/drivers/usb/gadget/udc/
H A Dbcm63xx_udc.c593 struct bcm63xx_req *breq) in iudma_write() argument
596 unsigned int bytes_left = breq->req.length - breq->offset; in iudma_write()
601 breq->bd_bytes = 0; in iudma_write()
602 breq->iudma = iudma; in iudma_write()
604 if ((bytes_left % iudma->max_pkt == 0) && bytes_left && breq->req.zero) in iudma_write()
646 d->address = breq->req.dma + breq->offset; in iudma_write()
650 breq->offset += n_bytes; in iudma_write()
651 breq->bd_bytes += n_bytes; in iudma_write()
1075 struct bcm63xx_req *breq, *n; in bcm63xx_ep_disable() local
1091 list_for_each_entry_safe(breq, n, &bep->queue, queue) { in bcm63xx_ep_disable()
[all …]
/openbmc/linux/drivers/crypto/rockchip/
H A Drk3288_crypto_ahash.c233 static int rk_hash_prepare(struct crypto_engine *engine, void *breq) in rk_hash_prepare() argument
235 struct ahash_request *areq = container_of(breq, struct ahash_request, base); in rk_hash_prepare()
249 static void rk_hash_unprepare(struct crypto_engine *engine, void *breq) in rk_hash_unprepare() argument
251 struct ahash_request *areq = container_of(breq, struct ahash_request, base); in rk_hash_unprepare()
258 static int rk_hash_run(struct crypto_engine *engine, void *breq) in rk_hash_run() argument
260 struct ahash_request *areq = container_of(breq, struct ahash_request, base); in rk_hash_run()
275 err = rk_hash_prepare(engine, breq); in rk_hash_run()
335 rk_hash_unprepare(engine, breq); in rk_hash_run()
338 crypto_finalize_hash_request(engine, breq, err); in rk_hash_run()
/openbmc/linux/arch/arc/lib/
H A Dstrchr-700.S19 breq.d r2,r0,.Laligned
41 breq r7,0,.Loop ; For speed, we want this branch to be unaligned.
45 breq r12,0,.Loop ; For speed, we want this branch to be unaligned.
67 breq r7,0,.Loop /* ... so that this branch is unaligned. */
H A Dstrcmp.S29 breq r2,r3,.Lwordloop
88 breq r2,0,.Lcmpend
89 breq r2,r3,.Lcharloop
H A Dstrcmp-archs.S68 breq r2, 0, .Lcmpend
69 breq r2, r3, .Lcharloop
H A Dmemcpy-700.S27 breq r2,0,.Last_store
H A Dstrlen.S53 breq r12,0,.Loop
H A Dmemcmp.S113 breq r2,0,.Lnil
/openbmc/u-boot/arch/arc/lib/
H A Dstart.S17 breq r5, 0, 1f ; I$ doesn't exist
55 breq r5, 0, 1f ; SLC doesn't exist
/openbmc/linux/drivers/crypto/allwinner/sun8i-ce/
H A Dsun8i-ce-cipher.c349 struct skcipher_request *breq = container_of(areq, struct skcipher_request, base); in sun8i_ce_cipher_run() local
350 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(breq); in sun8i_ce_cipher_run()
353 struct sun8i_cipher_req_ctx *rctx = skcipher_request_ctx(breq); in sun8i_ce_cipher_run()
357 err = sun8i_ce_run_task(ce, flow, crypto_tfm_alg_name(breq->base.tfm)); in sun8i_ce_cipher_run()
360 crypto_finalize_skcipher_request(engine, breq, err); in sun8i_ce_cipher_run()
H A Dsun8i-ce-hash.c330 int sun8i_ce_hash_run(struct crypto_engine *engine, void *breq) in sun8i_ce_hash_run() argument
332 struct ahash_request *areq = container_of(breq, struct ahash_request, base); in sun8i_ce_hash_run()
475 crypto_finalize_hash_request(engine, breq, err); in sun8i_ce_hash_run()
H A Dsun8i-ce.h369 int sun8i_ce_hash_run(struct crypto_engine *engine, void *breq);
/openbmc/linux/arch/arc/kernel/
H A Dhead.S27 breq r5, 0, 1f ; I$ doesn't exist
65 breq r5, 0, 1f ; LPB doesn't exist
H A Dentry-arcv2.S190 breq r11, 0, .Lexcept_ret ; No intr active, ret from Exception
/openbmc/linux/drivers/crypto/gemini/
H A Dsl3516-ce-cipher.c268 struct skcipher_request *breq = container_of(areq, struct skcipher_request, base); in sl3516_ce_handle_cipher_request() local
270 err = sl3516_ce_cipher(breq); in sl3516_ce_handle_cipher_request()
272 crypto_finalize_skcipher_request(engine, breq, err); in sl3516_ce_handle_cipher_request()
/openbmc/linux/drivers/crypto/amlogic/
H A Damlogic-gxl-cipher.c264 struct skcipher_request *breq = container_of(areq, struct skcipher_request, base); in meson_handle_cipher_request() local
266 err = meson_cipher(breq); in meson_handle_cipher_request()
268 crypto_finalize_skcipher_request(engine, breq, err); in meson_handle_cipher_request()
/openbmc/linux/arch/arc/include/asm/
H A Ddsp-impl.h21 breq r5, 0, 1f
/openbmc/linux/drivers/crypto/allwinner/sun8i-ss/
H A Dsun8i-ss-cipher.c335 struct skcipher_request *breq = container_of(areq, struct skcipher_request, base); in sun8i_ss_handle_cipher_request() local
337 err = sun8i_ss_cipher(breq); in sun8i_ss_handle_cipher_request()
339 crypto_finalize_skcipher_request(engine, breq, err); in sun8i_ss_handle_cipher_request()
H A Dsun8i-ss.h316 int sun8i_ss_hash_run(struct crypto_engine *engine, void *breq);
H A Dsun8i-ss-hash.c490 int sun8i_ss_hash_run(struct crypto_engine *engine, void *breq) in sun8i_ss_hash_run() argument
492 struct ahash_request *areq = container_of(breq, struct ahash_request, base); in sun8i_ss_hash_run()
714 crypto_finalize_hash_request(engine, breq, err); in sun8i_ss_hash_run()