Home
last modified time | relevance | path

Searched refs:actFreeEntry (Results 1 – 5 of 5) sorted by relevance

/kernel/liteos_a/fs/vfs/
Dvnode.c48 #define ENTRY_TO_VNODE(ptr) LOS_DL_LIST_ENTRY(ptr, struct Vnode, actFreeEntry)
96 LOS_ListDelete(&vnode->actFreeEntry); in GetFromFreeList()
107 … LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &g_vnodeActiveList, struct Vnode, actFreeEntry) { in VnodeReclaimLru()
159 LOS_ListInit((&(vnode->actFreeEntry))); in VnodeAlloc()
162 LOS_ListAdd(&g_vnodeVirtualList, &(vnode->actFreeEntry)); in VnodeAlloc()
165 LOS_ListTailInsert(&g_vnodeActiveList, &(vnode->actFreeEntry)); in VnodeAlloc()
194 LOS_ListDelete(&vnode->actFreeEntry); in VnodeFree()
211 LOS_ListAdd(&g_vnodeFreeList, &vnode->actFreeEntry); in VnodeFree()
225 …LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(vnode, nextVnode, &g_vnodeActiveList, struct Vnode, actFreeEntry) { in VnodeFreeAll()
241 LOS_DL_LIST_FOR_EACH_ENTRY(vnode, &g_vnodeActiveList, struct Vnode, actFreeEntry) { in VnodeInUseIter()
[all …]
/kernel/liteos_a/fs/proc/os_adapt/
Dfs_cache_proc.c73 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, list, struct Vnode, actFreeEntry) { in VnodeListProcess()
128 LOS_DL_LIST_FOR_EACH_ENTRY(vnode, vnodeList, struct Vnode, actFreeEntry) { in PageCacheMapProcess()
/kernel/liteos_a/fs/vfs/operation/
Dvfs_force_umount.c429 LOS_ListDelete(&vnode->actFreeEntry); in VnodeTryFree()
443 …S_DL_LIST_FOR_EACH_ENTRY_SAFE(vnode, nextVnode, GetVnodeActiveList(), struct Vnode, actFreeEntry) { in VnodeTryFreeAll()
/kernel/liteos_a/fs/vfs/include/
Dvnode.h128 LIST_ENTRY actFreeEntry; /* vnode active/free list entry */ member
/kernel/liteos_a/fs/proc/src/
Dproc_file.c388 …LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, GetVnodeActiveList(), struct Vnode, actFreeEntry) { in ProcEntryClearVnode()