Lines Matching refs:g_rootVnode
43 static struct Vnode *g_rootVnode = NULL; variable
61 retval = VnodeAlloc(NULL, &g_rootVnode); in VnodesInit()
66 g_rootVnode->mode = S_IRWXU | S_IRWXG | S_IRWXO | S_IFDIR; in VnodesInit()
67 g_rootVnode->type = VNODE_TYPE_DIR; in VnodesInit()
68 g_rootVnode->filePath = "/"; in VnodesInit()
284 *startVnode = g_rootVnode; in PreProcess()
397 *result = g_rootVnode; in VnodeLookupAt()
457 return VnodeLookupAt(fullpath, vnode, flags, g_rootVnode); in VnodeLookupFullpath()
497 struct Vnode *rootOld = g_rootVnode; in ChangeRoot()
498 g_rootVnode = rootNew; in ChangeRoot()
621 return g_rootVnode; in VnodeGetRoot()