Searched refs:graveyard (Results 1 – 7 of 7) sorted by relevance
/linux-3.4.99/fs/cachefiles/ |
D | bind.c | 89 struct dentry *graveyard, *cachedir, *root; in cachefiles_daemon_add_cache() local 208 graveyard = cachefiles_get_directory(cache, root, "graveyard"); in cachefiles_daemon_add_cache() 209 if (IS_ERR(graveyard)) { in cachefiles_daemon_add_cache() 210 ret = PTR_ERR(graveyard); in cachefiles_daemon_add_cache() 214 cache->graveyard = graveyard; in cachefiles_daemon_add_cache() 242 dput(cache->graveyard); in cachefiles_daemon_add_cache() 243 cache->graveyard = NULL; in cachefiles_daemon_add_cache() 273 dput(cache->graveyard); in cachefiles_daemon_unbind()
|
D | namei.c | 324 trap = lock_rename(cache->graveyard, dir); in cachefiles_bury_object() 330 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 335 if (!S_ISDIR(cache->graveyard->d_inode->i_mode)) { in cachefiles_bury_object() 336 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 342 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 348 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 353 grave = lookup_one_len(nbuffer, cache->graveyard, strlen(nbuffer)); in cachefiles_bury_object() 355 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 368 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() 376 unlock_rename(cache->graveyard, dir); in cachefiles_bury_object() [all …]
|
D | internal.h | 53 struct dentry *graveyard; /* directory into which dead objects go */ member
|
/linux-3.4.99/net/rxrpc/ |
D | ar-transport.c | 221 LIST_HEAD(graveyard); in rxrpc_transport_reaper() 240 list_move_tail(&trans->link, &graveyard); in rxrpc_transport_reaper() 254 while (!list_empty(&graveyard)) { in rxrpc_transport_reaper() 255 trans = list_entry(graveyard.next, struct rxrpc_transport, in rxrpc_transport_reaper()
|
D | ar-connection.c | 845 LIST_HEAD(graveyard); in rxrpc_connection_reaper() 868 list_move_tail(&conn->link, &graveyard); in rxrpc_connection_reaper() 897 while (!list_empty(&graveyard)) { in rxrpc_connection_reaper() 898 conn = list_entry(graveyard.next, struct rxrpc_connection, in rxrpc_connection_reaper()
|
/linux-3.4.99/fs/ |
D | namespace.c | 1932 LIST_HEAD(graveyard); in mark_mounts_for_expiry() 1951 list_move(&mnt->mnt_expire, &graveyard); in mark_mounts_for_expiry() 1953 while (!list_empty(&graveyard)) { in mark_mounts_for_expiry() 1954 mnt = list_first_entry(&graveyard, struct mount, mnt_expire); in mark_mounts_for_expiry() 1972 static int select_submounts(struct mount *parent, struct list_head *graveyard) in select_submounts() argument 1997 list_move_tail(&mnt->mnt_expire, graveyard); in select_submounts() 2020 LIST_HEAD(graveyard); in shrink_submounts() 2024 while (select_submounts(mnt, &graveyard)) { in shrink_submounts() 2025 while (!list_empty(&graveyard)) { in shrink_submounts() 2026 m = list_first_entry(&graveyard, struct mount, in shrink_submounts()
|
/linux-3.4.99/Documentation/filesystems/caching/ |
D | cachefiles.txt | 238 (*) graveyard/ 242 to the graveyard from which the daemon will actually delete them. 244 The daemon uses dnotify to monitor the graveyard directory, and will delete
|