Searched refs:graveyard (Results 1 – 9 of 9) sorted by relevance
/linux-6.12.1/fs/cachefiles/ |
D | namei.c | 307 trap = lock_rename(cache->graveyard, dir); in cachefiles_bury_object() 315 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 320 if (!d_can_lookup(cache->graveyard)) { in cachefiles_bury_object() 321 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 327 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 333 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 338 grave = lookup_one_len(nbuffer, cache->graveyard, strlen(nbuffer)); in cachefiles_bury_object() 340 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 341 trace_cachefiles_vfs_error(object, d_inode(cache->graveyard), in cachefiles_bury_object() 355 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() [all …]
|
D | cache.c | 22 struct dentry *graveyard, *cachedir, *root; in cachefiles_add_cache() local 136 graveyard = cachefiles_get_directory(cache, root, "graveyard", NULL); in cachefiles_add_cache() 137 if (IS_ERR(graveyard)) { in cachefiles_add_cache() 138 ret = PTR_ERR(graveyard); in cachefiles_add_cache() 142 cache->graveyard = graveyard; in cachefiles_add_cache() 162 cachefiles_put_directory(cache->graveyard); in cachefiles_add_cache() 163 cache->graveyard = NULL; in cachefiles_add_cache()
|
D | internal.h | 92 struct dentry *graveyard; /* directory into which dead objects go */ member
|
D | daemon.c | 817 cachefiles_put_directory(cache->graveyard); in cachefiles_daemon_unbind()
|
/linux-6.12.1/security/keys/ |
D | gc.c | 180 static LIST_HEAD(graveyard); in key_garbage_collector() 288 !list_empty(&graveyard)) { in key_garbage_collector() 298 if (!list_empty(&graveyard)) { in key_garbage_collector() 300 key_gc_unused_keys(&graveyard); in key_garbage_collector() 337 list_add_tail(&key->graveyard_link, &graveyard); in key_garbage_collector()
|
/linux-6.12.1/fs/afs/ |
D | write.c | 272 LIST_HEAD(graveyard); in afs_prune_wb_keys() 282 list_move(&wbk->vnode_link, &graveyard); in afs_prune_wb_keys() 288 while (!list_empty(&graveyard)) { in afs_prune_wb_keys() 289 wbk = list_entry(graveyard.next, struct afs_wb_key, vnode_link); in afs_prune_wb_keys()
|
/linux-6.12.1/net/rxrpc/ |
D | conn_object.c | 388 LIST_HEAD(graveyard); in rxrpc_service_connection_reaper() 433 list_move_tail(&conn->link, &graveyard); in rxrpc_service_connection_reaper() 443 while (!list_empty(&graveyard)) { in rxrpc_service_connection_reaper() 444 conn = list_entry(graveyard.next, struct rxrpc_connection, in rxrpc_service_connection_reaper()
|
/linux-6.12.1/fs/ |
D | namespace.c | 3605 LIST_HEAD(graveyard); in mark_mounts_for_expiry() 3623 list_move(&mnt->mnt_expire, &graveyard); in mark_mounts_for_expiry() 3625 while (!list_empty(&graveyard)) { in mark_mounts_for_expiry() 3626 mnt = list_first_entry(&graveyard, struct mount, mnt_expire); in mark_mounts_for_expiry() 3642 static int select_submounts(struct mount *parent, struct list_head *graveyard) in select_submounts() argument 3667 list_move_tail(&mnt->mnt_expire, graveyard); in select_submounts() 3690 LIST_HEAD(graveyard); in shrink_submounts() 3694 while (select_submounts(mnt, &graveyard)) { in shrink_submounts() 3695 while (!list_empty(&graveyard)) { in shrink_submounts() 3696 m = list_first_entry(&graveyard, struct mount, in shrink_submounts()
|
/linux-6.12.1/Documentation/filesystems/caching/ |
D | cachefiles.rst | 218 * graveyard/ 222 to the graveyard from which the daemon will actually delete them. 224 The daemon uses dnotify to monitor the graveyard directory, and will delete
|