Home
last modified time | relevance | path

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

1234567

/Linux-v4.19/net/netfilter/
Dnf_conntrack_h323_asn1.c103 #define INC_BIT(bs) if((++(bs)->bit)>7){(bs)->cur++;(bs)->bit=0;} argument
104 #define INC_BITS(bs,b) if(((bs)->bit+=(b))>7){(bs)->cur+=(bs)->bit>>3;(bs)->bit&=7;} argument
105 #define BYTE_ALIGN(bs) if((bs)->bit){(bs)->cur++;(bs)->bit=0;} argument
106 static unsigned int get_len(struct bitstr *bs);
107 static unsigned int get_bit(struct bitstr *bs);
108 static unsigned int get_bits(struct bitstr *bs, unsigned int b);
109 static unsigned int get_bitmap(struct bitstr *bs, unsigned int b);
110 static unsigned int get_uint(struct bitstr *bs, int b);
113 static int decode_nul(struct bitstr *bs, const struct field_t *f, char *base, int level);
114 static int decode_bool(struct bitstr *bs, const struct field_t *f, char *base, int level);
[all …]
/Linux-v4.19/drivers/spi/
Dspi-bcm2835aux.c107 static inline u32 bcm2835aux_rd(struct bcm2835aux_spi *bs, unsigned reg) in bcm2835aux_rd() argument
109 return readl(bs->regs + reg); in bcm2835aux_rd()
112 static inline void bcm2835aux_wr(struct bcm2835aux_spi *bs, unsigned reg, in bcm2835aux_wr() argument
115 writel(val, bs->regs + reg); in bcm2835aux_wr()
118 static inline void bcm2835aux_rd_fifo(struct bcm2835aux_spi *bs) in bcm2835aux_rd_fifo() argument
121 int count = min(bs->rx_len, 3); in bcm2835aux_rd_fifo()
123 data = bcm2835aux_rd(bs, BCM2835_AUX_SPI_IO); in bcm2835aux_rd_fifo()
124 if (bs->rx_buf) { in bcm2835aux_rd_fifo()
127 *bs->rx_buf++ = (data >> 24) & 0xff; in bcm2835aux_rd_fifo()
130 *bs->rx_buf++ = (data >> 16) & 0xff; in bcm2835aux_rd_fifo()
[all …]
Dspi-bcm63xx-hsspi.c111 static void bcm63xx_hsspi_set_cs(struct bcm63xx_hsspi *bs, unsigned int cs, in bcm63xx_hsspi_set_cs() argument
116 mutex_lock(&bs->bus_mutex); in bcm63xx_hsspi_set_cs()
117 reg = __raw_readl(bs->regs + HSSPI_GLOBAL_CTRL_REG); in bcm63xx_hsspi_set_cs()
120 if (active == !(bs->cs_polarity & BIT(cs))) in bcm63xx_hsspi_set_cs()
123 __raw_writel(reg, bs->regs + HSSPI_GLOBAL_CTRL_REG); in bcm63xx_hsspi_set_cs()
124 mutex_unlock(&bs->bus_mutex); in bcm63xx_hsspi_set_cs()
127 static void bcm63xx_hsspi_set_clk(struct bcm63xx_hsspi *bs, in bcm63xx_hsspi_set_clk() argument
133 reg = DIV_ROUND_UP(2048, DIV_ROUND_UP(bs->speed_hz, hz)); in bcm63xx_hsspi_set_clk()
135 bs->regs + HSSPI_PROFILE_CLK_CTRL_REG(profile)); in bcm63xx_hsspi_set_clk()
137 reg = __raw_readl(bs->regs + HSSPI_PROFILE_SIGNAL_CTRL_REG(profile)); in bcm63xx_hsspi_set_clk()
[all …]
Dspi-bcm63xx.c162 static inline u8 bcm_spi_readb(struct bcm63xx_spi *bs, in bcm_spi_readb() argument
165 return readb(bs->regs + bs->reg_offsets[offset]); in bcm_spi_readb()
168 static inline u16 bcm_spi_readw(struct bcm63xx_spi *bs, in bcm_spi_readw() argument
172 return ioread16be(bs->regs + bs->reg_offsets[offset]); in bcm_spi_readw()
174 return readw(bs->regs + bs->reg_offsets[offset]); in bcm_spi_readw()
178 static inline void bcm_spi_writeb(struct bcm63xx_spi *bs, in bcm_spi_writeb() argument
181 writeb(value, bs->regs + bs->reg_offsets[offset]); in bcm_spi_writeb()
184 static inline void bcm_spi_writew(struct bcm63xx_spi *bs, in bcm_spi_writew() argument
188 iowrite16be(value, bs->regs + bs->reg_offsets[offset]); in bcm_spi_writew()
190 writew(value, bs->regs + bs->reg_offsets[offset]); in bcm_spi_writew()
[all …]
Dspi-bcm2835.c94 static inline u32 bcm2835_rd(struct bcm2835_spi *bs, unsigned reg) in bcm2835_rd() argument
96 return readl(bs->regs + reg); in bcm2835_rd()
99 static inline void bcm2835_wr(struct bcm2835_spi *bs, unsigned reg, u32 val) in bcm2835_wr() argument
101 writel(val, bs->regs + reg); in bcm2835_wr()
104 static inline void bcm2835_rd_fifo(struct bcm2835_spi *bs) in bcm2835_rd_fifo() argument
108 while ((bs->rx_len) && in bcm2835_rd_fifo()
109 (bcm2835_rd(bs, BCM2835_SPI_CS) & BCM2835_SPI_CS_RXD)) { in bcm2835_rd_fifo()
110 byte = bcm2835_rd(bs, BCM2835_SPI_FIFO); in bcm2835_rd_fifo()
111 if (bs->rx_buf) in bcm2835_rd_fifo()
112 *bs->rx_buf++ = byte; in bcm2835_rd_fifo()
[all …]
/Linux-v4.19/fs/xfs/scrub/
Dbtree.c133 struct xchk_btree *bs) in xchk_btree_rec() argument
135 struct xfs_btree_cur *cur = bs->cur; in xchk_btree_rec()
147 trace_xchk_btree_rec(bs->sc, cur, 0); in xchk_btree_rec()
150 if (!bs->firstrec && !cur->bc_ops->recs_inorder(cur, &bs->lastrec, rec)) in xchk_btree_rec()
151 xchk_btree_set_corrupt(bs->sc, cur, 0); in xchk_btree_rec()
152 bs->firstrec = false; in xchk_btree_rec()
153 memcpy(&bs->lastrec, rec, cur->bc_ops->rec_len); in xchk_btree_rec()
163 xchk_btree_set_corrupt(bs->sc, cur, 1); in xchk_btree_rec()
172 xchk_btree_set_corrupt(bs->sc, cur, 1); in xchk_btree_rec()
181 struct xchk_btree *bs, in xchk_btree_key() argument
[all …]
Dialloc.c100 struct xchk_btree *bs, in xchk_iallocbt_chunk() argument
105 struct xfs_mount *mp = bs->cur->bc_mp; in xchk_iallocbt_chunk()
106 xfs_agnumber_t agno = bs->cur->bc_private.a.agno; in xchk_iallocbt_chunk()
113 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_iallocbt_chunk()
115 xchk_iallocbt_chunk_xref(bs->sc, irec, agino, bno, len); in xchk_iallocbt_chunk()
132 struct xchk_btree *bs, in xchk_iallocbt_check_cluster_freemask() argument
140 struct xfs_mount *mp = bs->cur->bc_mp; in xchk_iallocbt_check_cluster_freemask()
146 if (xchk_should_terminate(bs->sc, &error)) in xchk_iallocbt_check_cluster_freemask()
153 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_iallocbt_check_cluster_freemask()
159 error = xfs_icache_inode_is_allocated(mp, bs->cur->bc_tp, in xchk_iallocbt_check_cluster_freemask()
[all …]
Drmap.c99 struct xchk_btree *bs, in xchk_rmapbt_rec() argument
102 struct xfs_mount *mp = bs->cur->bc_mp; in xchk_rmapbt_rec()
104 xfs_agnumber_t agno = bs->cur->bc_private.a.agno; in xchk_rmapbt_rec()
112 if (!xchk_btree_process_error(bs->sc, bs->cur, 0, &error)) in xchk_rmapbt_rec()
117 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_rmapbt_rec()
127 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_rmapbt_rec()
136 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_rmapbt_rec()
146 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_rmapbt_rec()
149 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_rmapbt_rec()
152 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_rmapbt_rec()
[all …]
Dalloc.c100 struct xchk_btree *bs, in xchk_allocbt_rec() argument
103 struct xfs_mount *mp = bs->cur->bc_mp; in xchk_allocbt_rec()
104 xfs_agnumber_t agno = bs->cur->bc_private.a.agno; in xchk_allocbt_rec()
115 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_allocbt_rec()
117 xchk_allocbt_xref(bs->sc, bno, len); in xchk_allocbt_rec()
Drefcount.c344 struct xchk_btree *bs, in xchk_refcountbt_rec() argument
347 struct xfs_mount *mp = bs->cur->bc_mp; in xchk_refcountbt_rec()
348 xfs_agblock_t *cow_blocks = bs->private; in xchk_refcountbt_rec()
349 xfs_agnumber_t agno = bs->cur->bc_private.a.agno; in xchk_refcountbt_rec()
363 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_refcountbt_rec()
372 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_refcountbt_rec()
375 xchk_btree_set_corrupt(bs->sc, bs->cur, 0); in xchk_refcountbt_rec()
377 xchk_refcountbt_xref(bs->sc, bno, len, refcount); in xchk_refcountbt_rec()
/Linux-v4.19/drivers/block/drbd/
Ddrbd_vli.h238 static inline void bitstream_init(struct bitstream *bs, void *s, size_t len, unsigned int pad_bits) in bitstream_init() argument
240 bs->buf = s; in bitstream_init()
241 bs->buf_len = len; in bitstream_init()
242 bs->pad_bits = pad_bits; in bitstream_init()
243 bitstream_cursor_reset(&bs->cur, bs->buf); in bitstream_init()
246 static inline void bitstream_rewind(struct bitstream *bs) in bitstream_rewind() argument
248 bitstream_cursor_reset(&bs->cur, bs->buf); in bitstream_rewind()
249 memset(bs->buf, 0, bs->buf_len); in bitstream_rewind()
260 static inline int bitstream_put_bits(struct bitstream *bs, u64 val, const unsigned int bits) in bitstream_put_bits() argument
262 unsigned char *b = bs->cur.b; in bitstream_put_bits()
[all …]
/Linux-v4.19/drivers/net/wireless/ath/ath9k/
Dcommon-beacon.c43 struct ath9k_beacon_state *bs) in ath9k_cmn_beacon_config_sta() argument
56 memset(bs, 0, sizeof(*bs)); in ath9k_cmn_beacon_config_sta()
72 bs->bs_intval = TU_TO_USEC(conf->intval); in ath9k_cmn_beacon_config_sta()
73 bs->bs_dtimperiod = conf->dtim_period * bs->bs_intval; in ath9k_cmn_beacon_config_sta()
74 bs->bs_nexttbtt = conf->nexttbtt; in ath9k_cmn_beacon_config_sta()
75 bs->bs_nextdtim = conf->nexttbtt; in ath9k_cmn_beacon_config_sta()
77 bs->bs_nextdtim = ath9k_get_next_tbtt(ah, tsf, dtim_intval); in ath9k_cmn_beacon_config_sta()
85 bs->bs_bmissthreshold = DIV_ROUND_UP(conf->bmiss_timeout, conf->intval); in ath9k_cmn_beacon_config_sta()
86 if (bs->bs_bmissthreshold > 15) in ath9k_cmn_beacon_config_sta()
87 bs->bs_bmissthreshold = 15; in ath9k_cmn_beacon_config_sta()
[all …]
/Linux-v4.19/crypto/
Dxcbc.c65 int bs = crypto_shash_blocksize(parent); in crypto_xcbc_digest_setkey() local
68 u8 key1[bs]; in crypto_xcbc_digest_setkey()
73 crypto_cipher_encrypt_one(ctx->child, consts, (u8 *)ks + bs); in crypto_xcbc_digest_setkey()
74 crypto_cipher_encrypt_one(ctx->child, consts + bs, (u8 *)ks + bs * 2); in crypto_xcbc_digest_setkey()
77 return crypto_cipher_setkey(ctx->child, key1, bs); in crypto_xcbc_digest_setkey()
85 int bs = crypto_shash_blocksize(pdesc->tfm); in crypto_xcbc_digest_init() local
86 u8 *prev = PTR_ALIGN(&ctx->ctx[0], alignmask + 1) + bs; in crypto_xcbc_digest_init()
89 memset(prev, 0, bs); in crypto_xcbc_digest_init()
102 int bs = crypto_shash_blocksize(parent); in crypto_xcbc_digest_update() local
104 u8 *prev = odds + bs; in crypto_xcbc_digest_update()
[all …]
Dcmac.c59 unsigned int bs = crypto_shash_blocksize(parent); in crypto_cmac_digest_setkey() local
71 memset(consts, 0, bs); in crypto_cmac_digest_setkey()
74 switch (bs) { in crypto_cmac_digest_setkey()
113 int bs = crypto_shash_blocksize(pdesc->tfm); in crypto_cmac_digest_init() local
114 u8 *prev = PTR_ALIGN((void *)ctx->ctx, alignmask + 1) + bs; in crypto_cmac_digest_init()
117 memset(prev, 0, bs); in crypto_cmac_digest_init()
130 int bs = crypto_shash_blocksize(parent); in crypto_cmac_digest_update() local
132 u8 *prev = odds + bs; in crypto_cmac_digest_update()
135 if ((ctx->len + len) <= bs) { in crypto_cmac_digest_update()
142 memcpy(odds + ctx->len, p, bs - ctx->len); in crypto_cmac_digest_update()
[all …]
/Linux-v4.19/drivers/misc/sgi-gru/
Dgrukservices.c152 static void gru_load_kernel_context(struct gru_blade_state *bs, int blade_id) in gru_load_kernel_context() argument
159 up_read(&bs->bs_kgts_sema); in gru_load_kernel_context()
160 down_write(&bs->bs_kgts_sema); in gru_load_kernel_context()
162 if (!bs->bs_kgts) { in gru_load_kernel_context()
164 bs->bs_kgts = gru_alloc_gts(NULL, 0, 0, 0, 0, 0); in gru_load_kernel_context()
165 if (!IS_ERR(bs->bs_kgts)) in gru_load_kernel_context()
169 bs->bs_kgts->ts_user_blade_id = blade_id; in gru_load_kernel_context()
171 kgts = bs->bs_kgts; in gru_load_kernel_context()
177 GRU_NUM_KERNEL_CBR * ncpus + bs->bs_async_cbrs); in gru_load_kernel_context()
180 bs->bs_async_dsr_bytes); in gru_load_kernel_context()
[all …]
/Linux-v4.19/drivers/media/pci/tw5864/
Dtw5864-h264.c33 struct bs { struct
40 static void bs_init(struct bs *s, void *buf, int size) in bs_init() argument
48 static int bs_len(struct bs *s) in bs_len()
53 static void bs_write(struct bs *s, int count, u32 bits) in bs_write()
73 static void bs_write1(struct bs *s, u32 bit) in bs_write1()
86 static void bs_write_ue(struct bs *s, u32 val) in bs_write_ue()
96 static void bs_write_se(struct bs *s, int val) in bs_write_se()
101 static void bs_rbsp_trailing(struct bs *s) in bs_rbsp_trailing()
112 struct bs bs, *s; in tw5864_h264_gen_sps_rbsp() local
114 s = &bs; in tw5864_h264_gen_sps_rbsp()
[all …]
/Linux-v4.19/block/
Dbio.c130 static void bio_put_slab(struct bio_set *bs) in bio_put_slab() argument
138 if (bs->bio_slab == bio_slabs[i].slab) { in bio_put_slab()
253 struct bio_set *bs = bio->bi_pool; in bio_free() local
258 if (bs) { in bio_free()
259 bvec_free(&bs->bvec_pool, bio->bi_io_vec, BVEC_POOL_IDX(bio)); in bio_free()
265 p -= bs->front_pad; in bio_free()
267 mempool_free(p, &bs->bio_pool); in bio_free()
351 struct bio_set *bs = container_of(work, struct bio_set, rescue_work); in bio_alloc_rescue() local
355 spin_lock(&bs->rescue_lock); in bio_alloc_rescue()
356 bio = bio_list_pop(&bs->rescue_list); in bio_alloc_rescue()
[all …]
Dbio-integrity.c56 struct bio_set *bs = bio->bi_pool; in bio_integrity_alloc() local
59 if (!bs || !mempool_initialized(&bs->bio_integrity_pool)) { in bio_integrity_alloc()
64 bip = mempool_alloc(&bs->bio_integrity_pool, gfp_mask); in bio_integrity_alloc()
77 &bs->bvec_integrity_pool); in bio_integrity_alloc()
93 mempool_free(bip, &bs->bio_integrity_pool); in bio_integrity_alloc()
108 struct bio_set *bs = bio->bi_pool; in bio_integrity_free() local
114 if (bs && mempool_initialized(&bs->bio_integrity_pool)) { in bio_integrity_free()
115 bvec_free(&bs->bvec_integrity_pool, bip->bip_vec, bip->bip_slab); in bio_integrity_free()
117 mempool_free(bip, &bs->bio_integrity_pool); in bio_integrity_free()
444 int bioset_integrity_create(struct bio_set *bs, int pool_size) in bioset_integrity_create() argument
[all …]
/Linux-v4.19/drivers/pcmcia/
Dsa11xx_base.h69 #define MECR_SET(mecr, sock, shift, mask, bs) \ argument
72 (((bs)<<(shift))<<((sock)==0?MECR_SOCKET_0_SHIFT:MECR_SOCKET_1_SHIFT)))
78 #define MECR_BSIO_SET(mecr, sock, bs) \ argument
79 MECR_SET((mecr), (sock), MECR_BSIO_SHIFT, MECR_BS_MASK, (bs))
84 #define MECR_BSA_SET(mecr, sock, bs) \ argument
85 MECR_SET((mecr), (sock), MECR_BSA_SHIFT, MECR_BS_MASK, (bs))
90 #define MECR_BSM_SET(mecr, sock, bs) \ argument
91 MECR_SET((mecr), (sock), MECR_BSM_SHIFT, MECR_BS_MASK, (bs))
/Linux-v4.19/drivers/crypto/
Domap-crypto.c19 static int omap_crypto_copy_sg_lists(int total, int bs, in omap_crypto_copy_sg_lists() argument
58 static int omap_crypto_copy_sgs(int total, int bs, struct scatterlist **sg, in omap_crypto_copy_sgs() argument
65 new_len = ALIGN(total, bs); in omap_crypto_copy_sgs()
91 static int omap_crypto_check_sg(struct scatterlist *sg, int total, int bs, in omap_crypto_check_sg() argument
97 if (!IS_ALIGNED(total, bs)) in omap_crypto_check_sg()
105 if (!IS_ALIGNED(sg->length, bs)) in omap_crypto_check_sg()
128 int omap_crypto_align_sg(struct scatterlist **sg, int total, int bs, in omap_crypto_align_sg() argument
139 ret = omap_crypto_check_sg(*sg, total, bs, flags); in omap_crypto_align_sg()
142 ret = omap_crypto_copy_sgs(total, bs, sg, new_sg, flags); in omap_crypto_align_sg()
147 ret = omap_crypto_copy_sg_lists(total, bs, sg, new_sg, flags); in omap_crypto_align_sg()
/Linux-v4.19/arch/powerpc/include/asm/
Dbitops.h53 #define PPC_BITMASK(bs, be) ((PPC_BIT(bs) - PPC_BIT(be)) | PPC_BIT(bs)) argument
61 #define PPC_BITMASK32(bs, be) ((PPC_BIT32(bs) - PPC_BIT32(be))|PPC_BIT32(bs)) argument
65 #define PPC_BITMASK8(bs, be) ((PPC_BIT8(bs) - PPC_BIT8(be))|PPC_BIT8(bs)) argument
/Linux-v4.19/drivers/media/tuners/
Dtda827x.c93 u8 bs; member
101 { .lomax = 62000000, .spd = 3, .bs = 2, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 1},
102 { .lomax = 66000000, .spd = 3, .bs = 3, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 1},
103 { .lomax = 76000000, .spd = 3, .bs = 1, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 0},
104 { .lomax = 84000000, .spd = 3, .bs = 2, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 0},
105 { .lomax = 93000000, .spd = 3, .bs = 2, .bp = 0, .cp = 0, .gc3 = 1, .div1p5 = 0},
106 { .lomax = 98000000, .spd = 3, .bs = 3, .bp = 0, .cp = 0, .gc3 = 1, .div1p5 = 0},
107 { .lomax = 109000000, .spd = 3, .bs = 3, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 0},
108 { .lomax = 123000000, .spd = 2, .bs = 2, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 1},
109 { .lomax = 133000000, .spd = 2, .bs = 3, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 1},
[all …]
/Linux-v4.19/arch/powerpc/lib/
Drheap.c158 unsigned long s, e, bs, be; in attach_free_block() local
175 bs = blk->start; in attach_free_block()
176 be = bs + blk->size; in attach_free_block()
178 if (next == NULL && s >= bs) in attach_free_block()
184 if (e == bs) in attach_free_block()
374 unsigned long s, e, m, bs, be; in rh_detach_region() local
398 bs = blk->start; in rh_detach_region()
400 if (s >= bs && e <= be) in rh_detach_region()
409 if (bs == s && be == e) { in rh_detach_region()
417 if (bs == s || be == e) { in rh_detach_region()
[all …]
/Linux-v4.19/tools/testing/selftests/sysctl/
Dsysctl.sh252 dd if="${TEST_FILE}" of="${TARGET}" bs=4096 2>/dev/null
262 dd if="${TEST_FILE}" of="${TARGET}" bs=1 seek=1 skip=1 2>/dev/null
272 dd if="${TEST_FILE}" of="${TARGET}" bs=20 seek=2 2>/dev/null
283 dd of="${TARGET}" bs=50 2>/dev/null
486 dd if="${TEST_FILE}" of="${TARGET}" bs=1 2>/dev/null
496 dd if="${TEST_FILE}" of="${TARGET}" bs=1 seek=1 2>/dev/null
507 dd of="${TARGET}" bs="${MAXLEN}" 2>/dev/null
518 dd of="${TARGET}" bs=$(( MAXLEN - 1 )) 2>/dev/null
529 dd of="${TARGET}" bs="${MAXLEN}" 2>/dev/null
540 dd of="${TARGET}" bs=$(( $MAXLEN + 1 )) 2>/dev/null
/Linux-v4.19/fs/ext4/
Dxattr.c1812 struct ext4_xattr_block_find *bs) in ext4_xattr_block_find() argument
1822 bs->bh = sb_bread(sb, EXT4_I(inode)->i_file_acl); in ext4_xattr_block_find()
1824 if (!bs->bh) in ext4_xattr_block_find()
1826 ea_bdebug(bs->bh, "b_count=%d, refcount=%d", in ext4_xattr_block_find()
1827 atomic_read(&(bs->bh->b_count)), in ext4_xattr_block_find()
1828 le32_to_cpu(BHDR(bs->bh)->h_refcount)); in ext4_xattr_block_find()
1829 error = ext4_xattr_check_block(inode, bs->bh); in ext4_xattr_block_find()
1833 bs->s.base = BHDR(bs->bh); in ext4_xattr_block_find()
1834 bs->s.first = BFIRST(bs->bh); in ext4_xattr_block_find()
1835 bs->s.end = bs->bh->b_data + bs->bh->b_size; in ext4_xattr_block_find()
[all …]

1234567