| /linux-6.15/Documentation/filesystems/nfs/ |
| H A D | exporting.rst | 11 dentries via open file descriptors or cwd/root. However remote 27 and dentries will be termed "exportable". 58 This is set when anonymous dentries are created, and cleared when a 69 subtree is successfully reconnected to root. Until then dentries 72 dentries. That guarantees that we won't need to hunt them down upon 80 c. Helper routines to allocate anonymous dentries, and to help attach 81 loose directory dentries at lookup time. They are:
|
| /linux-6.15/drivers/infiniband/hw/mlx4/ |
| H A D | sysfs.c | 269 port->dentr_ar->dentries[i].entry_num = i; in add_port_entries() 270 ret = create_sysfs_entry(port, &port->dentr_ar->dentries[i], in add_port_entries() 287 port->dentr_ar->dentries[attr.gid_tbl_len + i].entry_num = i; in add_port_entries() 289 &port->dentr_ar->dentries[attr.gid_tbl_len + i], in add_port_entries() 306 port->dentr_ar->dentries[2 * attr.gid_tbl_len + i].entry_num = i; in add_port_entries() 308 &port->dentr_ar->dentries[2 * attr.gid_tbl_len + i], in add_port_entries()
|
| H A D | mlx4_ib.h | 572 struct mlx4_ib_iov_sysfs_attr dentries[3 * NUM_ALIAS_GUID_PER_PORT + 1]; member
|
| /linux-6.15/Documentation/admin-guide/sysctl/ |
| H A D | fs.rst | 44 Policy for negative dentries. Set to 1 to always delete the dentry when a 58 long nr_negative; /* # of unused negative dentries */ 64 ``nr_dentry`` shows the total number of dentries allocated (active 65 + unused). ``nr_unused shows`` the number of dentries that are not 73 ``nr_negative`` shows the number of unused dentries that are also 74 negative dentries which do not map to any files. Instead,
|
| H A D | vm.rst | 242 reclaimable slab objects like dentries and inodes. Once dropped, their 249 To free reclaimable slab objects (includes dentries and inodes):: 264 (inodes, dentries, pagecache, etc...) These objects are automatically 1021 reclaim dentries and inodes at a "fair" rate with respect to pagecache and 1024 never reclaim dentries and inodes due to memory pressure and this can easily 1026 causes the kernel to prefer to reclaim dentries and inodes.
|
| /linux-6.15/fs/ |
| H A D | super.c | 184 long dentries; in super_cache_scan() local 203 dentries = list_lru_shrink_count(&sb->s_dentry_lru, sc); in super_cache_scan() 204 total_objects = dentries + inodes + fs_objects + 1; in super_cache_scan() 209 dentries = mult_frac(sc->nr_to_scan, dentries, total_objects); in super_cache_scan() 220 sc->nr_to_scan = dentries + 1; in super_cache_scan()
|
| /linux-6.15/Documentation/filesystems/ |
| H A D | path-lookup.txt | 19 as many cached path component dentries as possible. This significantly 36 even stores into cachelines of common dentries). This is known as "rcu-walk" 108 expensive and also problematic for directory dentries. Latency would be far to 116 the remaining dentries on the list. 183 reference counts on intermediate dentries along the path. To do this, a per
|
| H A D | vfs.rst | 37 most computers cannot fit all dentries in the RAM at the same time, some 39 dentry, the VFS may have to resort to creating dentries along the way, 52 dentries (hard links, for example, do this). 676 negative or needs lookup. Cached positive dentries are still 1295 dentries in the dcache are valid. Network filesystems are 1349 However, our vfsmount is pinned, and RCU held, so the dentries 1380 filesystems probably dont want to use it, because their dentries 1459 however, it does not guarantee that attached dentries won't 1472 of child dentries. Child dentries are basically like files in a 1480 manipulate dentries: [all …]
|
| H A D | ramfs-rootfs-initramfs.rst | 28 dentries and page cache as usual, but there's nowhere to write them to. 46 as creating and destroying dentries. Plus it needed a filesystem driver
|
| H A D | porting.rst | 365 unreferenced dentries, and is now only called when the dentry refcount goes to 412 atomic operations and scalability hazards on dentries and inodes (see 1105 ->d_delete() instances are now called for dentries with ->d_lock held 1122 half-killed dentries that might be seen there; taking ->d_lock on those will
|
| H A D | ceph.rst | 43 directories, allowing entire directories of dentries and inodes to be
|
| H A D | path-lookup.rst | 115 dentry of a directory to the dentries of the children, that linkage is 260 ``d_lock`` on one or more the dentries while the change happens. One 261 exception is when idle dentries are removed from the dcache due to 281 not prevent them both adding new dentries with the same name. As this 538 The Linux VFS has a concept of "managed" dentries. There are three 539 potentially interesting things about these dentries corresponding 680 data structures - dentries, inodes, super_blocks, and mounts - will
|
| H A D | f2fs.rst | 148 dentries is limited to ~3.4k. 648 dentries(11 * 214 bytes) + file name (8 * 214 bytes) 658 | bitmap | reserved | dentries | file names |
|
| H A D | directory-locking.rst | 106 if two dentries have been found to have a common ancestor after taking
|
| H A D | orangefs.rst | 541 dentries is to always obtain the needed information from userspace - at
|
| H A D | idmappings.rst | 618 They allow to expose the same set of dentries with different ownership at
|
| H A D | fscrypt.rst | 38 line with unencrypted files. Similarly, half as many dentries and
|
| /linux-6.15/fs/ceph/ |
| H A D | inode.c | 1849 folio_release_kmap(ctl->folio, ctl->dentries); in ceph_readdir_cache_release() 1883 ctl->dentries = kmap_local_folio(ctl->folio, 0); in fill_readdir_cache() 1885 memset(ctl->dentries, 0, PAGE_SIZE); in fill_readdir_cache() 1891 ctl->dentries[idx] = dn; in fill_readdir_cache()
|
| H A D | dir.c | 155 cache_ctl->dentries = kmap_local_folio(cache_ctl->folio, 0); in __dcache_find_get_entry() 165 dentry = cache_ctl->dentries[cache_ctl->index]; in __dcache_find_get_entry()
|
| H A D | super.h | 907 struct dentry **dentries; member
|
| /linux-6.15/fs/nfsd/ |
| H A D | nfs4state.c | 3240 struct dentry *dentries[ARRAY_SIZE(client_files)]; in create_client() local 3262 client_files, dentries); in create_client() 3263 clp->cl_nfsd_info_dentry = dentries[0]; in create_client()
|
| /linux-6.15/Documentation/admin-guide/cgroup-v1/ |
| H A D | cpusets.rst | 333 such as for inodes and dentries evenly over all the nodes that the
|
| /linux-6.15/Documentation/admin-guide/ |
| H A D | cgroup-v2.rst | 1218 - Kernel data structures such as dentries and inodes. 1535 dentries and inodes.
|