Home
last modified time | relevance | path

Searched refs:inodes (Results 1 – 25 of 33) sorted by relevance

12

/fs/overlayfs/
DKconfig46 bool "Overlayfs: turn on inodes index feature by default"
50 the index directory to map lower inodes to upper inodes by default.
55 The inodes index feature prevents breaking of lower hardlinks on copy
58 Note, that the inodes index feature is not backward compatible.
59 That is, mounting an overlay which has an inodes index on a kernel
99 inodes to a unified address space. The mapped 64bit inode numbers
100 might not be compatible with applications that expect 32bit inodes.
102 If compatibility with applications that expect 32bit inodes is not an
122 mounting an overlay which has metacopy only inodes on a kernel
/fs/squashfs/
Dexport.c50 if (ino_num == 0 || (ino_num - 1) >= msblk->inodes) in squashfs_inode_lookup()
116 u64 lookup_table_start, u64 next_table, unsigned int inodes) in squashfs_read_inode_lookup_table() argument
118 unsigned int length = SQUASHFS_LOOKUP_BLOCK_BYTES(inodes); in squashfs_read_inode_lookup_table()
119 unsigned int indexes = SQUASHFS_LOOKUP_BLOCKS(inodes); in squashfs_read_inode_lookup_table()
129 if (inodes == 0) in squashfs_read_inode_lookup_table()
Dsuper.c167 msblk->inodes = le32_to_cpu(sblk->inodes); in squashfs_fill_super()
179 TRACE("Number of inodes %d\n", msblk->inodes); in squashfs_fill_super()
256 lookup_table_start, next_table, msblk->inodes); in squashfs_fill_super()
380 buf->f_files = msblk->inodes; in squashfs_statfs()
Dsquashfs_fs_sb.h64 unsigned int inodes; member
DKconfig9 compress both files, inodes and directories. Inodes in the system
106 Xattrs are name:value pairs associated with inodes by
Dsquashfs_fs.h242 __le32 inodes; member
/fs/xfs/
Dxfs_iwalk.c489 unsigned int inodes) in xfs_iwalk_prefetch() argument
499 if (inodes == 0) in xfs_iwalk_prefetch()
500 inodes = IWALK_MAX_INODE_PREFETCH; in xfs_iwalk_prefetch()
501 inodes = min(inodes, IWALK_MAX_INODE_PREFETCH); in xfs_iwalk_prefetch()
504 inodes = round_up(inodes, XFS_INODES_PER_CHUNK); in xfs_iwalk_prefetch()
519 inobt_records = (inodes * 5) / (4 * XFS_INODES_PER_CHUNK); in xfs_iwalk_prefetch()
Dxfs_inode.c439 int inodes, in xfs_lock_inodes() argument
452 ASSERT(ips && inodes >= 2 && inodes <= 5); in xfs_lock_inodes()
458 inodes <= XFS_MMAPLOCK_MAX_SUBCLASS + 1); in xfs_lock_inodes()
460 inodes <= XFS_ILOCK_MAX_SUBCLASS + 1); in xfs_lock_inodes()
470 for (; i < inodes; i++) { in xfs_lock_inodes()
3207 struct xfs_inode *inodes[__XFS_SORT_INODES]; in xfs_rename() local
3235 inodes, &num_inodes); in xfs_rename()
3250 error = xfs_qm_vop_rename_dqattach(inodes); in xfs_rename()
3260 xfs_lock_inodes(inodes, num_inodes, XFS_ILOCK_EXCL); in xfs_rename()
3330 for (i = 0; i < num_inodes && inodes[i] != NULL; i++) { in xfs_rename()
[all …]
/fs/xfs/scrub/
Dialloc.c42 unsigned long long inodes; member
461 iabt->inodes += irec.ir_count; in xchk_iallocbt_rec()
553 unsigned long long inodes) in xchk_iallocbt_xref_rmap_inodes() argument
567 inode_blocks = XFS_B_TO_FSB(sc->mp, inodes * sc->mp->m_sb.sb_inodesize); in xchk_iallocbt_xref_rmap_inodes()
580 .inodes = 0, in xchk_iallocbt()
602 xchk_iallocbt_xref_rmap_inodes(sc, which, iabt.inodes); in xchk_iallocbt()
/fs/qnx6/
Dinode.c438 sbi->inodes = qnx6_private_inode(s, &sb1->Inode); in qnx6_fill_super()
439 if (!sbi->inodes) in qnx6_fill_super()
473 iput(sbi->inodes); in qnx6_fill_super()
490 iput(qs->inodes); in qnx6_put_super()
550 mapping = sbi->inodes->i_mapping; in qnx6_iget()
Dqnx6.h36 struct inode * inodes; member
/fs/jffs2/
DTODO12 - make the scan code populate real inodes so read_inode just after
15 decide which inodes should be in-core immediately after mount.
/fs/afs/
Ddir.c101 struct inode **inodes; member
710 cookie->inodes = kcalloc(cookie->nr_fids, sizeof(struct inode *), in afs_do_lookup()
712 if (!cookie->inodes) in afs_do_lookup()
717 cookie->inodes[1] = igrab(&dvnode->vfs_inode); in afs_do_lookup()
731 cookie->inodes[i] = ti; in afs_do_lookup()
812 if (cookie->inodes[i]) { in afs_do_lookup()
813 struct afs_vnode *iv = AFS_FS_I(cookie->inodes[i]); in afs_do_lookup()
843 if (cookie->inodes) { in afs_do_lookup()
845 iput(cookie->inodes[i]); in afs_do_lookup()
846 kfree(cookie->inodes); in afs_do_lookup()
/fs/btrfs/
Dioctl.c4546 struct btrfs_data_container *inodes = ctx; in build_ino_list() local
4549 if (inodes->bytes_left >= c) { in build_ino_list()
4550 inodes->bytes_left -= c; in build_ino_list()
4551 inodes->val[inodes->elem_cnt] = inum; in build_ino_list()
4552 inodes->val[inodes->elem_cnt + 1] = offset; in build_ino_list()
4553 inodes->val[inodes->elem_cnt + 2] = root; in build_ino_list()
4554 inodes->elem_cnt += 3; in build_ino_list()
4556 inodes->bytes_missing += c - inodes->bytes_left; in build_ino_list()
4557 inodes->bytes_left = 0; in build_ino_list()
4558 inodes->elem_missed += 3; in build_ino_list()
[all …]
/fs/
Dsuper.c69 long inodes; in super_cache_scan() local
86 inodes = list_lru_shrink_count(&sb->s_inode_lru, sc); in super_cache_scan()
88 total_objects = dentries + inodes + fs_objects + 1; in super_cache_scan()
94 inodes = mult_frac(sc->nr_to_scan, inodes, total_objects); in super_cache_scan()
106 sc->nr_to_scan = inodes + 1; in super_cache_scan()
/fs/ext2/
DKconfig16 Extended attributes are name:value pairs associated with inodes by
/fs/ubifs/
Dio.c1151 wbuf->inodes = kmalloc(size, GFP_KERNEL); in ubifs_wbuf_init()
1152 if (!wbuf->inodes) { in ubifs_wbuf_init()
1194 wbuf->inodes[wbuf->next_ino++] = inum; in ubifs_wbuf_add_ino_nolock()
1212 if (inum == wbuf->inodes[i]) { in wbuf_has_ino()
Ddebug.c1779 struct rb_root inodes; member
1802 p = &fsckd->inodes.rb_node; in add_inode()
1862 rb_insert_color(&fscki->rb, &fsckd->inodes); in add_inode()
1881 p = fsckd->inodes.rb_node; in search_inode()
2127 rbtree_postorder_for_each_entry_safe(fscki, n, &fsckd->inodes, rb) in free_inodes()
2149 struct rb_node *this = rb_first(&fsckd->inodes); in check_inodes()
2272 fsckd.inodes = RB_ROOT; in dbg_check_filesystem()
DKconfig71 Xattrs are name:value pairs associated with inodes by
/fs/ext4/
Dxattr.h134 struct inode *inodes[0]; member
/fs/erofs/
DKconfig35 Extended attributes are name:value pairs associated with inodes by
/fs/cramfs/
DREADME6 swapped around (though it does care that directory entries (inodes) in
149 data, only the superblock, inodes and block pointers.
/fs/reiserfs/
DKconfig60 Extended attributes are name:value pairs associated with inodes by
/fs/f2fs/
DKconfig41 Extended attributes are name:value pairs associated with inodes by
/fs/proc/
Dproc_sysctl.c201 INIT_HLIST_HEAD(&head->inodes); in init_header()
280 node = hlist_first_rcu(&head->inodes); in proc_sys_prune_dcache()
487 hlist_add_head_rcu(&ei->sysctl_inodes, &head->inodes); in proc_sys_make_inode()

12