Searched refs:node_ofs (Results 1 - 2 of 2) sorted by last modified time

/linux-master/fs/f2fs/
H A Dgc.c1081 block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode) argument
1086 if (node_ofs == 0)
1089 if (node_ofs <= 2) {
1090 bidx = node_ofs - 1;
1091 } else if (node_ofs <= indirect_blks) {
1092 int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
1094 bidx = node_ofs - 2 - dec;
1096 int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
1098 bidx = node_ofs - 5 - dec;
H A Df2fs.h3875 block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode);

Completed in 168 milliseconds