Lines Matching defs:root
285 static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
3770 * When mounting SMB root file systems, we do not want to block in
4194 * cifs_build_path_to_root returns full path to root when we do not have an
4552 cifs_server_dbg(VFS, "cannot query dirs between root and final path, enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
4691 /* Get path of DFS root */
4728 /* Make sure that requests go through new root servers */
4749 * For DFS root mounts, the prefix path (cifs_sb->prepath) is preserved during reconnect so
4750 * only the root path is set in cifs_sb->origin_fullpath and tcon->dfs_path. And for DFS
5001 struct rb_root *root = &cifs_sb->tlink_tree;
5008 while ((node = rb_first(root))) {
5012 rb_erase(node, root);
5174 tlink_rb_search(struct rb_root *root, kuid_t uid)
5176 struct rb_node *node = root->rb_node;
5194 tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
5196 struct rb_node **new = &(root->rb_node), *parent = NULL;
5210 rb_insert_color(&new_tlink->tl_rbnode, root);
5311 struct rb_root *root = &cifs_sb->tlink_tree;
5324 node = rb_first(root);
5337 rb_erase(tmp, root);