super.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. /*
  2. * linux/fs/hfsplus/super.c
  3. *
  4. * Copyright (C) 2001
  5. * Brad Boyer (flar@allandria.com)
  6. * (C) 2003 Ardis Technologies <roman@ardistech.com>
  7. *
  8. */
  9. #include <linux/config.h>
  10. #include <linux/module.h>
  11. #include <linux/init.h>
  12. #include <linux/pagemap.h>
  13. #include <linux/fs.h>
  14. #include <linux/sched.h>
  15. #include <linux/slab.h>
  16. #include <linux/vfs.h>
  17. #include <linux/nls.h>
  18. static struct inode *hfsplus_alloc_inode(struct super_block *sb);
  19. static void hfsplus_destroy_inode(struct inode *inode);
  20. #include "hfsplus_fs.h"
  21. static void hfsplus_read_inode(struct inode *inode)
  22. {
  23. struct hfs_find_data fd;
  24. struct hfsplus_vh *vhdr;
  25. int err;
  26. INIT_LIST_HEAD(&HFSPLUS_I(inode).open_dir_list);
  27. init_MUTEX(&HFSPLUS_I(inode).extents_lock);
  28. HFSPLUS_I(inode).flags = 0;
  29. HFSPLUS_I(inode).rsrc_inode = NULL;
  30. atomic_set(&HFSPLUS_I(inode).opencnt, 0);
  31. if (inode->i_ino >= HFSPLUS_FIRSTUSER_CNID) {
  32. read_inode:
  33. hfs_find_init(HFSPLUS_SB(inode->i_sb).cat_tree, &fd);
  34. err = hfsplus_find_cat(inode->i_sb, inode->i_ino, &fd);
  35. if (!err)
  36. err = hfsplus_cat_read_inode(inode, &fd);
  37. hfs_find_exit(&fd);
  38. if (err)
  39. goto bad_inode;
  40. return;
  41. }
  42. vhdr = HFSPLUS_SB(inode->i_sb).s_vhdr;
  43. switch(inode->i_ino) {
  44. case HFSPLUS_ROOT_CNID:
  45. goto read_inode;
  46. case HFSPLUS_EXT_CNID:
  47. hfsplus_inode_read_fork(inode, &vhdr->ext_file);
  48. inode->i_mapping->a_ops = &hfsplus_btree_aops;
  49. break;
  50. case HFSPLUS_CAT_CNID:
  51. hfsplus_inode_read_fork(inode, &vhdr->cat_file);
  52. inode->i_mapping->a_ops = &hfsplus_btree_aops;
  53. break;
  54. case HFSPLUS_ALLOC_CNID:
  55. hfsplus_inode_read_fork(inode, &vhdr->alloc_file);
  56. inode->i_mapping->a_ops = &hfsplus_aops;
  57. break;
  58. case HFSPLUS_START_CNID:
  59. hfsplus_inode_read_fork(inode, &vhdr->start_file);
  60. break;
  61. case HFSPLUS_ATTR_CNID:
  62. hfsplus_inode_read_fork(inode, &vhdr->attr_file);
  63. inode->i_mapping->a_ops = &hfsplus_btree_aops;
  64. break;
  65. default:
  66. goto bad_inode;
  67. }
  68. return;
  69. bad_inode:
  70. make_bad_inode(inode);
  71. }
  72. static int hfsplus_write_inode(struct inode *inode, int unused)
  73. {
  74. struct hfsplus_vh *vhdr;
  75. int ret = 0;
  76. dprint(DBG_INODE, "hfsplus_write_inode: %lu\n", inode->i_ino);
  77. hfsplus_ext_write_extent(inode);
  78. if (inode->i_ino >= HFSPLUS_FIRSTUSER_CNID) {
  79. return hfsplus_cat_write_inode(inode);
  80. }
  81. vhdr = HFSPLUS_SB(inode->i_sb).s_vhdr;
  82. switch (inode->i_ino) {
  83. case HFSPLUS_ROOT_CNID:
  84. ret = hfsplus_cat_write_inode(inode);
  85. break;
  86. case HFSPLUS_EXT_CNID:
  87. if (vhdr->ext_file.total_size != cpu_to_be64(inode->i_size)) {
  88. HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
  89. inode->i_sb->s_dirt = 1;
  90. }
  91. hfsplus_inode_write_fork(inode, &vhdr->ext_file);
  92. hfs_btree_write(HFSPLUS_SB(inode->i_sb).ext_tree);
  93. break;
  94. case HFSPLUS_CAT_CNID:
  95. if (vhdr->cat_file.total_size != cpu_to_be64(inode->i_size)) {
  96. HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
  97. inode->i_sb->s_dirt = 1;
  98. }
  99. hfsplus_inode_write_fork(inode, &vhdr->cat_file);
  100. hfs_btree_write(HFSPLUS_SB(inode->i_sb).cat_tree);
  101. break;
  102. case HFSPLUS_ALLOC_CNID:
  103. if (vhdr->alloc_file.total_size != cpu_to_be64(inode->i_size)) {
  104. HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
  105. inode->i_sb->s_dirt = 1;
  106. }
  107. hfsplus_inode_write_fork(inode, &vhdr->alloc_file);
  108. break;
  109. case HFSPLUS_START_CNID:
  110. if (vhdr->start_file.total_size != cpu_to_be64(inode->i_size)) {
  111. HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
  112. inode->i_sb->s_dirt = 1;
  113. }
  114. hfsplus_inode_write_fork(inode, &vhdr->start_file);
  115. break;
  116. case HFSPLUS_ATTR_CNID:
  117. if (vhdr->attr_file.total_size != cpu_to_be64(inode->i_size)) {
  118. HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
  119. inode->i_sb->s_dirt = 1;
  120. }
  121. hfsplus_inode_write_fork(inode, &vhdr->attr_file);
  122. hfs_btree_write(HFSPLUS_SB(inode->i_sb).attr_tree);
  123. break;
  124. }
  125. return ret;
  126. }
  127. static void hfsplus_clear_inode(struct inode *inode)
  128. {
  129. dprint(DBG_INODE, "hfsplus_clear_inode: %lu\n", inode->i_ino);
  130. if (HFSPLUS_IS_RSRC(inode)) {
  131. HFSPLUS_I(HFSPLUS_I(inode).rsrc_inode).rsrc_inode = NULL;
  132. iput(HFSPLUS_I(inode).rsrc_inode);
  133. }
  134. }
  135. static void hfsplus_write_super(struct super_block *sb)
  136. {
  137. struct hfsplus_vh *vhdr = HFSPLUS_SB(sb).s_vhdr;
  138. dprint(DBG_SUPER, "hfsplus_write_super\n");
  139. sb->s_dirt = 0;
  140. if (sb->s_flags & MS_RDONLY)
  141. /* warn? */
  142. return;
  143. vhdr->free_blocks = cpu_to_be32(HFSPLUS_SB(sb).free_blocks);
  144. vhdr->next_alloc = cpu_to_be32(HFSPLUS_SB(sb).next_alloc);
  145. vhdr->next_cnid = cpu_to_be32(HFSPLUS_SB(sb).next_cnid);
  146. vhdr->folder_count = cpu_to_be32(HFSPLUS_SB(sb).folder_count);
  147. vhdr->file_count = cpu_to_be32(HFSPLUS_SB(sb).file_count);
  148. mark_buffer_dirty(HFSPLUS_SB(sb).s_vhbh);
  149. if (HFSPLUS_SB(sb).flags & HFSPLUS_SB_WRITEBACKUP) {
  150. if (HFSPLUS_SB(sb).sect_count) {
  151. struct buffer_head *bh;
  152. u32 block, offset;
  153. block = HFSPLUS_SB(sb).blockoffset;
  154. block += (HFSPLUS_SB(sb).sect_count - 2) >> (sb->s_blocksize_bits - 9);
  155. offset = ((HFSPLUS_SB(sb).sect_count - 2) << 9) & (sb->s_blocksize - 1);
  156. printk("backup: %u,%u,%u,%u\n", HFSPLUS_SB(sb).blockoffset,
  157. HFSPLUS_SB(sb).sect_count, block, offset);
  158. bh = sb_bread(sb, block);
  159. if (bh) {
  160. vhdr = (struct hfsplus_vh *)(bh->b_data + offset);
  161. if (be16_to_cpu(vhdr->signature) == HFSPLUS_VOLHEAD_SIG) {
  162. memcpy(vhdr, HFSPLUS_SB(sb).s_vhdr, sizeof(*vhdr));
  163. mark_buffer_dirty(bh);
  164. brelse(bh);
  165. } else
  166. printk("backup not found!\n");
  167. }
  168. }
  169. HFSPLUS_SB(sb).flags &= ~HFSPLUS_SB_WRITEBACKUP;
  170. }
  171. }
  172. static void hfsplus_put_super(struct super_block *sb)
  173. {
  174. dprint(DBG_SUPER, "hfsplus_put_super\n");
  175. if (!sb->s_fs_info)
  176. return;
  177. if (!(sb->s_flags & MS_RDONLY) && HFSPLUS_SB(sb).s_vhdr) {
  178. struct hfsplus_vh *vhdr = HFSPLUS_SB(sb).s_vhdr;
  179. vhdr->modify_date = hfsp_now2mt();
  180. vhdr->attributes |= cpu_to_be32(HFSPLUS_VOL_UNMNT);
  181. vhdr->attributes &= cpu_to_be32(~HFSPLUS_VOL_INCNSTNT);
  182. mark_buffer_dirty(HFSPLUS_SB(sb).s_vhbh);
  183. sync_dirty_buffer(HFSPLUS_SB(sb).s_vhbh);
  184. }
  185. hfs_btree_close(HFSPLUS_SB(sb).cat_tree);
  186. hfs_btree_close(HFSPLUS_SB(sb).ext_tree);
  187. iput(HFSPLUS_SB(sb).alloc_file);
  188. iput(HFSPLUS_SB(sb).hidden_dir);
  189. brelse(HFSPLUS_SB(sb).s_vhbh);
  190. if (HFSPLUS_SB(sb).nls)
  191. unload_nls(HFSPLUS_SB(sb).nls);
  192. kfree(sb->s_fs_info);
  193. sb->s_fs_info = NULL;
  194. }
  195. static int hfsplus_statfs(struct super_block *sb, struct kstatfs *buf)
  196. {
  197. buf->f_type = HFSPLUS_SUPER_MAGIC;
  198. buf->f_bsize = sb->s_blocksize;
  199. buf->f_blocks = HFSPLUS_SB(sb).total_blocks << HFSPLUS_SB(sb).fs_shift;
  200. buf->f_bfree = HFSPLUS_SB(sb).free_blocks << HFSPLUS_SB(sb).fs_shift;
  201. buf->f_bavail = buf->f_bfree;
  202. buf->f_files = 0xFFFFFFFF;
  203. buf->f_ffree = 0xFFFFFFFF - HFSPLUS_SB(sb).next_cnid;
  204. buf->f_namelen = HFSPLUS_MAX_STRLEN;
  205. return 0;
  206. }
  207. static int hfsplus_remount(struct super_block *sb, int *flags, char *data)
  208. {
  209. if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
  210. return 0;
  211. if (!(*flags & MS_RDONLY)) {
  212. struct hfsplus_vh *vhdr = HFSPLUS_SB(sb).s_vhdr;
  213. struct hfsplus_sb_info sbi;
  214. memset(&sbi, 0, sizeof(struct hfsplus_sb_info));
  215. sbi.nls = HFSPLUS_SB(sb).nls;
  216. if (!hfsplus_parse_options(data, &sbi))
  217. return -EINVAL;
  218. if (!(vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_UNMNT))) {
  219. printk("HFS+-fs warning: Filesystem was not cleanly unmounted, "
  220. "running fsck.hfsplus is recommended. leaving read-only.\n");
  221. sb->s_flags |= MS_RDONLY;
  222. *flags |= MS_RDONLY;
  223. } else if (sbi.flags & HFSPLUS_SB_FORCE) {
  224. /* nothing */
  225. } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_SOFTLOCK)) {
  226. printk("HFS+-fs: Filesystem is marked locked, leaving read-only.\n");
  227. sb->s_flags |= MS_RDONLY;
  228. *flags |= MS_RDONLY;
  229. } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_JOURNALED)) {
  230. printk("HFS+-fs: Filesystem is marked journaled, leaving read-only.\n");
  231. sb->s_flags |= MS_RDONLY;
  232. *flags |= MS_RDONLY;
  233. }
  234. }
  235. return 0;
  236. }
  237. static struct super_operations hfsplus_sops = {
  238. .alloc_inode = hfsplus_alloc_inode,
  239. .destroy_inode = hfsplus_destroy_inode,
  240. .read_inode = hfsplus_read_inode,
  241. .write_inode = hfsplus_write_inode,
  242. .clear_inode = hfsplus_clear_inode,
  243. .put_super = hfsplus_put_super,
  244. .write_super = hfsplus_write_super,
  245. .statfs = hfsplus_statfs,
  246. .remount_fs = hfsplus_remount,
  247. .show_options = hfsplus_show_options,
  248. };
  249. static int hfsplus_fill_super(struct super_block *sb, void *data, int silent)
  250. {
  251. struct hfsplus_vh *vhdr;
  252. struct hfsplus_sb_info *sbi;
  253. hfsplus_cat_entry entry;
  254. struct hfs_find_data fd;
  255. struct inode *root;
  256. struct qstr str;
  257. struct nls_table *nls = NULL;
  258. int err = -EINVAL;
  259. sbi = kmalloc(sizeof(struct hfsplus_sb_info), GFP_KERNEL);
  260. if (!sbi)
  261. return -ENOMEM;
  262. memset(sbi, 0, sizeof(HFSPLUS_SB(sb)));
  263. sb->s_fs_info = sbi;
  264. INIT_HLIST_HEAD(&sbi->rsrc_inodes);
  265. hfsplus_fill_defaults(sbi);
  266. if (!hfsplus_parse_options(data, sbi)) {
  267. if (!silent)
  268. printk("HFS+-fs: unable to parse mount options\n");
  269. err = -EINVAL;
  270. goto cleanup;
  271. }
  272. /* temporarily use utf8 to correctly find the hidden dir below */
  273. nls = sbi->nls;
  274. sbi->nls = load_nls("utf8");
  275. if (!sbi->nls) {
  276. printk("HFS+: unable to load nls for utf8\n");
  277. err = -EINVAL;
  278. goto cleanup;
  279. }
  280. /* Grab the volume header */
  281. if (hfsplus_read_wrapper(sb)) {
  282. if (!silent)
  283. printk("HFS+-fs: unable to find HFS+ superblock\n");
  284. err = -EINVAL;
  285. goto cleanup;
  286. }
  287. vhdr = HFSPLUS_SB(sb).s_vhdr;
  288. /* Copy parts of the volume header into the superblock */
  289. sb->s_magic = be16_to_cpu(vhdr->signature);
  290. if (be16_to_cpu(vhdr->version) != HFSPLUS_CURRENT_VERSION) {
  291. if (!silent)
  292. printk("HFS+-fs: wrong filesystem version\n");
  293. goto cleanup;
  294. }
  295. HFSPLUS_SB(sb).total_blocks = be32_to_cpu(vhdr->total_blocks);
  296. HFSPLUS_SB(sb).free_blocks = be32_to_cpu(vhdr->free_blocks);
  297. HFSPLUS_SB(sb).next_alloc = be32_to_cpu(vhdr->next_alloc);
  298. HFSPLUS_SB(sb).next_cnid = be32_to_cpu(vhdr->next_cnid);
  299. HFSPLUS_SB(sb).file_count = be32_to_cpu(vhdr->file_count);
  300. HFSPLUS_SB(sb).folder_count = be32_to_cpu(vhdr->folder_count);
  301. HFSPLUS_SB(sb).data_clump_blocks = be32_to_cpu(vhdr->data_clump_sz) >> HFSPLUS_SB(sb).alloc_blksz_shift;
  302. if (!HFSPLUS_SB(sb).data_clump_blocks)
  303. HFSPLUS_SB(sb).data_clump_blocks = 1;
  304. HFSPLUS_SB(sb).rsrc_clump_blocks = be32_to_cpu(vhdr->rsrc_clump_sz) >> HFSPLUS_SB(sb).alloc_blksz_shift;
  305. if (!HFSPLUS_SB(sb).rsrc_clump_blocks)
  306. HFSPLUS_SB(sb).rsrc_clump_blocks = 1;
  307. /* Set up operations so we can load metadata */
  308. sb->s_op = &hfsplus_sops;
  309. sb->s_maxbytes = MAX_LFS_FILESIZE;
  310. if (!(vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_UNMNT))) {
  311. if (!silent)
  312. printk("HFS+-fs warning: Filesystem was not cleanly unmounted, "
  313. "running fsck.hfsplus is recommended. mounting read-only.\n");
  314. sb->s_flags |= MS_RDONLY;
  315. } else if (sbi->flags & HFSPLUS_SB_FORCE) {
  316. /* nothing */
  317. } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_SOFTLOCK)) {
  318. if (!silent)
  319. printk("HFS+-fs: Filesystem is marked locked, mounting read-only.\n");
  320. sb->s_flags |= MS_RDONLY;
  321. } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_JOURNALED)) {
  322. if (!silent)
  323. printk("HFS+-fs: write access to a jounaled filesystem is not supported, "
  324. "use the force option at your own risk, mounting read-only.\n");
  325. sb->s_flags |= MS_RDONLY;
  326. }
  327. sbi->flags &= ~HFSPLUS_SB_FORCE;
  328. /* Load metadata objects (B*Trees) */
  329. HFSPLUS_SB(sb).ext_tree = hfs_btree_open(sb, HFSPLUS_EXT_CNID);
  330. if (!HFSPLUS_SB(sb).ext_tree) {
  331. if (!silent)
  332. printk("HFS+-fs: failed to load extents file\n");
  333. goto cleanup;
  334. }
  335. HFSPLUS_SB(sb).cat_tree = hfs_btree_open(sb, HFSPLUS_CAT_CNID);
  336. if (!HFSPLUS_SB(sb).cat_tree) {
  337. if (!silent)
  338. printk("HFS+-fs: failed to load catalog file\n");
  339. goto cleanup;
  340. }
  341. HFSPLUS_SB(sb).alloc_file = iget(sb, HFSPLUS_ALLOC_CNID);
  342. if (!HFSPLUS_SB(sb).alloc_file) {
  343. if (!silent)
  344. printk("HFS+-fs: failed to load allocation file\n");
  345. goto cleanup;
  346. }
  347. /* Load the root directory */
  348. root = iget(sb, HFSPLUS_ROOT_CNID);
  349. sb->s_root = d_alloc_root(root);
  350. if (!sb->s_root) {
  351. if (!silent)
  352. printk("HFS+-fs: failed to load root directory\n");
  353. iput(root);
  354. goto cleanup;
  355. }
  356. str.len = sizeof(HFSP_HIDDENDIR_NAME) - 1;
  357. str.name = HFSP_HIDDENDIR_NAME;
  358. hfs_find_init(HFSPLUS_SB(sb).cat_tree, &fd);
  359. hfsplus_cat_build_key(sb, fd.search_key, HFSPLUS_ROOT_CNID, &str);
  360. if (!hfs_brec_read(&fd, &entry, sizeof(entry))) {
  361. hfs_find_exit(&fd);
  362. if (entry.type != cpu_to_be16(HFSPLUS_FOLDER))
  363. goto cleanup;
  364. HFSPLUS_SB(sb).hidden_dir = iget(sb, be32_to_cpu(entry.folder.id));
  365. if (!HFSPLUS_SB(sb).hidden_dir)
  366. goto cleanup;
  367. } else
  368. hfs_find_exit(&fd);
  369. if (sb->s_flags & MS_RDONLY)
  370. goto out;
  371. /* H+LX == hfsplusutils, H+Lx == this driver, H+lx is unused
  372. * all three are registered with Apple for our use
  373. */
  374. vhdr->last_mount_vers = cpu_to_be32(HFSP_MOUNT_VERSION);
  375. vhdr->modify_date = hfsp_now2mt();
  376. vhdr->write_count = cpu_to_be32(be32_to_cpu(vhdr->write_count) + 1);
  377. vhdr->attributes &= cpu_to_be32(~HFSPLUS_VOL_UNMNT);
  378. vhdr->attributes |= cpu_to_be32(HFSPLUS_VOL_INCNSTNT);
  379. mark_buffer_dirty(HFSPLUS_SB(sb).s_vhbh);
  380. sync_dirty_buffer(HFSPLUS_SB(sb).s_vhbh);
  381. if (!HFSPLUS_SB(sb).hidden_dir) {
  382. printk("HFS+: create hidden dir...\n");
  383. HFSPLUS_SB(sb).hidden_dir = hfsplus_new_inode(sb, S_IFDIR);
  384. hfsplus_create_cat(HFSPLUS_SB(sb).hidden_dir->i_ino, sb->s_root->d_inode,
  385. &str, HFSPLUS_SB(sb).hidden_dir);
  386. mark_inode_dirty(HFSPLUS_SB(sb).hidden_dir);
  387. }
  388. out:
  389. unload_nls(sbi->nls);
  390. sbi->nls = nls;
  391. return 0;
  392. cleanup:
  393. hfsplus_put_super(sb);
  394. if (nls)
  395. unload_nls(nls);
  396. return err;
  397. }
  398. MODULE_AUTHOR("Brad Boyer");
  399. MODULE_DESCRIPTION("Extended Macintosh Filesystem");
  400. MODULE_LICENSE("GPL");
  401. static kmem_cache_t *hfsplus_inode_cachep;
  402. static struct inode *hfsplus_alloc_inode(struct super_block *sb)
  403. {
  404. struct hfsplus_inode_info *i;
  405. i = kmem_cache_alloc(hfsplus_inode_cachep, SLAB_KERNEL);
  406. return i ? &i->vfs_inode : NULL;
  407. }
  408. static void hfsplus_destroy_inode(struct inode *inode)
  409. {
  410. kmem_cache_free(hfsplus_inode_cachep, &HFSPLUS_I(inode));
  411. }
  412. #define HFSPLUS_INODE_SIZE sizeof(struct hfsplus_inode_info)
  413. static struct super_block *hfsplus_get_sb(struct file_system_type *fs_type,
  414. int flags, const char *dev_name, void *data)
  415. {
  416. return get_sb_bdev(fs_type, flags, dev_name, data, hfsplus_fill_super);
  417. }
  418. static struct file_system_type hfsplus_fs_type = {
  419. .owner = THIS_MODULE,
  420. .name = "hfsplus",
  421. .get_sb = hfsplus_get_sb,
  422. .kill_sb = kill_block_super,
  423. .fs_flags = FS_REQUIRES_DEV,
  424. };
  425. static void hfsplus_init_once(void *p, kmem_cache_t *cachep, unsigned long flags)
  426. {
  427. struct hfsplus_inode_info *i = p;
  428. if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) == SLAB_CTOR_CONSTRUCTOR)
  429. inode_init_once(&i->vfs_inode);
  430. }
  431. static int __init init_hfsplus_fs(void)
  432. {
  433. int err;
  434. hfsplus_inode_cachep = kmem_cache_create("hfsplus_icache",
  435. HFSPLUS_INODE_SIZE, 0, SLAB_HWCACHE_ALIGN,
  436. hfsplus_init_once, NULL);
  437. if (!hfsplus_inode_cachep)
  438. return -ENOMEM;
  439. err = register_filesystem(&hfsplus_fs_type);
  440. if (err)
  441. kmem_cache_destroy(hfsplus_inode_cachep);
  442. return err;
  443. }
  444. static void __exit exit_hfsplus_fs(void)
  445. {
  446. unregister_filesystem(&hfsplus_fs_type);
  447. if (kmem_cache_destroy(hfsplus_inode_cachep))
  448. printk(KERN_INFO "hfsplus_inode_cache: not all structures were freed\n");
  449. }
  450. module_init(init_hfsplus_fs)
  451. module_exit(exit_hfsplus_fs)