Lines Matching refs:exfat
99 struct exfat *exfat; in main() local
106 exfat = exfat_alloc_exfat(&bd, bs); in main()
107 if (!exfat) { in main()
113 exfat->root = exfat_alloc_inode(ATTR_SUBDIR); in main()
114 if (!exfat->root) { in main()
119 exfat->root->first_clus = le32_to_cpu(exfat->bs->bsx.root_cluster); in main()
120 if (exfat_root_clus_count(exfat)) { in main()
122 exfat_free_inode(exfat->root); in main()
129 ret = exfat_read_volume_label(exfat); in main()
131 ret = exfat_set_volume_label(exfat, argv[2]); in main()
134 if (exfat) in main()
135 exfat_free_exfat(exfat); in main()