Home
last modified time | relevance | path

Searched refs:bbuf (Results 1 – 11 of 11) sorted by relevance

/linux/drivers/usb/storage/
H A Dene_ub6250.c434 u8 *bbuf; member
487 kfree(info->bbuf); in ene_ub6250_info_destructor()
875 u8 *bbuf = info->bbuf; in ms_read_readpage() local
916 result = ene_send_scsi_cmd(us, FDIR_READ, bbuf, 0); in ms_read_readpage()
925 ExtraDat->ovrflg = bbuf[0]; in ms_read_readpage()
926 ExtraDat->mngflg = bbuf[1]; in ms_read_readpage()
927 ExtraDat->logadr = memstick_logaddr(bbuf[2], bbuf[3]); in ms_read_readpage()
1352 u8 *bbuf = info->bbuf; in ms_lib_read_extra() local
1367 result = ene_send_scsi_cmd(us, FDIR_READ, bbuf, 0); in ms_lib_read_extra()
1375 ExtraDat->ovrflg = bbuf[0]; in ms_lib_read_extra()
[all …]
/linux/fs/bcachefs/
H A Dcompress.c13 struct bbuf { struct
24 static struct bbuf __bounce_alloc(struct bch_fs *c, unsigned size, int rw) in __bounce_alloc() argument
32 return (struct bbuf) { .b = b, .type = BB_KMALLOC, .rw = rw }; in __bounce_alloc()
36 return (struct bbuf) { .b = b, .type = BB_MEMPOOL, .rw = rw }; in __bounce_alloc()
59 static struct bbuf __bio_map_or_bounce(struct bch_fs *c, struct bio *bio, in __bio_map_or_bounce()
62 struct bbuf ret; in __bio_map_or_bounce()
74 return (struct bbuf) { in __bio_map_or_bounce()
110 return (struct bbuf) { in __bio_map_or_bounce()
123 static struct bbuf bio_map_or_bounce(struct bch_fs *c, struct bio *bio, int rw) in bio_map_or_bounce()
128 static void bio_unmap_or_unbounce(struct bch_fs *c, struct bbuf buf) in bio_unmap_or_unbounce()
[all …]
/linux/fs/ntfs3/
H A Dindex.c205 size_t bit, struct bmp_buf *bbuf) in bmp_buf_get() argument
217 bbuf->bh = NULL; in bmp_buf_get()
220 &vcn, &bbuf->mi); in bmp_buf_get()
221 bbuf->b = b; in bmp_buf_get()
231 bbuf->buf = (ulong *)resident_data(b); in bmp_buf_get()
232 bbuf->bit = 0; in bmp_buf_get()
233 bbuf->nbits = data_size * 8; in bmp_buf_get()
253 bbuf->bh = bh; in bmp_buf_get()
265 bbuf->new_valid = vbo + blocksize; in bmp_buf_get()
266 if (bbuf->new_valid <= valid_size) in bmp_buf_get()
[all …]
/linux/drivers/net/wireless/ath/ath5k/
H A Dmac80211-ops.c123 avf->bbuf = list_first_entry(&ah->bcbuf, struct ath5k_buf, in ath5k_add_interface()
125 list_del(&avf->bbuf->list); in ath5k_add_interface()
168 if (avf->bbuf) { in ath5k_remove_interface()
169 ath5k_txbuf_free_skb(ah, avf->bbuf); in ath5k_remove_interface()
170 list_add_tail(&avf->bbuf->list, &ah->bcbuf); in ath5k_remove_interface()
177 avf->bbuf = NULL; in ath5k_remove_interface()
H A Dbase.h77 struct ath5k_buf *bbuf; /* beacon buffer */ member
H A Dbase.c1957 ath5k_txbuf_free_skb(ah, avf->bbuf); in ath5k_beacon_update()
1958 avf->bbuf->skb = skb; in ath5k_beacon_update()
1959 ret = ath5k_beacon_setup(ah, avf->bbuf); in ath5k_beacon_update()
2028 bf = avf->bbuf; in ath5k_beacon_send()
/linux/drivers/md/
H A Ddm-verity-fec.c211 u8 *bbuf, *rs_block; in fec_read_bufs() local
253 bbuf = dm_bufio_read_with_ioprio(bufio, block, &buf, bio_prio(bio)); in fec_read_bufs()
254 if (IS_ERR(bbuf)) { in fec_read_bufs()
258 (unsigned long long)block, PTR_ERR(bbuf)); in fec_read_bufs()
280 fec_is_erasure(v, io, want_digest, bbuf)) in fec_read_bufs()
295 rs_block[i] = bbuf[k]; in fec_read_bufs()
/linux/drivers/crypto/axis/
H A Dartpec6_crypto.c787 struct artpec6_crypto_bounce_buffer *bbuf = kzalloc(alloc_size, flags); in artpec6_crypto_alloc_bounce() local
789 if (!bbuf) in artpec6_crypto_alloc_bounce()
792 base = bbuf + 1; in artpec6_crypto_alloc_bounce()
793 bbuf->buf = PTR_ALIGN(base, ARTPEC_CACHE_LINE_MAX); in artpec6_crypto_alloc_bounce()
794 return bbuf; in artpec6_crypto_alloc_bounce()
800 struct artpec6_crypto_bounce_buffer *bbuf; in setup_bounce_buffer_in() local
803 bbuf = artpec6_crypto_alloc_bounce(common->gfp_flags); in setup_bounce_buffer_in()
804 if (!bbuf) in setup_bounce_buffer_in()
807 bbuf->length = size; in setup_bounce_buffer_in()
808 bbuf->sg = walk->sg; in setup_bounce_buffer_in()
[all …]
/linux/drivers/net/wireless/ath/ath9k/
H A Dbeacon.c201 avp->av_bcbuf = list_first_entry(&sc->beacon.bbuf, struct ath_buf, list); in ath9k_beacon_assign_slot()
239 list_add_tail(&bf->list, &sc->beacon.bbuf); in ath9k_beacon_remove_slot()
H A Dath9k.h712 struct list_head bbuf; member
H A Dxmit.c2855 error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf, in ath_tx_init()