Home
last modified time | relevance | path

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

/linux/fs/bcachefs/ !
H A Dcompress.c34 struct bbuf { struct
45 static struct bbuf __bounce_alloc(struct bch_fs *c, unsigned size, int rw) in __bounce_alloc() argument
53 return (struct bbuf) { .b = b, .type = BB_KMALLOC, .rw = rw }; in __bounce_alloc()
57 return (struct bbuf) { .b = b, .type = BB_MEMPOOL, .rw = rw }; in __bounce_alloc()
80 static struct bbuf __bio_map_or_bounce(struct bch_fs *c, struct bio *bio, in __bio_map_or_bounce()
83 struct bbuf ret; in __bio_map_or_bounce()
95 return (struct bbuf) { in __bio_map_or_bounce()
131 return (struct bbuf) { in __bio_map_or_bounce()
144 static struct bbuf bio_map_or_bounce(struct bch_fs *c, struct bio *bio, int rw) in bio_map_or_bounce()
149 static void bio_unmap_or_unbounce(struct bch_fs *c, struct bbuf bu
[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 in bmp_buf_get()
286 bmp_buf_put(struct bmp_buf * bbuf,bool dirty) bmp_buf_put() argument
320 struct bmp_buf bbuf; indx_mark_used() local
340 struct bmp_buf bbuf; indx_mark_free() local
[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.c215 u8 *bbuf, *rs_block; in fec_read_bufs() local
257 bbuf = dm_bufio_read_with_ioprio(bufio, block, &buf, bio->bi_ioprio); in fec_read_bufs()
258 if (IS_ERR(bbuf)) { in fec_read_bufs()
262 (unsigned long long)block, PTR_ERR(bbuf)); in fec_read_bufs()
284 fec_is_erasure(v, io, want_digest, bbuf)) in fec_read_bufs()
299 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 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.h711 struct list_head bbuf; member
H A Dxmit.c2842 error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf, in ath_tx_init()