• Home
  • Raw
  • Download

Lines Matching refs:entry

91 	struct nilfs_dat_entry *entry;  in nilfs_dat_commit_alloc()  local
95 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_commit_alloc()
97 entry->de_start = cpu_to_le64(NILFS_CNO_MIN); in nilfs_dat_commit_alloc()
98 entry->de_end = cpu_to_le64(NILFS_CNO_MAX); in nilfs_dat_commit_alloc()
99 entry->de_blocknr = cpu_to_le64(0); in nilfs_dat_commit_alloc()
115 struct nilfs_dat_entry *entry; in nilfs_dat_commit_free() local
119 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_commit_free()
121 entry->de_start = cpu_to_le64(NILFS_CNO_MIN); in nilfs_dat_commit_free()
122 entry->de_end = cpu_to_le64(NILFS_CNO_MIN); in nilfs_dat_commit_free()
123 entry->de_blocknr = cpu_to_le64(0); in nilfs_dat_commit_free()
142 struct nilfs_dat_entry *entry; in nilfs_dat_commit_start() local
146 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_commit_start()
148 entry->de_start = cpu_to_le64(nilfs_mdt_cno(dat)); in nilfs_dat_commit_start()
149 entry->de_blocknr = cpu_to_le64(blocknr); in nilfs_dat_commit_start()
157 struct nilfs_dat_entry *entry; in nilfs_dat_prepare_end() local
169 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_prepare_end()
171 blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_prepare_end()
188 struct nilfs_dat_entry *entry; in nilfs_dat_commit_end() local
194 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_commit_end()
196 end = start = le64_to_cpu(entry->de_start); in nilfs_dat_commit_end()
201 entry->de_end = cpu_to_le64(end); in nilfs_dat_commit_end()
202 blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_commit_end()
213 struct nilfs_dat_entry *entry; in nilfs_dat_abort_end() local
219 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_abort_end()
221 start = le64_to_cpu(entry->de_start); in nilfs_dat_abort_end()
222 blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_abort_end()
329 struct nilfs_dat_entry *entry; in nilfs_dat_move() local
354 entry = nilfs_palloc_block_get_entry(dat, vblocknr, entry_bh, kaddr); in nilfs_dat_move()
355 if (unlikely(entry->de_blocknr == cpu_to_le64(0))) { in nilfs_dat_move()
358 (unsigned long long)le64_to_cpu(entry->de_start), in nilfs_dat_move()
359 (unsigned long long)le64_to_cpu(entry->de_end)); in nilfs_dat_move()
365 entry->de_blocknr = cpu_to_le64(blocknr); in nilfs_dat_move()
398 struct nilfs_dat_entry *entry; in nilfs_dat_translate() local
417 entry = nilfs_palloc_block_get_entry(dat, vblocknr, entry_bh, kaddr); in nilfs_dat_translate()
418 blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_translate()
435 struct nilfs_dat_entry *entry; in nilfs_dat_get_vinfo() local
457 entry = nilfs_palloc_block_get_entry( in nilfs_dat_get_vinfo()
459 vinfo->vi_start = le64_to_cpu(entry->de_start); in nilfs_dat_get_vinfo()
460 vinfo->vi_end = le64_to_cpu(entry->de_end); in nilfs_dat_get_vinfo()
461 vinfo->vi_blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_get_vinfo()