Searched refs:bmap (Results 76 - 100 of 122) sorted by relevance

12345

/linux-master/fs/reiserfs/
H A Dprocfs.c200 " bmap"
217 SFPF(bmap),
/linux-master/fs/erofs/
H A Ddata.c407 .bmap = erofs_bmap,
/linux-master/fs/
H A Dinode.c1774 * bmap - find a block number in a file
1787 int bmap(struct inode *inode, sector_t *block) function
1789 if (!inode->i_mapping->a_ops->bmap)
1792 *block = inode->i_mapping->a_ops->bmap(inode->i_mapping, *block);
1795 EXPORT_SYMBOL(bmap); variable
H A Dioctl.c77 error = bmap(inode, &block);
/linux-master/fs/xfs/
H A Dxfs_aops.c532 * The swap code (ab-)uses ->bmap to get a block mapping and then
535 * 0 is the magic code for a bmap error.
537 * Since we don't pass back blockdev info, we can't return bmap
578 .bmap = xfs_vm_bmap,
/linux-master/fs/xfs/libxfs/
H A Dxfs_bmap.c50 * Compute and fill in the value of the maximum depth of a bmap btree
641 struct xfs_btree_cur *cur; /* bmap btree cursor */
759 * (The bmap-level manipulations are ok, though).
934 struct xfs_btree_cur *cur; /* bmap btree cursor */
3129 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
4201 * for in this bmap call but that wouldn't be as good.
5358 struct xfs_btree_cur *cur; /* bmap btree cursor */
5703 * A bmap extent shift adjusts the file offset of an extent to fill a preceding
6176 /* Record a bmap intent. */
6183 struct xfs_bmbt_irec *bmap)
6178 __xfs_bmap_add( struct xfs_trans *tp, enum xfs_bmap_intent_type type, struct xfs_inode *ip, int whichfork, struct xfs_bmbt_irec *bmap) argument
6233 struct xfs_bmbt_irec *bmap = &bi->bi_bmap; local
[all...]
/linux-master/fs/hfsplus/
H A Dinode.c161 .bmap = hfsplus_bmap,
171 .bmap = hfsplus_bmap,
/linux-master/fs/hfs/
H A Dinode.c164 .bmap = hfs_bmap,
174 .bmap = hfs_bmap,
/linux-master/drivers/net/ethernet/marvell/octeontx2/af/
H A Drvu.h93 unsigned long *bmap; /* Pointer to resource bitmap */ member in struct:rsrc_bmap
183 unsigned long *bmap; /* bitmap, 0 => bmap_entries */ member in struct:npc_mcam
H A Drpm.c175 if (!bitmap_weight(lmac->rx_fc_pfvf_bmap.bmap, lmac->rx_fc_pfvf_bmap.max))
/linux-master/drivers/dma/idxd/
H A Dinit.c442 void multi_u64_to_bmap(unsigned long *bmap, u64 *val, int count) argument
449 set_bit(nr, bmap);
H A Dcdev.c354 set_bit(h, evl->bmap);
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_main.c5873 struct msix_bmap *bmap = &adap->msix_bmap; local
5877 spin_lock_irqsave(&bmap->lock, flags);
5878 msix_idx = find_first_zero_bit(bmap->msix_bmap, bmap->mapsize);
5879 if (msix_idx < bmap->mapsize) {
5880 __set_bit(msix_idx, bmap->msix_bmap);
5882 spin_unlock_irqrestore(&bmap->lock, flags);
5886 spin_unlock_irqrestore(&bmap->lock, flags);
5893 struct msix_bmap *bmap = &adap->msix_bmap; local
5896 spin_lock_irqsave(&bmap
[all...]
H A Dcxgb4_filter.c553 unsigned long *bmap; local
619 bmap = t->hpftid_bmap;
658 bmap = t->ftid_bmap;
664 if (test_bit(bmap_ftid + i, bmap))
/linux-master/fs/qnx6/
H A Dinode.c499 .bmap = qnx6_bmap
/linux-master/fs/sysv/
H A Ditree.c510 .bmap = sysv_bmap
/linux-master/drivers/net/ethernet/freescale/dpaa2/
H A Ddpsw.c12 static void build_if_id_bitmap(__le64 *bmap, const u16 *id, const u16 num_ifs) argument
18 bmap[id[i] / 64] |= cpu_to_le64(BIT_MASK(id[i] % 64));
/linux-master/drivers/net/ethernet/qlogic/qed/
H A Dqed_iwarp.c1287 /* This function waits for all the bits of a bmap to be cleared, as long as
1292 qed_iwarp_wait_cid_map_cleared(struct qed_hwfn *p_hwfn, struct qed_bmap *bmap) argument
1298 weight = bitmap_weight(bmap->bitmap, bmap->max_count);
1312 weight = bitmap_weight(bmap->bitmap, bmap->max_count);
1324 bmap->name, weight);
/linux-master/drivers/net/ethernet/brocade/bna/
H A Dbnad.c2425 u32 bmap; local
2447 bmap = bna_rx_rid_mask(&bnad->bna);
2448 for (i = 0; bmap; i++) {
2449 if (bmap & 1) {
2455 bmap >>= 1;
/linux-master/include/linux/
H A Dfs.h415 sector_t (*bmap)(struct address_space *, sector_t); member in struct:address_space_operations
2809 extern int bmap(struct inode *inode, sector_t *block);
2811 static inline int bmap(struct inode *inode, sector_t *block) function
/linux-master/fs/nfsd/
H A Dnfs4proc.c2861 const u32 *bmap = op->u.getattr.ga_bmval; local
2862 u32 bmap0 = bmap[0], bmap1 = bmap[1], bmap2 = bmap[2];
/linux-master/fs/minix/
H A Dinode.c453 .bmap = minix_bmap,
/linux-master/fs/befs/
H A Dlinuxvfs.c91 .bmap = befs_bmap,
/linux-master/fs/xfs/scrub/
H A Dtrace.h388 __entry->startoff = cursor->bmap.br_startoff;
389 __entry->startblock = cursor->bmap.br_startblock;
390 __entry->blockcount = cursor->bmap.br_blockcount;
391 __entry->state = cursor->bmap.br_state;
/linux-master/fs/exfat/
H A Dinode.c304 "failed to bmap (inode : %p iblock : %llu, err : %d)",
348 "requested for bmap out of range(pos : (%llu) > i_size_aligned(%llu)\n",
576 .bmap = exfat_aop_bmap,

Completed in 478 milliseconds

12345