Symbol: NIDS_PER_BLOCK
fs/f2fs/gc.c
1128
unsigned int indirect_blks = 2 * NIDS_PER_BLOCK + 4;
fs/f2fs/gc.c
1137
int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
fs/f2fs/gc.c
1141
int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
fs/f2fs/node.c
1049
return NIDS_PER_BLOCK + 1;
fs/f2fs/node.c
1060
f2fs_ra_node_pages(folio, ofs, NIDS_PER_BLOCK);
fs/f2fs/node.c
1064
for (i = ofs; i < NIDS_PER_BLOCK; i++, freed++) {
fs/f2fs/node.c
1076
child_nofs = nofs + ofs * (NIDS_PER_BLOCK + 1) + 1;
fs/f2fs/node.c
1077
for (i = ofs; i < NIDS_PER_BLOCK; i++) {
fs/f2fs/node.c
1080
child_nofs += NIDS_PER_BLOCK + 1;
fs/f2fs/node.c
1085
if (ret == (NIDS_PER_BLOCK + 1)) {
fs/f2fs/node.c
1142
f2fs_ra_node_pages(folios[idx], offset[idx + 1], NIDS_PER_BLOCK);
fs/f2fs/node.c
1145
for (i = offset[idx + 1]; i < NIDS_PER_BLOCK; i++) {
fs/f2fs/node.c
1228
nofs += 1 + NIDS_PER_BLOCK;
fs/f2fs/node.c
1231
nofs = 5 + 2 * NIDS_PER_BLOCK;
fs/f2fs/node.c
677
end = min(end, (int)NIDS_PER_BLOCK);
fs/f2fs/node.c
690
const long indirect_blks = ADDRS_PER_BLOCK(dn->inode) * NIDS_PER_BLOCK;
fs/f2fs/node.c
700
skipped_unit *= NIDS_PER_BLOCK;
fs/f2fs/node.c
728
const long dptrs_per_blk = NIDS_PER_BLOCK;
fs/f2fs/node.c
729
const long indirect_blks = ADDRS_PER_BLOCK(inode) * NIDS_PER_BLOCK;
fs/f2fs/node.c
730
const long dindirect_blks = indirect_blks * NIDS_PER_BLOCK;
fs/f2fs/node.h
353
if (ofs == 3 || ofs == 4 + NIDS_PER_BLOCK ||
fs/f2fs/node.h
354
ofs == 5 + 2 * NIDS_PER_BLOCK)
fs/f2fs/node.h
356
if (ofs >= 6 + 2 * NIDS_PER_BLOCK) {
fs/f2fs/node.h
357
ofs -= 6 + 2 * NIDS_PER_BLOCK;
fs/f2fs/node.h
358
if (!((long int)ofs % (NIDS_PER_BLOCK + 1)))
fs/f2fs/super.c
3821
leaf_count *= NIDS_PER_BLOCK;
fs/f2fs/super.c
3825
leaf_count *= NIDS_PER_BLOCK;
include/linux/f2fs_fs.h
349
__le32 nid[NIDS_PER_BLOCK]; /* array of data block address */