Lines Matching defs:root
3058 struct node *root;
3153 root = (struct node *) calloc(1, sizeof(struct node));
3154 if (root == NULL) {
3159 root->name = strdup("/");
3160 if (root->name == NULL) {
3169 root->parent = NULL;
3170 root->nodeid = FUSE_ROOT_ID;
3171 root->generation = 0;
3172 root->refctr = 1;
3173 root->nlookup = 1;
3174 hash_id(f, root);
3179 free(root->name);
3181 free(root);