Lines Matching defs:node
301 struct exfat_inode *node = NULL;
318 node = exfat_alloc_inode(le16_to_cpu(file_de->file_attr));
319 if (!node)
326 memcpy(node->name +
331 node->first_clus = le32_to_cpu(stream_de->stream_start_clu);
332 node->is_contiguous =
334 node->size = le64_to_cpu(stream_de->stream_size);
337 *new_node = node;
341 exfat_free_inode(node);
348 struct exfat_inode *node;
353 ret = read_file_dentry_set(de_iter, &node, dentry_count);
357 if (node->attr & ATTR_SUBDIR)
361 *new_node = node;
427 struct exfat_inode *node = NULL;
454 ret = read_file(de_iter, &node, &dentry_count);
460 if (node) {
461 if ((node->attr & ATTR_SUBDIR) && node->size) {
462 node->parent = dir;
463 list_add_tail(&node->sibling,
465 list_add_tail(&node->list,
468 exfat_free_inode(node);
528 "failed to travel directories. the node is not directory\n");