Symbol: NIDS_PER_BLOCK
fs/f2fs/gc.c
1132
unsigned int indirect_blks = 2 * NIDS_PER_BLOCK + 4;
fs/f2fs/gc.c
1141
int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
fs/f2fs/gc.c
1145
int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
fs/f2fs/node.c
1057
return NIDS_PER_BLOCK + 1;
fs/f2fs/node.c
1068
f2fs_ra_node_pages(folio, ofs, NIDS_PER_BLOCK);
fs/f2fs/node.c
1072
for (i = ofs; i < NIDS_PER_BLOCK; i++, freed++) {
fs/f2fs/node.c
1084
child_nofs = nofs + ofs * (NIDS_PER_BLOCK + 1) + 1;
fs/f2fs/node.c
1085
for (i = ofs; i < NIDS_PER_BLOCK; i++) {
fs/f2fs/node.c
1088
child_nofs += NIDS_PER_BLOCK + 1;
fs/f2fs/node.c
1093
if (ret == (NIDS_PER_BLOCK + 1)) {
fs/f2fs/node.c
1150
f2fs_ra_node_pages(folios[idx], offset[idx + 1], NIDS_PER_BLOCK);
fs/f2fs/node.c
1153
for (i = offset[idx + 1]; i < NIDS_PER_BLOCK; i++) {
fs/f2fs/node.c
1234
nofs += 1 + NIDS_PER_BLOCK;
fs/f2fs/node.c
1237
nofs = 5 + 2 * NIDS_PER_BLOCK;
fs/f2fs/node.c
685
end = min(end, (int)NIDS_PER_BLOCK);
fs/f2fs/node.c
698
const long indirect_blks = ADDRS_PER_BLOCK(dn->inode) * NIDS_PER_BLOCK;
fs/f2fs/node.c
708
skipped_unit *= NIDS_PER_BLOCK;
fs/f2fs/node.c
736
const long dptrs_per_blk = NIDS_PER_BLOCK;
fs/f2fs/node.c
737
const long indirect_blks = ADDRS_PER_BLOCK(inode) * NIDS_PER_BLOCK;
fs/f2fs/node.c
738
const long dindirect_blks = indirect_blks * NIDS_PER_BLOCK;
fs/f2fs/node.h
357
if (ofs == 3 || ofs == 4 + NIDS_PER_BLOCK ||
fs/f2fs/node.h
358
ofs == 5 + 2 * NIDS_PER_BLOCK)
fs/f2fs/node.h
360
if (ofs >= 6 + 2 * NIDS_PER_BLOCK) {
fs/f2fs/node.h
361
ofs -= 6 + 2 * NIDS_PER_BLOCK;
fs/f2fs/node.h
362
if (!((long int)ofs % (NIDS_PER_BLOCK + 1)))
fs/f2fs/super.c
3858
leaf_count *= NIDS_PER_BLOCK;
fs/f2fs/super.c
3862
leaf_count *= NIDS_PER_BLOCK;
include/linux/f2fs_fs.h
353
__le32 nid[NIDS_PER_BLOCK]; /* array of data block address */