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