Lines Matching refs:root
259 "ERROR: the cluster chain of root is cyclic"))
267 exfat_err("ERROR: failed to read the fat entry of root");
274 "ERROR: the cluster chain of root is broken")) {
292 exfat_err("ERROR: the start cluster of root is wrong\n");
971 retval = exfat_lookup_dentry_set(exfat, exfat->root, &filter);
1048 retval = exfat_lookup_dentry_set(exfat, exfat->root, &filter);
1172 if (dir == exfat->root)
1256 if (!exfat->root) {
1257 exfat_err("root is NULL\n");
1261 list_add(&exfat->root->list, &exfat->dir_list);
1294 struct exfat_inode *root;
1298 root = exfat_alloc_inode(ATTR_SUBDIR);
1299 if (!root)
1302 exfat->root = root;
1303 root->first_clus = le32_to_cpu(exfat->bs->bsx.root_cluster);
1304 if (root_check_clus_chain(exfat, root, &clus_count)) {
1305 exfat_err("failed to follow the cluster chain of root\n");
1306 exfat_free_inode(root);
1307 exfat->root = NULL;
1310 root->size = clus_count * exfat->clus_size;
1313 exfat_debug("root directory: start cluster[0x%x] size[0x%" PRIx64 "]\n",
1314 root->first_clus, root->size);
1333 root->dev_offset = 0;
1335 &root->dentry_set, &root->dentry_count);
1337 exfat_free_inode(root);
1349 err = exfat_lookup_file(exfat, exfat->root, "LOST+FOUND", &filter);
1611 exfat_debug("verifying root directory...\n");
1614 exfat_err("failed to verify root directory.\n");
1620 exfat_fsck.exfat->root,