Home
last modified time | relevance | path

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

/kernel/liteos_a/fs/vfs/
Dvnode.c46 #define ENTRY_TO_VNODE(ptr) LOS_DL_LIST_ENTRY(ptr, struct Vnode, actFreeEntry)
87 LOS_ListDelete(&vnode->actFreeEntry); in GetFromFreeList()
98 … LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &g_vnodeActiveList, struct Vnode, actFreeEntry) { in VnodeReclaimLru()
150 LOS_ListInit((&(vnode->actFreeEntry))); in VnodeAlloc()
153 LOS_ListAdd(&g_vnodeVirtualList, &(vnode->actFreeEntry)); in VnodeAlloc()
156 LOS_ListTailInsert(&g_vnodeActiveList, &(vnode->actFreeEntry)); in VnodeAlloc()
185 LOS_ListDelete(&vnode->actFreeEntry); in VnodeFree()
202 LOS_ListAdd(&g_vnodeFreeList, &vnode->actFreeEntry); in VnodeFree()
216 …LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(vnode, nextVnode, &g_vnodeActiveList, struct Vnode, actFreeEntry) { in VnodeFreeAll()
232 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.h125 LIST_ENTRY actFreeEntry; /* vnode active/free list entry */ member