super.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680
  1. /* Block- or MTD-based romfs
  2. *
  3. * Copyright © 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * Derived from: ROMFS file system, Linux implementation
  7. *
  8. * Copyright © 1997-1999 Janos Farkas <chexum@shadow.banki.hu>
  9. *
  10. * Using parts of the minix filesystem
  11. * Copyright © 1991, 1992 Linus Torvalds
  12. *
  13. * and parts of the affs filesystem additionally
  14. * Copyright © 1993 Ray Burr
  15. * Copyright © 1996 Hans-Joachim Widmaier
  16. *
  17. * Changes
  18. * Changed for 2.1.19 modules
  19. * Jan 1997 Initial release
  20. * Jun 1997 2.1.43+ changes
  21. * Proper page locking in readpage
  22. * Changed to work with 2.1.45+ fs
  23. * Jul 1997 Fixed follow_link
  24. * 2.1.47
  25. * lookup shouldn't return -ENOENT
  26. * from Horst von Brand:
  27. * fail on wrong checksum
  28. * double unlock_super was possible
  29. * correct namelen for statfs
  30. * spotted by Bill Hawes:
  31. * readlink shouldn't iput()
  32. * Jun 1998 2.1.106 from Avery Pennarun: glibc scandir()
  33. * exposed a problem in readdir
  34. * 2.1.107 code-freeze spellchecker run
  35. * Aug 1998 2.1.118+ VFS changes
  36. * Sep 1998 2.1.122 another VFS change (follow_link)
  37. * Apr 1999 2.2.7 no more EBADF checking in
  38. * lookup/readdir, use ERR_PTR
  39. * Jun 1999 2.3.6 d_alloc_root use changed
  40. * 2.3.9 clean up usage of ENOENT/negative
  41. * dentries in lookup
  42. * clean up page flags setting
  43. * (error, uptodate, locking) in
  44. * in readpage
  45. * use init_special_inode for
  46. * fifos/sockets (and streamline) in
  47. * read_inode, fix _ops table order
  48. * Aug 1999 2.3.16 __initfunc() => __init change
  49. * Oct 1999 2.3.24 page->owner hack obsoleted
  50. * Nov 1999 2.3.27 2.3.25+ page->offset => index change
  51. *
  52. *
  53. * This program is free software; you can redistribute it and/or
  54. * modify it under the terms of the GNU General Public Licence
  55. * as published by the Free Software Foundation; either version
  56. * 2 of the Licence, or (at your option) any later version.
  57. */
  58. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  59. #include <linux/module.h>
  60. #include <linux/string.h>
  61. #include <linux/fs.h>
  62. #include <linux/time.h>
  63. #include <linux/slab.h>
  64. #include <linux/init.h>
  65. #include <linux/blkdev.h>
  66. #include <linux/parser.h>
  67. #include <linux/mount.h>
  68. #include <linux/namei.h>
  69. #include <linux/statfs.h>
  70. #include <linux/mtd/super.h>
  71. #include <linux/ctype.h>
  72. #include <linux/highmem.h>
  73. #include <linux/pagemap.h>
  74. #include <linux/uaccess.h>
  75. #include <linux/major.h>
  76. #include "internal.h"
  77. static struct kmem_cache *romfs_inode_cachep;
  78. static const umode_t romfs_modemap[8] = {
  79. 0, /* hard link */
  80. S_IFDIR | 0644, /* directory */
  81. S_IFREG | 0644, /* regular file */
  82. S_IFLNK | 0777, /* symlink */
  83. S_IFBLK | 0600, /* blockdev */
  84. S_IFCHR | 0600, /* chardev */
  85. S_IFSOCK | 0644, /* socket */
  86. S_IFIFO | 0644 /* FIFO */
  87. };
  88. static const unsigned char romfs_dtype_table[] = {
  89. DT_UNKNOWN, DT_DIR, DT_REG, DT_LNK, DT_BLK, DT_CHR, DT_SOCK, DT_FIFO
  90. };
  91. static struct inode *romfs_iget(struct super_block *sb, unsigned long pos);
  92. /*
  93. * read a page worth of data from the image
  94. */
  95. static int romfs_readpage(struct file *file, struct page *page)
  96. {
  97. struct inode *inode = page->mapping->host;
  98. loff_t offset, size;
  99. unsigned long fillsize, pos;
  100. void *buf;
  101. int ret;
  102. buf = kmap(page);
  103. if (!buf)
  104. return -ENOMEM;
  105. /* 32 bit warning -- but not for us :) */
  106. offset = page_offset(page);
  107. size = i_size_read(inode);
  108. fillsize = 0;
  109. ret = 0;
  110. if (offset < size) {
  111. size -= offset;
  112. fillsize = size > PAGE_SIZE ? PAGE_SIZE : size;
  113. pos = ROMFS_I(inode)->i_dataoffset + offset;
  114. ret = romfs_dev_read(inode->i_sb, pos, buf, fillsize);
  115. if (ret < 0) {
  116. SetPageError(page);
  117. fillsize = 0;
  118. ret = -EIO;
  119. }
  120. }
  121. if (fillsize < PAGE_SIZE)
  122. memset(buf + fillsize, 0, PAGE_SIZE - fillsize);
  123. if (ret == 0)
  124. SetPageUptodate(page);
  125. flush_dcache_page(page);
  126. kunmap(page);
  127. unlock_page(page);
  128. return ret;
  129. }
  130. static const struct address_space_operations romfs_aops = {
  131. .readpage = romfs_readpage
  132. };
  133. /*
  134. * read the entries from a directory
  135. */
  136. static int romfs_readdir(struct file *file, struct dir_context *ctx)
  137. {
  138. struct inode *i = file_inode(file);
  139. struct romfs_inode ri;
  140. unsigned long offset, maxoff;
  141. int j, ino, nextfh;
  142. char fsname[ROMFS_MAXFN]; /* XXX dynamic? */
  143. int ret;
  144. maxoff = romfs_maxsize(i->i_sb);
  145. offset = ctx->pos;
  146. if (!offset) {
  147. offset = i->i_ino & ROMFH_MASK;
  148. ret = romfs_dev_read(i->i_sb, offset, &ri, ROMFH_SIZE);
  149. if (ret < 0)
  150. goto out;
  151. offset = be32_to_cpu(ri.spec) & ROMFH_MASK;
  152. }
  153. /* Not really failsafe, but we are read-only... */
  154. for (;;) {
  155. if (!offset || offset >= maxoff) {
  156. offset = maxoff;
  157. ctx->pos = offset;
  158. goto out;
  159. }
  160. ctx->pos = offset;
  161. /* Fetch inode info */
  162. ret = romfs_dev_read(i->i_sb, offset, &ri, ROMFH_SIZE);
  163. if (ret < 0)
  164. goto out;
  165. j = romfs_dev_strnlen(i->i_sb, offset + ROMFH_SIZE,
  166. sizeof(fsname) - 1);
  167. if (j < 0)
  168. goto out;
  169. ret = romfs_dev_read(i->i_sb, offset + ROMFH_SIZE, fsname, j);
  170. if (ret < 0)
  171. goto out;
  172. fsname[j] = '\0';
  173. ino = offset;
  174. nextfh = be32_to_cpu(ri.next);
  175. if ((nextfh & ROMFH_TYPE) == ROMFH_HRD)
  176. ino = be32_to_cpu(ri.spec);
  177. if (!dir_emit(ctx, fsname, j, ino,
  178. romfs_dtype_table[nextfh & ROMFH_TYPE]))
  179. goto out;
  180. offset = nextfh & ROMFH_MASK;
  181. }
  182. out:
  183. return 0;
  184. }
  185. /*
  186. * look up an entry in a directory
  187. */
  188. static struct dentry *romfs_lookup(struct inode *dir, struct dentry *dentry,
  189. unsigned int flags)
  190. {
  191. unsigned long offset, maxoff;
  192. struct inode *inode;
  193. struct romfs_inode ri;
  194. const char *name; /* got from dentry */
  195. int len, ret;
  196. offset = dir->i_ino & ROMFH_MASK;
  197. ret = romfs_dev_read(dir->i_sb, offset, &ri, ROMFH_SIZE);
  198. if (ret < 0)
  199. goto error;
  200. /* search all the file entries in the list starting from the one
  201. * pointed to by the directory's special data */
  202. maxoff = romfs_maxsize(dir->i_sb);
  203. offset = be32_to_cpu(ri.spec) & ROMFH_MASK;
  204. name = dentry->d_name.name;
  205. len = dentry->d_name.len;
  206. for (;;) {
  207. if (!offset || offset >= maxoff)
  208. goto out0;
  209. ret = romfs_dev_read(dir->i_sb, offset, &ri, sizeof(ri));
  210. if (ret < 0)
  211. goto error;
  212. /* try to match the first 16 bytes of name */
  213. ret = romfs_dev_strcmp(dir->i_sb, offset + ROMFH_SIZE, name,
  214. len);
  215. if (ret < 0)
  216. goto error;
  217. if (ret == 1)
  218. break;
  219. /* next entry */
  220. offset = be32_to_cpu(ri.next) & ROMFH_MASK;
  221. }
  222. /* Hard link handling */
  223. if ((be32_to_cpu(ri.next) & ROMFH_TYPE) == ROMFH_HRD)
  224. offset = be32_to_cpu(ri.spec) & ROMFH_MASK;
  225. inode = romfs_iget(dir->i_sb, offset);
  226. if (IS_ERR(inode)) {
  227. ret = PTR_ERR(inode);
  228. goto error;
  229. }
  230. goto outi;
  231. /*
  232. * it's a bit funky, _lookup needs to return an error code
  233. * (negative) or a NULL, both as a dentry. ENOENT should not
  234. * be returned, instead we need to create a negative dentry by
  235. * d_add(dentry, NULL); and return 0 as no error.
  236. * (Although as I see, it only matters on writable file
  237. * systems).
  238. */
  239. out0:
  240. inode = NULL;
  241. outi:
  242. d_add(dentry, inode);
  243. ret = 0;
  244. error:
  245. return ERR_PTR(ret);
  246. }
  247. static const struct file_operations romfs_dir_operations = {
  248. .read = generic_read_dir,
  249. .iterate = romfs_readdir,
  250. .llseek = default_llseek,
  251. };
  252. static const struct inode_operations romfs_dir_inode_operations = {
  253. .lookup = romfs_lookup,
  254. };
  255. /*
  256. * get a romfs inode based on its position in the image (which doubles as the
  257. * inode number)
  258. */
  259. static struct inode *romfs_iget(struct super_block *sb, unsigned long pos)
  260. {
  261. struct romfs_inode_info *inode;
  262. struct romfs_inode ri;
  263. struct inode *i;
  264. unsigned long nlen;
  265. unsigned nextfh;
  266. int ret;
  267. umode_t mode;
  268. /* we might have to traverse a chain of "hard link" file entries to get
  269. * to the actual file */
  270. for (;;) {
  271. ret = romfs_dev_read(sb, pos, &ri, sizeof(ri));
  272. if (ret < 0)
  273. goto error;
  274. /* XXX: do romfs_checksum here too (with name) */
  275. nextfh = be32_to_cpu(ri.next);
  276. if ((nextfh & ROMFH_TYPE) != ROMFH_HRD)
  277. break;
  278. pos = be32_to_cpu(ri.spec) & ROMFH_MASK;
  279. }
  280. /* determine the length of the filename */
  281. nlen = romfs_dev_strnlen(sb, pos + ROMFH_SIZE, ROMFS_MAXFN);
  282. if (IS_ERR_VALUE(nlen))
  283. goto eio;
  284. /* get an inode for this image position */
  285. i = iget_locked(sb, pos);
  286. if (!i)
  287. return ERR_PTR(-ENOMEM);
  288. if (!(i->i_state & I_NEW))
  289. return i;
  290. /* precalculate the data offset */
  291. inode = ROMFS_I(i);
  292. inode->i_metasize = (ROMFH_SIZE + nlen + 1 + ROMFH_PAD) & ROMFH_MASK;
  293. inode->i_dataoffset = pos + inode->i_metasize;
  294. set_nlink(i, 1); /* Hard to decide.. */
  295. i->i_size = be32_to_cpu(ri.size);
  296. i->i_mtime.tv_sec = i->i_atime.tv_sec = i->i_ctime.tv_sec = 0;
  297. i->i_mtime.tv_nsec = i->i_atime.tv_nsec = i->i_ctime.tv_nsec = 0;
  298. /* set up mode and ops */
  299. mode = romfs_modemap[nextfh & ROMFH_TYPE];
  300. switch (nextfh & ROMFH_TYPE) {
  301. case ROMFH_DIR:
  302. i->i_size = ROMFS_I(i)->i_metasize;
  303. i->i_op = &romfs_dir_inode_operations;
  304. i->i_fop = &romfs_dir_operations;
  305. if (nextfh & ROMFH_EXEC)
  306. mode |= S_IXUGO;
  307. break;
  308. case ROMFH_REG:
  309. i->i_fop = &romfs_ro_fops;
  310. i->i_data.a_ops = &romfs_aops;
  311. if (nextfh & ROMFH_EXEC)
  312. mode |= S_IXUGO;
  313. break;
  314. case ROMFH_SYM:
  315. i->i_op = &page_symlink_inode_operations;
  316. i->i_data.a_ops = &romfs_aops;
  317. mode |= S_IRWXUGO;
  318. break;
  319. default:
  320. /* depending on MBZ for sock/fifos */
  321. nextfh = be32_to_cpu(ri.spec);
  322. init_special_inode(i, mode, MKDEV(nextfh >> 16,
  323. nextfh & 0xffff));
  324. break;
  325. }
  326. i->i_mode = mode;
  327. unlock_new_inode(i);
  328. return i;
  329. eio:
  330. ret = -EIO;
  331. error:
  332. pr_err("read error for inode 0x%lx\n", pos);
  333. return ERR_PTR(ret);
  334. }
  335. /*
  336. * allocate a new inode
  337. */
  338. static struct inode *romfs_alloc_inode(struct super_block *sb)
  339. {
  340. struct romfs_inode_info *inode;
  341. inode = kmem_cache_alloc(romfs_inode_cachep, GFP_KERNEL);
  342. return inode ? &inode->vfs_inode : NULL;
  343. }
  344. /*
  345. * return a spent inode to the slab cache
  346. */
  347. static void romfs_i_callback(struct rcu_head *head)
  348. {
  349. struct inode *inode = container_of(head, struct inode, i_rcu);
  350. kmem_cache_free(romfs_inode_cachep, ROMFS_I(inode));
  351. }
  352. static void romfs_destroy_inode(struct inode *inode)
  353. {
  354. call_rcu(&inode->i_rcu, romfs_i_callback);
  355. }
  356. /*
  357. * get filesystem statistics
  358. */
  359. static int romfs_statfs(struct dentry *dentry, struct kstatfs *buf)
  360. {
  361. struct super_block *sb = dentry->d_sb;
  362. u64 id = 0;
  363. /* When calling huge_encode_dev(),
  364. * use sb->s_bdev->bd_dev when,
  365. * - CONFIG_ROMFS_ON_BLOCK defined
  366. * use sb->s_dev when,
  367. * - CONFIG_ROMFS_ON_BLOCK undefined and
  368. * - CONFIG_ROMFS_ON_MTD defined
  369. * leave id as 0 when,
  370. * - CONFIG_ROMFS_ON_BLOCK undefined and
  371. * - CONFIG_ROMFS_ON_MTD undefined
  372. */
  373. if (sb->s_bdev)
  374. id = huge_encode_dev(sb->s_bdev->bd_dev);
  375. else if (sb->s_dev)
  376. id = huge_encode_dev(sb->s_dev);
  377. buf->f_type = ROMFS_MAGIC;
  378. buf->f_namelen = ROMFS_MAXFN;
  379. buf->f_bsize = ROMBSIZE;
  380. buf->f_bfree = buf->f_bavail = buf->f_ffree;
  381. buf->f_blocks =
  382. (romfs_maxsize(dentry->d_sb) + ROMBSIZE - 1) >> ROMBSBITS;
  383. buf->f_fsid.val[0] = (u32)id;
  384. buf->f_fsid.val[1] = (u32)(id >> 32);
  385. return 0;
  386. }
  387. /*
  388. * remounting must involve read-only
  389. */
  390. static int romfs_remount(struct super_block *sb, int *flags, char *data)
  391. {
  392. sync_filesystem(sb);
  393. *flags |= MS_RDONLY;
  394. return 0;
  395. }
  396. static const struct super_operations romfs_super_ops = {
  397. .alloc_inode = romfs_alloc_inode,
  398. .destroy_inode = romfs_destroy_inode,
  399. .statfs = romfs_statfs,
  400. .remount_fs = romfs_remount,
  401. };
  402. /*
  403. * checksum check on part of a romfs filesystem
  404. */
  405. static __u32 romfs_checksum(const void *data, int size)
  406. {
  407. const __be32 *ptr = data;
  408. __u32 sum;
  409. sum = 0;
  410. size >>= 2;
  411. while (size > 0) {
  412. sum += be32_to_cpu(*ptr++);
  413. size--;
  414. }
  415. return sum;
  416. }
  417. /*
  418. * fill in the superblock
  419. */
  420. static int romfs_fill_super(struct super_block *sb, void *data, int silent)
  421. {
  422. struct romfs_super_block *rsb;
  423. struct inode *root;
  424. unsigned long pos, img_size;
  425. const char *storage;
  426. size_t len;
  427. int ret;
  428. #ifdef CONFIG_BLOCK
  429. if (!sb->s_mtd) {
  430. sb_set_blocksize(sb, ROMBSIZE);
  431. } else {
  432. sb->s_blocksize = ROMBSIZE;
  433. sb->s_blocksize_bits = blksize_bits(ROMBSIZE);
  434. }
  435. #endif
  436. sb->s_maxbytes = 0xFFFFFFFF;
  437. sb->s_magic = ROMFS_MAGIC;
  438. sb->s_flags |= MS_RDONLY | MS_NOATIME;
  439. sb->s_op = &romfs_super_ops;
  440. #ifdef CONFIG_ROMFS_ON_MTD
  441. /* Use same dev ID from the underlying mtdblock device */
  442. if (sb->s_mtd)
  443. sb->s_dev = MKDEV(MTD_BLOCK_MAJOR, sb->s_mtd->index);
  444. #endif
  445. /* read the image superblock and check it */
  446. rsb = kmalloc(512, GFP_KERNEL);
  447. if (!rsb)
  448. return -ENOMEM;
  449. sb->s_fs_info = (void *) 512;
  450. ret = romfs_dev_read(sb, 0, rsb, 512);
  451. if (ret < 0)
  452. goto error_rsb;
  453. img_size = be32_to_cpu(rsb->size);
  454. if (sb->s_mtd && img_size > sb->s_mtd->size)
  455. goto error_rsb_inval;
  456. sb->s_fs_info = (void *) img_size;
  457. if (rsb->word0 != ROMSB_WORD0 || rsb->word1 != ROMSB_WORD1 ||
  458. img_size < ROMFH_SIZE) {
  459. if (!silent)
  460. pr_warn("VFS: Can't find a romfs filesystem on dev %s.\n",
  461. sb->s_id);
  462. goto error_rsb_inval;
  463. }
  464. if (romfs_checksum(rsb, min_t(size_t, img_size, 512))) {
  465. pr_err("bad initial checksum on dev %s.\n", sb->s_id);
  466. goto error_rsb_inval;
  467. }
  468. storage = sb->s_mtd ? "MTD" : "the block layer";
  469. len = strnlen(rsb->name, ROMFS_MAXFN);
  470. if (!silent)
  471. pr_notice("Mounting image '%*.*s' through %s\n",
  472. (unsigned) len, (unsigned) len, rsb->name, storage);
  473. kfree(rsb);
  474. rsb = NULL;
  475. /* find the root directory */
  476. pos = (ROMFH_SIZE + len + 1 + ROMFH_PAD) & ROMFH_MASK;
  477. root = romfs_iget(sb, pos);
  478. if (IS_ERR(root))
  479. return PTR_ERR(root);
  480. sb->s_root = d_make_root(root);
  481. if (!sb->s_root)
  482. return -ENOMEM;
  483. return 0;
  484. error_rsb_inval:
  485. ret = -EINVAL;
  486. error_rsb:
  487. kfree(rsb);
  488. return ret;
  489. }
  490. /*
  491. * get a superblock for mounting
  492. */
  493. static struct dentry *romfs_mount(struct file_system_type *fs_type,
  494. int flags, const char *dev_name,
  495. void *data)
  496. {
  497. struct dentry *ret = ERR_PTR(-EINVAL);
  498. #ifdef CONFIG_ROMFS_ON_MTD
  499. ret = mount_mtd(fs_type, flags, dev_name, data, romfs_fill_super);
  500. #endif
  501. #ifdef CONFIG_ROMFS_ON_BLOCK
  502. if (ret == ERR_PTR(-EINVAL))
  503. ret = mount_bdev(fs_type, flags, dev_name, data,
  504. romfs_fill_super);
  505. #endif
  506. return ret;
  507. }
  508. /*
  509. * destroy a romfs superblock in the appropriate manner
  510. */
  511. static void romfs_kill_sb(struct super_block *sb)
  512. {
  513. #ifdef CONFIG_ROMFS_ON_MTD
  514. if (sb->s_mtd) {
  515. kill_mtd_super(sb);
  516. return;
  517. }
  518. #endif
  519. #ifdef CONFIG_ROMFS_ON_BLOCK
  520. if (sb->s_bdev) {
  521. kill_block_super(sb);
  522. return;
  523. }
  524. #endif
  525. }
  526. static struct file_system_type romfs_fs_type = {
  527. .owner = THIS_MODULE,
  528. .name = "romfs",
  529. .mount = romfs_mount,
  530. .kill_sb = romfs_kill_sb,
  531. .fs_flags = FS_REQUIRES_DEV,
  532. };
  533. MODULE_ALIAS_FS("romfs");
  534. /*
  535. * inode storage initialiser
  536. */
  537. static void romfs_i_init_once(void *_inode)
  538. {
  539. struct romfs_inode_info *inode = _inode;
  540. inode_init_once(&inode->vfs_inode);
  541. }
  542. /*
  543. * romfs module initialisation
  544. */
  545. static int __init init_romfs_fs(void)
  546. {
  547. int ret;
  548. pr_info("ROMFS MTD (C) 2007 Red Hat, Inc.\n");
  549. romfs_inode_cachep =
  550. kmem_cache_create("romfs_i",
  551. sizeof(struct romfs_inode_info), 0,
  552. SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
  553. romfs_i_init_once);
  554. if (!romfs_inode_cachep) {
  555. pr_err("Failed to initialise inode cache\n");
  556. return -ENOMEM;
  557. }
  558. ret = register_filesystem(&romfs_fs_type);
  559. if (ret) {
  560. pr_err("Failed to register filesystem\n");
  561. goto error_register;
  562. }
  563. return 0;
  564. error_register:
  565. kmem_cache_destroy(romfs_inode_cachep);
  566. return ret;
  567. }
  568. /*
  569. * romfs module removal
  570. */
  571. static void __exit exit_romfs_fs(void)
  572. {
  573. unregister_filesystem(&romfs_fs_type);
  574. /*
  575. * Make sure all delayed rcu free inodes are flushed before we
  576. * destroy cache.
  577. */
  578. rcu_barrier();
  579. kmem_cache_destroy(romfs_inode_cachep);
  580. }
  581. module_init(init_romfs_fs);
  582. module_exit(exit_romfs_fs);
  583. MODULE_DESCRIPTION("Direct-MTD Capable RomFS");
  584. MODULE_AUTHOR("Red Hat, Inc.");
  585. MODULE_LICENSE("GPL"); /* Actually dual-licensed, but it doesn't matter for */