Searched refs:graveyard (Results 1 – 9 of 9) sorted by relevance
| /linux/fs/cachefiles/ |
| H A D | namei.c | 310 trap = lock_rename(cache->graveyard, dir); in cachefiles_bury_object() 318 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 323 if (!d_can_lookup(cache->graveyard)) { in cachefiles_bury_object() 324 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 330 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 336 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 341 grave = lookup_one(&nop_mnt_idmap, &QSTR(nbuffer), cache->graveyard); in cachefiles_bury_object() 343 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 344 trace_cachefiles_vfs_error(object, d_inode(cache->graveyard), in cachefiles_bury_object() 358 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() [all …]
|
| H A 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()
|
| H A D | internal.h | 91 struct dentry *graveyard; /* directory into which dead objects go */ member
|
| H A D | daemon.c | 818 cachefiles_put_directory(cache->graveyard); in cachefiles_daemon_unbind()
|
| /linux/security/keys/ |
| H A D | gc.c | 180 static LIST_HEAD(graveyard); in key_garbage_collector() 290 !list_empty(&graveyard)) { in key_garbage_collector() 300 if (!list_empty(&graveyard)) { in key_garbage_collector() 302 key_gc_unused_keys(&graveyard); in key_garbage_collector() 339 list_add_tail(&key->graveyard_link, &graveyard); in key_garbage_collector()
|
| /linux/fs/afs/ |
| H A D | write.c | 288 LIST_HEAD(graveyard); in afs_prune_wb_keys() 298 list_move(&wbk->vnode_link, &graveyard); in afs_prune_wb_keys() 304 while (!list_empty(&graveyard)) { in afs_prune_wb_keys() 305 wbk = list_entry(graveyard.next, struct afs_wb_key, vnode_link); in afs_prune_wb_keys()
|
| /linux/net/rxrpc/ |
| H A D | conn_object.c | 395 LIST_HEAD(graveyard); in rxrpc_service_connection_reaper() 440 list_move_tail(&conn->link, &graveyard); in rxrpc_service_connection_reaper() 450 while (!list_empty(&graveyard)) { in rxrpc_service_connection_reaper() 451 conn = list_entry(graveyard.next, struct rxrpc_connection, in rxrpc_service_connection_reaper()
|
| /linux/fs/ |
| H A D | namespace.c | 3807 LIST_HEAD(graveyard); in mark_mounts_for_expiry() 3828 list_move(&mnt->mnt_expire, &graveyard); in mark_mounts_for_expiry() 3830 while (!list_empty(&graveyard)) { in mark_mounts_for_expiry() 3831 mnt = list_first_entry(&graveyard, struct mount, mnt_expire); in mark_mounts_for_expiry() 3845 static int select_submounts(struct mount *parent, struct list_head *graveyard) in select_submounts() argument 3870 list_move_tail(&mnt->mnt_expire, graveyard); in select_submounts() 3893 LIST_HEAD(graveyard); in shrink_submounts() 3897 while (select_submounts(mnt, &graveyard)) { in shrink_submounts() 3898 while (!list_empty(&graveyard)) { in shrink_submounts() 3899 m = list_first_entry(&graveyard, struct mount, in shrink_submounts()
|
| /linux/Documentation/filesystems/caching/ |
| H A 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
|