Searched refs:graveyard (Results 1 – 9 of 9) sorted by relevance
| /OK3568_Linux_fs/kernel/fs/cachefiles/ |
| H A D | bind.c | 86 struct dentry *graveyard, *cachedir, *root; in cachefiles_daemon_add_cache() local 203 graveyard = cachefiles_get_directory(cache, root, "graveyard"); in cachefiles_daemon_add_cache() 204 if (IS_ERR(graveyard)) { in cachefiles_daemon_add_cache() 205 ret = PTR_ERR(graveyard); in cachefiles_daemon_add_cache() 209 cache->graveyard = graveyard; in cachefiles_daemon_add_cache() 236 dput(cache->graveyard); in cachefiles_daemon_add_cache() 237 cache->graveyard = NULL; in cachefiles_daemon_add_cache() 266 dput(cache->graveyard); in cachefiles_daemon_unbind()
|
| H A D | namei.c | 340 trap = lock_rename(cache->graveyard, dir); in cachefiles_bury_object() 346 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 351 if (!d_can_lookup(cache->graveyard)) { in cachefiles_bury_object() 352 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 358 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 364 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 369 grave = lookup_one_len(nbuffer, cache->graveyard, strlen(nbuffer)); in cachefiles_bury_object() 371 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 384 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 392 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() [all …]
|
| H A D | internal.h | 58 struct dentry *graveyard; /* directory into which dead objects go */ member
|
| /OK3568_Linux_fs/kernel/security/keys/ |
| H A D | gc.c | 175 static LIST_HEAD(graveyard); in key_garbage_collector() 285 !list_empty(&graveyard)) { in key_garbage_collector() 295 if (!list_empty(&graveyard)) { in key_garbage_collector() 297 key_gc_unused_keys(&graveyard); in key_garbage_collector() 334 list_add_tail(&key->graveyard_link, &graveyard); in key_garbage_collector()
|
| /OK3568_Linux_fs/kernel/net/rxrpc/ |
| H A D | conn_object.c | 389 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()
|
| H A D | conn_client.c | 1112 LIST_HEAD(graveyard); in rxrpc_clean_up_local_conns() 1122 list_move(&conn->cache_link, &graveyard); in rxrpc_clean_up_local_conns() 1128 while (!list_empty(&graveyard)) { in rxrpc_clean_up_local_conns() 1129 conn = list_entry(graveyard.next, in rxrpc_clean_up_local_conns()
|
| /OK3568_Linux_fs/kernel/fs/afs/ |
| H A D | write.c | 887 LIST_HEAD(graveyard); in afs_prune_wb_keys() 897 list_move(&wbk->vnode_link, &graveyard); in afs_prune_wb_keys() 903 while (!list_empty(&graveyard)) { in afs_prune_wb_keys() 904 wbk = list_entry(graveyard.next, struct afs_wb_key, vnode_link); in afs_prune_wb_keys()
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | namespace.c | 3000 LIST_HEAD(graveyard); in mark_mounts_for_expiry() 3018 list_move(&mnt->mnt_expire, &graveyard); in mark_mounts_for_expiry() 3020 while (!list_empty(&graveyard)) { in mark_mounts_for_expiry() 3021 mnt = list_first_entry(&graveyard, struct mount, mnt_expire); in mark_mounts_for_expiry() 3037 static int select_submounts(struct mount *parent, struct list_head *graveyard) in select_submounts() argument 3062 list_move_tail(&mnt->mnt_expire, graveyard); in select_submounts() 3085 LIST_HEAD(graveyard); in shrink_submounts() 3089 while (select_submounts(mnt, &graveyard)) { in shrink_submounts() 3090 while (!list_empty(&graveyard)) { in shrink_submounts() 3091 m = list_first_entry(&graveyard, struct mount, in shrink_submounts()
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/caching/ |
| H A D | cachefiles.rst | 217 * graveyard/ 221 to the graveyard from which the daemon will actually delete them. 223 The daemon uses dnotify to monitor the graveyard directory, and will delete
|