/linux/fs/nilfs2/ |
H A D | ifile.c | 17 #include "ifile.h" 21 * struct nilfs_ifile_info - on-memory private data of ifile 23 * @palloc_cache: persistent object allocator cache of ifile 30 static inline struct nilfs_ifile_info *NILFS_IFILE_I(struct inode *ifile) in NILFS_IFILE_I() argument 32 return (struct nilfs_ifile_info *)NILFS_MDT(ifile); in NILFS_IFILE_I() 37 * @ifile: ifile inode 41 * nilfs_ifile_create_inode() allocates a new inode in the ifile metadata 43 * as well as storing the ifile's buffer with the disk inode in the location 52 int nilfs_ifile_create_inode(struct inode *ifile, ino_ argument 91 nilfs_ifile_delete_inode(struct inode * ifile,ino_t ino) nilfs_ifile_delete_inode() argument 126 nilfs_ifile_get_inode_block(struct inode * ifile,ino_t ino,struct buffer_head ** out_bh) nilfs_ifile_get_inode_block() argument 152 nilfs_ifile_count_free_inodes(struct inode * ifile,u64 * nmaxinodes,u64 * nfreeinodes) nilfs_ifile_count_free_inodes() argument 185 struct inode *ifile; nilfs_ifile_read() local [all...] |
H A D | ifile.h | 22 nilfs_ifile_map_inode(struct inode *ifile, ino_t ino, struct buffer_head *ibh) in nilfs_ifile_map_inode() argument 24 size_t __offset_in_folio = nilfs_palloc_entry_offset(ifile, ino, ibh); in nilfs_ifile_map_inode()
|
H A D | inode.c | 25 #include "ifile.h" 323 err = nilfs_ifile_create_inode(root->ifile, &ino, &bh); in nilfs_new_inode() 455 err = nilfs_ifile_get_inode_block(root->ifile, ino, &bh); in __nilfs_read_inode() 459 raw_inode = nilfs_ifile_map_inode(root->ifile, ino, bh); in __nilfs_read_inode() 712 * to @raw_inode on ifile, cpfile or a super root block. Since inode bmap 745 struct inode *ifile = ii->i_root->ifile; in nilfs_update_inode() local 748 raw_inode = nilfs_ifile_map_inode(ifile, ino, ibh); in nilfs_update_inode() 751 memset(raw_inode, 0, NILFS_MDT(ifile)->mi_entry_size); in nilfs_update_inode() 894 ret = nilfs_ifile_delete_inode(ii->i_root->ifile, inod in nilfs_evict_inode() [all...] |
H A D | Makefile | 6 ifile.o alloc.o gcinode.o ioctl.o sysfs.o
|
H A D | cpfile.h | 20 struct nilfs_root *root, struct inode *ifile);
|
H A D | cpfile.c | 233 * @ifile: ifile's inode to read and attach to @root 236 * stores it to the inode file given by @ifile and the nilfs root object 246 struct nilfs_root *root, struct inode *ifile) in nilfs_cpfile_read_checkpoint() argument 271 ret = nilfs_read_inode_common(ifile, &cp->cp_ifile_inode); in nilfs_cpfile_read_checkpoint() 278 "ifile inode (checkpoint number=%llu) corrupted", in nilfs_cpfile_read_checkpoint() 287 root->ifile = ifile; in nilfs_cpfile_read_checkpoint() 424 nilfs_write_inode_common(root->ifile, &cp->cp_ifile_inode); in nilfs_cpfile_finalize_checkpoint() 425 nilfs_bmap_write(NILFS_I(root->ifile) in nilfs_cpfile_finalize_checkpoint() [all...] |
H A D | segment.c | 32 #include "ifile.h" 842 if (nilfs_mdt_fetch_dirty(root->ifile)) in nilfs_test_metadata_dirty() 881 nilfs_mdt_clear_dirty(sci->sc_root->ifile); in nilfs_segctor_clear_metadata_dirty() 887 static void nilfs_fill_in_file_bmap(struct inode *ifile, in nilfs_fill_in_file_bmap() argument 897 raw_inode = nilfs_ifile_map_inode(ifile, ii->vfs_inode.i_ino, in nilfs_fill_in_file_bmap() 909 nilfs_fill_in_file_bmap(sci->sc_root->ifile, ii); in nilfs_segctor_fill_in_file_bmap() 1242 err = nilfs_segctor_scan_file(sci, sci->sc_root->ifile, in nilfs_segctor_collect_blocks() 2013 struct inode *ifile = sci->sc_root->ifile; in nilfs_segctor_collect_dirty_files() local 2024 ifile, i in nilfs_segctor_collect_dirty_files() [all...] |
H A D | the_nilfs.h | 223 * @ifile: inode file 235 struct inode *ifile; member
|
H A D | the_nilfs.c | 906 new->ifile = NULL; in nilfs_find_or_create_root() 935 iput(root->ifile); in nilfs_put_root()
|
H A D | super.c | 48 #include "ifile.h" 564 if (root->ifile) in nilfs_attach_checkpoint() 649 err = nilfs_ifile_count_free_inodes(root->ifile, in nilfs_statfs()
|
/linux/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm.c | 522 FILE *ifile; in output_listing() local 537 if ((ifile = fopen(ifilename, "r")) == NULL) { in output_listing() 610 fgets(buf, sizeof(buf), ifile); in output_listing() 632 fgets(buf, sizeof(buf), ifile); in output_listing() 641 while(fgets(buf, sizeof(buf), ifile) != NULL) in output_listing() 644 fclose(ifile); in output_listing()
|
/linux/Documentation/filesystems/ |
H A D | nilfs2.rst | 238 1) Inode file (ifile) -- Stores on-disk inodes 248 | Summary | regular file | file | ... | ifile | cpfile | sufile | DAT |SR| 261 included in the ifile. The inode of ifile itself is included in the 272 |-- ifile (cno=c1) 273 |-- ifile (cno=c2) ---- file (ino=i1) 275 `-- ifile (cno=xx) |-- file (ino=i3)
|