Lines Matching refs:nmap
2163 int nmap, error, got, i, mapi = 1; in xfs_da_grow_inode_int() local
2175 nmap = 1; in xfs_da_grow_inode_int()
2178 args->total, &map, &nmap); in xfs_da_grow_inode_int()
2190 nmap = min(XFS_BMAP_MAX_NMAP, c); in xfs_da_grow_inode_int()
2193 args->total, &mapp[mapi], &nmap); in xfs_da_grow_inode_int()
2196 mapi += nmap; in xfs_da_grow_inode_int()
2605 int nmap = 1; in xfs_da_get_buf() local
2609 error = xfs_dabuf_map(dp, bno, 0, whichfork, &mapp, &nmap); in xfs_da_get_buf()
2610 if (error || nmap == 0) in xfs_da_get_buf()
2613 error = xfs_trans_get_buf_map(tp, mp->m_ddev_targp, mapp, nmap, 0, &bp); in xfs_da_get_buf()
2642 int nmap = 1; in xfs_da_read_buf() local
2646 error = xfs_dabuf_map(dp, bno, flags, whichfork, &mapp, &nmap); in xfs_da_read_buf()
2647 if (error || !nmap) in xfs_da_read_buf()
2650 error = xfs_trans_read_buf_map(mp, tp, mp->m_ddev_targp, mapp, nmap, 0, in xfs_da_read_buf()
2680 int nmap; in xfs_da_reada_buf() local
2684 nmap = 1; in xfs_da_reada_buf()
2685 error = xfs_dabuf_map(dp, bno, flags, whichfork, &mapp, &nmap); in xfs_da_reada_buf()
2686 if (error || !nmap) in xfs_da_reada_buf()
2689 xfs_buf_readahead_map(dp->i_mount->m_ddev_targp, mapp, nmap, ops); in xfs_da_reada_buf()