• Home
  • Raw
  • Download

Lines Matching refs:entry

78 	struct nilfs_dat_entry *entry;  in nilfs_dat_commit_alloc()  local
82 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_commit_alloc()
84 entry->de_start = cpu_to_le64(NILFS_CNO_MIN); in nilfs_dat_commit_alloc()
85 entry->de_end = cpu_to_le64(NILFS_CNO_MAX); in nilfs_dat_commit_alloc()
86 entry->de_blocknr = cpu_to_le64(0); in nilfs_dat_commit_alloc()
102 struct nilfs_dat_entry *entry; in nilfs_dat_commit_free() local
106 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_commit_free()
108 entry->de_start = cpu_to_le64(NILFS_CNO_MIN); in nilfs_dat_commit_free()
109 entry->de_end = cpu_to_le64(NILFS_CNO_MIN); in nilfs_dat_commit_free()
110 entry->de_blocknr = cpu_to_le64(0); in nilfs_dat_commit_free()
129 struct nilfs_dat_entry *entry; in nilfs_dat_commit_start() local
133 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_commit_start()
135 entry->de_start = cpu_to_le64(nilfs_mdt_cno(dat)); in nilfs_dat_commit_start()
136 entry->de_blocknr = cpu_to_le64(blocknr); in nilfs_dat_commit_start()
144 struct nilfs_dat_entry *entry; in nilfs_dat_prepare_end() local
156 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_prepare_end()
158 blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_prepare_end()
175 struct nilfs_dat_entry *entry; in nilfs_dat_commit_end() local
181 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_commit_end()
183 end = start = le64_to_cpu(entry->de_start); in nilfs_dat_commit_end()
188 entry->de_end = cpu_to_le64(end); in nilfs_dat_commit_end()
189 blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_commit_end()
200 struct nilfs_dat_entry *entry; in nilfs_dat_abort_end() local
206 entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, in nilfs_dat_abort_end()
208 start = le64_to_cpu(entry->de_start); in nilfs_dat_abort_end()
209 blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_abort_end()
316 struct nilfs_dat_entry *entry; in nilfs_dat_move() local
341 entry = nilfs_palloc_block_get_entry(dat, vblocknr, entry_bh, kaddr); in nilfs_dat_move()
342 if (unlikely(entry->de_blocknr == cpu_to_le64(0))) { in nilfs_dat_move()
346 (unsigned long long)le64_to_cpu(entry->de_start), in nilfs_dat_move()
347 (unsigned long long)le64_to_cpu(entry->de_end)); in nilfs_dat_move()
353 entry->de_blocknr = cpu_to_le64(blocknr); in nilfs_dat_move()
386 struct nilfs_dat_entry *entry; in nilfs_dat_translate() local
405 entry = nilfs_palloc_block_get_entry(dat, vblocknr, entry_bh, kaddr); in nilfs_dat_translate()
406 blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_translate()
423 struct nilfs_dat_entry *entry; in nilfs_dat_get_vinfo() local
445 entry = nilfs_palloc_block_get_entry( in nilfs_dat_get_vinfo()
447 vinfo->vi_start = le64_to_cpu(entry->de_start); in nilfs_dat_get_vinfo()
448 vinfo->vi_end = le64_to_cpu(entry->de_end); in nilfs_dat_get_vinfo()
449 vinfo->vi_blocknr = le64_to_cpu(entry->de_blocknr); in nilfs_dat_get_vinfo()