Searched refs:bi (Results 151 - 175 of 191) sorted by path

12345678

/linux-master/fs/reiserfs/
H A Dreiserfs.h2600 static inline struct super_block *sb_from_bi(struct buffer_info *bi) argument
2602 return bi ? sb_from_tb(bi->tb) : NULL;
3207 void print_bi(struct buffer_info *bi, char *mes);
3229 void leaf_insert_into_buf(struct buffer_info *bi, int before,
3233 void leaf_paste_in_buffer(struct buffer_info *bi, int pasted_item_num,
3236 void leaf_cut_from_buffer(struct buffer_info *bi, int cut_item_num,
3238 void leaf_paste_entries(struct buffer_info *bi, int item_num, int before,
/linux-master/fs/ubifs/
H A Dbudget.c94 liab = c->bi.idx_growth + c->bi.data_growth + c->bi.dd_growth;
168 idx_size = c->bi.old_idx_sz + c->bi.idx_growth + c->bi.uncommitted_idx;
279 * Notes about @c->bi.min_idx_lebs and @c->lst.idx_lebs variables:
284 * o @c->bi.min_idx_lebs is the number of LEBS the index presumably takes. IOW,
285 * the index may be consolidated to take up to @c->bi.min_idx_lebs LEBs.
330 min_idx_lebs, c->bi
[all...]
H A Dcommit.c179 c->mst_node->index_size = cpu_to_le64(c->bi.old_idx_sz);
H A Ddebug.c612 void ubifs_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi) argument
623 current->pid, bi->data_growth + bi->dd_growth,
624 bi->data_growth + bi->dd_growth + bi->idx_growth);
626 bi->data_growth, bi->dd_growth, bi->idx_growth);
628 bi
[all...]
H A Ddebug.h249 void ubifs_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi);
H A Ddir.c858 c->bi.nospace = c->bi.nospace_rp = 0;
962 c->bi.nospace = c->bi.nospace_rp = 0;
H A Dfile.c208 struct ubifs_budget_req req = { .dd_growth = c->bi.page_budget};
1209 c->bi.nospace = c->bi.nospace_rp = 0;
H A Dfind.c243 if (c->bi.min_idx_lebs >= c->lst.idx_lebs) {
244 rsvd_idx_lebs = c->bi.min_idx_lebs - c->lst.idx_lebs;
267 exclude_index = (c->bi.min_idx_lebs >= c->lst.idx_lebs);
493 if (c->bi.min_idx_lebs > c->lst.idx_lebs)
494 rsvd_idx_lebs = c->bi.min_idx_lebs - c->lst.idx_lebs;
H A Djournal.c484 ubifs_dump_budg(c, &c->bi);
H A Dlprops.c1108 ubifs_dump_budg(c, &c->bi);
H A Dmaster.c224 if (c->bi.old_idx_sz & 7 || c->bi.old_idx_sz >= main_sz) {
294 c->lst.total_used + c->bi.old_idx_sz > main_sz) {
362 c->bi.old_idx_sz = le64_to_cpu(c->mst_node->index_size);
383 c->calc_idx_sz = c->bi.old_idx_sz;
H A Drecovery.c1124 ubifs_dump_budg(c, &c->bi);
H A Dreplay.c1235 * UBIFS budgeting calculations use @c->bi.uncommitted_idx variable
1236 * to roughly estimate index growth. Things like @c->bi.min_idx_lebs
1240 c->bi.uncommitted_idx = atomic_long_read(&c->dirty_zn_cnt);
1241 c->bi.uncommitted_idx *= c->max_idx_node_sz;
H A Dsuper.c386 c->bi.nospace = c->bi.nospace_rp = 0;
719 * it is not included into 'c->bi.inode_budget'.
721 c->bi.page_budget = UBIFS_MAX_DATA_NODE_SZ * UBIFS_BLOCKS_PER_PAGE;
722 c->bi.inode_budget = UBIFS_INO_NODE_SZ;
723 c->bi.dent_budget = UBIFS_MAX_DENT_NODE_SZ;
767 c->bi.min_idx_lebs = ubifs_calc_min_idx_lebs(c);
1243 ubifs_dump_budg(c, &c->bi);
1450 err = dbg_check_idx_size(c, c->bi.old_idx_sz);
1459 c->bi
[all...]
H A Dtnc_commit.c384 ubifs_dump_budg(c, &c->bi);
793 * committed index ('c->bi.old_idx_sz') and zero out the index growth
799 ubifs_assert(c, c->bi.min_idx_lebs == ubifs_calc_min_idx_lebs(c));
800 c->bi.old_idx_sz = c->calc_idx_sz;
801 c->bi.uncommitted_idx = 0;
802 c->bi.min_idx_lebs = ubifs_calc_min_idx_lebs(c);
H A Dubifs.h1140 * @space_lock: protects @bi and @lst
1142 * @bi: budgeting information
1399 struct ubifs_budg_info bi; member in struct:ubifs_info
/linux-master/fs/xfs/libxfs/
H A Dxfs_bmap.c6214 struct xfs_bmap_intent *bi; local
6221 bi = kmem_cache_alloc(xfs_bmap_intent_cache, GFP_KERNEL | __GFP_NOFAIL);
6222 INIT_LIST_HEAD(&bi->bi_list);
6223 bi->bi_type = type;
6224 bi->bi_owner = ip;
6225 bi->bi_whichfork = whichfork;
6226 bi->bi_bmap = *bmap;
6228 xfs_bmap_defer_add(tp, bi);
6260 struct xfs_bmap_intent *bi)
6262 struct xfs_bmbt_irec *bmap = &bi
6258 xfs_bmap_finish_one( struct xfs_trans *tp, struct xfs_bmap_intent *bi) argument
[all...]
H A Dxfs_bmap.h255 int xfs_bmap_finish_one(struct xfs_trans *tp, struct xfs_bmap_intent *bi);
/linux-master/fs/xfs/
H A Dxfs_bmap_item.c248 struct xfs_bmap_intent *bi)
261 map->me_owner = bi->bi_owner->i_ino;
262 map->me_startblock = bi->bi_bmap.br_startblock;
263 map->me_startoff = bi->bi_bmap.br_startoff;
264 map->me_len = bi->bi_bmap.br_blockcount;
266 switch (bi->bi_type) {
269 map->me_flags = bi->bi_type;
274 if (bi->bi_bmap.br_state == XFS_EXT_UNWRITTEN)
276 if (bi->bi_whichfork == XFS_ATTR_FORK)
278 if (xfs_ifork_is_realtime(bi
245 xfs_bmap_update_log_item( struct xfs_trans *tp, struct xfs_bui_log_item *buip, struct xfs_bmap_intent *bi) argument
291 struct xfs_bmap_intent *bi; local
323 xfs_bmap_update_get_group( struct xfs_mount *mp, struct xfs_bmap_intent *bi) argument
346 xfs_bmap_defer_add( struct xfs_trans *tp, struct xfs_bmap_intent *bi) argument
358 xfs_bmap_update_put_group( struct xfs_bmap_intent *bi) argument
372 struct xfs_bmap_intent *bi = bi_entry(item); local
386 struct xfs_bmap_intent *bi = bi_entry(item); local
451 struct xfs_bmap_intent *bi; local
[all...]
H A Dxfs_bmap_item.h73 void xfs_bmap_defer_add(struct xfs_trans *tp, struct xfs_bmap_intent *bi);
H A Dxfs_trace.h2960 TP_PROTO(struct xfs_bmap_intent *bi),
2961 TP_ARGS(bi),
2976 struct xfs_inode *ip = bi->bi_owner;
2979 if (xfs_ifork_is_realtime(ip, bi->bi_whichfork)) {
2982 __entry->rtbno = bi->bi_bmap.br_startblock;
2986 bi->bi_bmap.br_startblock);
2988 bi->bi_bmap.br_startblock);
2993 __entry->whichfork = bi->bi_whichfork;
2994 __entry->l_loff = bi->bi_bmap.br_startoff;
2995 __entry->l_len = bi
[all...]
/linux-master/include/linux/
H A Dblk-integrity.h49 struct blk_integrity *bi = &disk->queue->integrity; local
51 if (!bi->profile)
54 return bi;
83 * @bi: blk_integrity profile for device
91 static inline unsigned int bio_integrity_intervals(struct blk_integrity *bi, argument
94 return sectors >> (bi->interval_exp - 9);
97 static inline unsigned int bio_integrity_bytes(struct blk_integrity *bi, argument
100 return bio_integrity_intervals(bi, sectors) * bi->tuple_size;
164 static inline unsigned int bio_integrity_intervals(struct blk_integrity *bi, argument
170 bio_integrity_bytes(struct blk_integrity *bi, unsigned int sectors) argument
[all...]
/linux-master/include/trace/events/
H A Dbtrfs.h367 TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
370 TP_ARGS(bi, l, fi, start),
388 TP_fast_assign_btrfs(bi->root->fs_info,
389 __entry->root_obj = bi->root->root_key.objectid;
390 __entry->ino = btrfs_ino(bi);
391 __entry->isize = bi->vfs_inode.i_size;
392 __entry->disk_isize = bi->disk_i_size;
422 TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
425 TP_ARGS(bi, l, fi, slot, start),
439 bi
[all...]
/linux-master/io_uring/
H A Dnet.c1281 struct bvec_iter bi; local
1290 bi.bi_size = min(from->count, length);
1291 bi.bi_bvec_done = from->iov_offset;
1292 bi.bi_idx = 0;
1294 while (bi.bi_size && frag < MAX_SKB_FRAGS) {
1295 struct bio_vec v = mp_bvec_iter_bvec(from->bvec, bi);
1301 bvec_iter_advance_single(from->bvec, &bi, v.bv_len);
1303 if (bi.bi_size)
1307 from->bvec += bi.bi_idx;
1308 from->nr_segs -= bi
[all...]
/linux-master/lib/crypto/
H A Dcurve25519-hacl64.c447 u64 bi = b[i]; local
448 u64 x = swap1 & (ai ^ bi);
450 u64 bi1 = bi ^ x;

Completed in 379 milliseconds

12345678