Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * JFFS2 -- Journalling Flash File System, Version 2. |
| 3 | * |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 4 | * Copyright © 2001-2007 Red Hat, Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Created by David Woodhouse <dwmw2@infradead.org> |
| 7 | * |
| 8 | * For licensing information, see the file 'LICENCE' in this directory. |
| 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/list.h> |
| 17 | #include <linux/fs.h> |
Artem Bityutskiy | 9c74034 | 2006-10-11 14:52:47 +0300 | [diff] [blame] | 18 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/mount.h> |
Andres Salomon | 92abc47 | 2011-10-16 18:15:16 -0700 | [diff] [blame^] | 20 | #include <linux/parser.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/jffs2.h> |
| 22 | #include <linux/pagemap.h> |
David Howells | acaebfd | 2007-05-10 22:51:50 -0700 | [diff] [blame] | 23 | #include <linux/mtd/super.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/ctype.h> |
| 25 | #include <linux/namei.h> |
Andres Salomon | 92abc47 | 2011-10-16 18:15:16 -0700 | [diff] [blame^] | 26 | #include <linux/seq_file.h> |
David Woodhouse | 5f556aa | 2008-07-31 20:39:25 +0100 | [diff] [blame] | 27 | #include <linux/exportfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "compr.h" |
| 29 | #include "nodelist.h" |
| 30 | |
| 31 | static void jffs2_put_super(struct super_block *); |
| 32 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 33 | static struct kmem_cache *jffs2_inode_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | static struct inode *jffs2_alloc_inode(struct super_block *sb) |
| 36 | { |
David Woodhouse | 4e571ab | 2008-05-01 12:28:04 +0100 | [diff] [blame] | 37 | struct jffs2_inode_info *f; |
| 38 | |
| 39 | f = kmem_cache_alloc(jffs2_inode_cachep, GFP_KERNEL); |
| 40 | if (!f) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | return NULL; |
David Woodhouse | 4e571ab | 2008-05-01 12:28:04 +0100 | [diff] [blame] | 42 | return &f->vfs_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Nick Piggin | fa0d7e3 | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 45 | static void jffs2_i_callback(struct rcu_head *head) |
| 46 | { |
| 47 | struct inode *inode = container_of(head, struct inode, i_rcu); |
| 48 | INIT_LIST_HEAD(&inode->i_dentry); |
| 49 | kmem_cache_free(jffs2_inode_cachep, JFFS2_INODE_INFO(inode)); |
| 50 | } |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | static void jffs2_destroy_inode(struct inode *inode) |
| 53 | { |
Nick Piggin | fa0d7e3 | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 54 | call_rcu(&inode->i_rcu, jffs2_i_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 57 | static void jffs2_i_init_once(void *foo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { |
David Woodhouse | 4e571ab | 2008-05-01 12:28:04 +0100 | [diff] [blame] | 59 | struct jffs2_inode_info *f = foo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
David Woodhouse | 4e571ab | 2008-05-01 12:28:04 +0100 | [diff] [blame] | 61 | mutex_init(&f->sem); |
| 62 | inode_init_once(&f->vfs_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Christoph Hellwig | 01ba687 | 2009-05-11 23:34:27 +0200 | [diff] [blame] | 65 | static void jffs2_write_super(struct super_block *sb) |
| 66 | { |
| 67 | struct jffs2_sb_info *c = JFFS2_SB_INFO(sb); |
Christoph Hellwig | ebc1ac1 | 2009-05-11 23:35:03 +0200 | [diff] [blame] | 68 | |
| 69 | lock_super(sb); |
Christoph Hellwig | 01ba687 | 2009-05-11 23:34:27 +0200 | [diff] [blame] | 70 | sb->s_dirt = 0; |
| 71 | |
Christoph Hellwig | ebc1ac1 | 2009-05-11 23:35:03 +0200 | [diff] [blame] | 72 | if (!(sb->s_flags & MS_RDONLY)) { |
| 73 | D1(printk(KERN_DEBUG "jffs2_write_super()\n")); |
Christoph Hellwig | ebc1ac1 | 2009-05-11 23:35:03 +0200 | [diff] [blame] | 74 | jffs2_flush_wbuf_gc(c, 0); |
| 75 | } |
Christoph Hellwig | 01ba687 | 2009-05-11 23:34:27 +0200 | [diff] [blame] | 76 | |
Christoph Hellwig | ebc1ac1 | 2009-05-11 23:35:03 +0200 | [diff] [blame] | 77 | unlock_super(sb); |
Christoph Hellwig | 01ba687 | 2009-05-11 23:34:27 +0200 | [diff] [blame] | 78 | } |
| 79 | |
Andres Salomon | 92abc47 | 2011-10-16 18:15:16 -0700 | [diff] [blame^] | 80 | static const char *jffs2_compr_name(unsigned int compr) |
| 81 | { |
| 82 | switch (compr) { |
| 83 | case JFFS2_COMPR_MODE_NONE: |
| 84 | return "none"; |
| 85 | default: |
| 86 | /* should never happen; programmer error */ |
| 87 | WARN_ON(1); |
| 88 | return ""; |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | static int jffs2_show_options(struct seq_file *s, struct vfsmount *mnt) |
| 93 | { |
| 94 | struct jffs2_sb_info *c = JFFS2_SB_INFO(mnt->mnt_sb); |
| 95 | struct jffs2_mount_opts *opts = &c->mount_opts; |
| 96 | |
| 97 | if (opts->override_compr) |
| 98 | seq_printf(s, ",compr=%s", jffs2_compr_name(opts->compr)); |
| 99 | |
| 100 | return 0; |
| 101 | } |
| 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | static int jffs2_sync_fs(struct super_block *sb, int wait) |
| 104 | { |
| 105 | struct jffs2_sb_info *c = JFFS2_SB_INFO(sb); |
| 106 | |
Christoph Hellwig | d579ed0 | 2009-06-08 10:08:21 +0200 | [diff] [blame] | 107 | jffs2_write_super(sb); |
| 108 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 109 | mutex_lock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | jffs2_flush_wbuf_pad(c); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 111 | mutex_unlock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | return 0; |
| 113 | } |
| 114 | |
David Woodhouse | 5f556aa | 2008-07-31 20:39:25 +0100 | [diff] [blame] | 115 | static struct inode *jffs2_nfs_get_inode(struct super_block *sb, uint64_t ino, |
| 116 | uint32_t generation) |
| 117 | { |
| 118 | /* We don't care about i_generation. We'll destroy the flash |
| 119 | before we start re-using inode numbers anyway. And even |
| 120 | if that wasn't true, we'd have other problems...*/ |
| 121 | return jffs2_iget(sb, ino); |
| 122 | } |
| 123 | |
| 124 | static struct dentry *jffs2_fh_to_dentry(struct super_block *sb, struct fid *fid, |
| 125 | int fh_len, int fh_type) |
| 126 | { |
| 127 | return generic_fh_to_dentry(sb, fid, fh_len, fh_type, |
| 128 | jffs2_nfs_get_inode); |
| 129 | } |
| 130 | |
| 131 | static struct dentry *jffs2_fh_to_parent(struct super_block *sb, struct fid *fid, |
| 132 | int fh_len, int fh_type) |
| 133 | { |
| 134 | return generic_fh_to_parent(sb, fid, fh_len, fh_type, |
| 135 | jffs2_nfs_get_inode); |
| 136 | } |
| 137 | |
| 138 | static struct dentry *jffs2_get_parent(struct dentry *child) |
| 139 | { |
| 140 | struct jffs2_inode_info *f; |
| 141 | uint32_t pino; |
| 142 | |
| 143 | BUG_ON(!S_ISDIR(child->d_inode->i_mode)); |
| 144 | |
| 145 | f = JFFS2_INODE_INFO(child->d_inode); |
| 146 | |
| 147 | pino = f->inocache->pino_nlink; |
| 148 | |
| 149 | JFFS2_DEBUG("Parent of directory ino #%u is #%u\n", |
| 150 | f->inocache->ino, pino); |
| 151 | |
| 152 | return d_obtain_alias(jffs2_iget(child->d_inode->i_sb, pino)); |
| 153 | } |
| 154 | |
Alexey Dobriyan | ac4cfdd | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 155 | static const struct export_operations jffs2_export_ops = { |
David Woodhouse | 5f556aa | 2008-07-31 20:39:25 +0100 | [diff] [blame] | 156 | .get_parent = jffs2_get_parent, |
| 157 | .fh_to_dentry = jffs2_fh_to_dentry, |
| 158 | .fh_to_parent = jffs2_fh_to_parent, |
| 159 | }; |
| 160 | |
Andres Salomon | 92abc47 | 2011-10-16 18:15:16 -0700 | [diff] [blame^] | 161 | /* |
| 162 | * JFFS2 mount options. |
| 163 | * |
| 164 | * Opt_override_compr: override default compressor |
| 165 | * Opt_err: just end of array marker |
| 166 | */ |
| 167 | enum { |
| 168 | Opt_override_compr, |
| 169 | Opt_err, |
| 170 | }; |
| 171 | |
| 172 | static const match_table_t tokens = { |
| 173 | {Opt_override_compr, "compr=%s"}, |
| 174 | {Opt_err, NULL}, |
| 175 | }; |
| 176 | |
| 177 | static int jffs2_parse_options(struct jffs2_sb_info *c, char *data) |
| 178 | { |
| 179 | substring_t args[MAX_OPT_ARGS]; |
| 180 | char *p, *name; |
| 181 | |
| 182 | if (!data) |
| 183 | return 0; |
| 184 | |
| 185 | while ((p = strsep(&data, ","))) { |
| 186 | int token; |
| 187 | |
| 188 | if (!*p) |
| 189 | continue; |
| 190 | |
| 191 | token = match_token(p, tokens, args); |
| 192 | switch (token) { |
| 193 | case Opt_override_compr: |
| 194 | name = match_strdup(&args[0]); |
| 195 | |
| 196 | if (!name) |
| 197 | return -ENOMEM; |
| 198 | if (!strcmp(name, "none")) { |
| 199 | c->mount_opts.compr = JFFS2_COMPR_MODE_NONE; |
| 200 | c->mount_opts.override_compr = true; |
| 201 | } |
| 202 | kfree(name); |
| 203 | break; |
| 204 | default: |
| 205 | printk(KERN_ERR "JFFS2 Error: unrecognized mount option '%s' or missing value\n", |
| 206 | p); |
| 207 | return -EINVAL; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | static int jffs2_remount_fs(struct super_block *sb, int *flags, char *data) |
| 215 | { |
| 216 | struct jffs2_sb_info *c = JFFS2_SB_INFO(sb); |
| 217 | int err; |
| 218 | |
| 219 | err = jffs2_parse_options(c, data); |
| 220 | if (err) |
| 221 | return -EINVAL; |
| 222 | |
| 223 | return jffs2_do_remount_fs(sb, flags, data); |
| 224 | } |
| 225 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 226 | static const struct super_operations jffs2_super_operations = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { |
| 228 | .alloc_inode = jffs2_alloc_inode, |
| 229 | .destroy_inode =jffs2_destroy_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | .put_super = jffs2_put_super, |
| 231 | .write_super = jffs2_write_super, |
| 232 | .statfs = jffs2_statfs, |
| 233 | .remount_fs = jffs2_remount_fs, |
Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 234 | .evict_inode = jffs2_evict_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | .dirty_inode = jffs2_dirty_inode, |
Andres Salomon | 92abc47 | 2011-10-16 18:15:16 -0700 | [diff] [blame^] | 236 | .show_options = jffs2_show_options, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | .sync_fs = jffs2_sync_fs, |
| 238 | }; |
| 239 | |
David Howells | acaebfd | 2007-05-10 22:51:50 -0700 | [diff] [blame] | 240 | /* |
| 241 | * fill in the superblock |
| 242 | */ |
| 243 | static int jffs2_fill_super(struct super_block *sb, void *data, int silent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | struct jffs2_sb_info *c; |
Jan Blunck | db71922 | 2010-08-15 22:51:10 +0200 | [diff] [blame] | 246 | int ret; |
| 247 | |
David Howells | acaebfd | 2007-05-10 22:51:50 -0700 | [diff] [blame] | 248 | D1(printk(KERN_DEBUG "jffs2_get_sb_mtd():" |
| 249 | " New superblock for device %d (\"%s\")\n", |
| 250 | sb->s_mtd->index, sb->s_mtd->name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
Panagiotis Issaris | f8314dc | 2006-09-27 01:49:37 -0700 | [diff] [blame] | 252 | c = kzalloc(sizeof(*c), GFP_KERNEL); |
Arnd Bergmann | 1a028dd | 2010-09-16 16:11:09 +0200 | [diff] [blame] | 253 | if (!c) |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 254 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
David Howells | acaebfd | 2007-05-10 22:51:50 -0700 | [diff] [blame] | 256 | c->mtd = sb->s_mtd; |
| 257 | c->os_priv = sb; |
| 258 | sb->s_fs_info = c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
Andres Salomon | 92abc47 | 2011-10-16 18:15:16 -0700 | [diff] [blame^] | 260 | ret = jffs2_parse_options(c, data); |
| 261 | if (ret) { |
| 262 | kfree(c); |
| 263 | return -EINVAL; |
| 264 | } |
| 265 | |
David Howells | acaebfd | 2007-05-10 22:51:50 -0700 | [diff] [blame] | 266 | /* Initialize JFFS2 superblock locks, the further initialization will |
| 267 | * be done later */ |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 268 | mutex_init(&c->alloc_sem); |
| 269 | mutex_init(&c->erase_free_sem); |
Artem B. Bityuckiy | b622059 | 2005-07-12 17:37:12 +0100 | [diff] [blame] | 270 | init_waitqueue_head(&c->erase_wait); |
| 271 | init_waitqueue_head(&c->inocache_wq); |
| 272 | spin_lock_init(&c->erase_completion_lock); |
| 273 | spin_lock_init(&c->inocache_lock); |
| 274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | sb->s_op = &jffs2_super_operations; |
David Woodhouse | 5f556aa | 2008-07-31 20:39:25 +0100 | [diff] [blame] | 276 | sb->s_export_op = &jffs2_export_ops; |
David Howells | acaebfd | 2007-05-10 22:51:50 -0700 | [diff] [blame] | 277 | sb->s_flags = sb->s_flags | MS_NOATIME; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 278 | sb->s_xattr = jffs2_xattr_handlers; |
| 279 | #ifdef CONFIG_JFFS2_FS_POSIX_ACL |
| 280 | sb->s_flags |= MS_POSIXACL; |
| 281 | #endif |
Jan Blunck | db71922 | 2010-08-15 22:51:10 +0200 | [diff] [blame] | 282 | ret = jffs2_do_fill_super(sb, data, silent); |
Jan Blunck | db71922 | 2010-08-15 22:51:10 +0200 | [diff] [blame] | 283 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | } |
| 285 | |
Al Viro | 848b83a | 2010-07-25 00:56:46 +0400 | [diff] [blame] | 286 | static struct dentry *jffs2_mount(struct file_system_type *fs_type, |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 287 | int flags, const char *dev_name, |
Al Viro | 848b83a | 2010-07-25 00:56:46 +0400 | [diff] [blame] | 288 | void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
Al Viro | 848b83a | 2010-07-25 00:56:46 +0400 | [diff] [blame] | 290 | return mount_mtd(fs_type, flags, dev_name, data, jffs2_fill_super); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | static void jffs2_put_super (struct super_block *sb) |
| 294 | { |
| 295 | struct jffs2_sb_info *c = JFFS2_SB_INFO(sb); |
| 296 | |
| 297 | D2(printk(KERN_DEBUG "jffs2: jffs2_put_super()\n")); |
| 298 | |
Christoph Hellwig | 8c85e12 | 2009-04-28 18:00:26 +0200 | [diff] [blame] | 299 | if (sb->s_dirt) |
| 300 | jffs2_write_super(sb); |
| 301 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 302 | mutex_lock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | jffs2_flush_wbuf_pad(c); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 304 | mutex_unlock(&c->alloc_sem); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 305 | |
| 306 | jffs2_sum_exit(c); |
| 307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | jffs2_free_ino_caches(c); |
| 309 | jffs2_free_raw_node_refs(c); |
Ferenc Havasi | 4ce1f56 | 2005-08-31 14:51:04 +0100 | [diff] [blame] | 310 | if (jffs2_blocks_use_vmalloc(c)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | vfree(c->blocks); |
| 312 | else |
| 313 | kfree(c->blocks); |
| 314 | jffs2_flash_cleanup(c); |
| 315 | kfree(c->inocache_list); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 316 | jffs2_clear_xattr_subsystem(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | if (c->mtd->sync) |
| 318 | c->mtd->sync(c->mtd); |
| 319 | |
| 320 | D1(printk(KERN_DEBUG "jffs2_put_super returning\n")); |
| 321 | } |
| 322 | |
| 323 | static void jffs2_kill_sb(struct super_block *sb) |
| 324 | { |
| 325 | struct jffs2_sb_info *c = JFFS2_SB_INFO(sb); |
Artem B. Bityuckiy | a69dde9 | 2005-05-18 12:37:28 +0100 | [diff] [blame] | 326 | if (!(sb->s_flags & MS_RDONLY)) |
| 327 | jffs2_stop_garbage_collect_thread(c); |
David Howells | acaebfd | 2007-05-10 22:51:50 -0700 | [diff] [blame] | 328 | kill_mtd_super(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | kfree(c); |
| 330 | } |
| 331 | |
| 332 | static struct file_system_type jffs2_fs_type = { |
| 333 | .owner = THIS_MODULE, |
| 334 | .name = "jffs2", |
Al Viro | 848b83a | 2010-07-25 00:56:46 +0400 | [diff] [blame] | 335 | .mount = jffs2_mount, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | .kill_sb = jffs2_kill_sb, |
| 337 | }; |
| 338 | |
| 339 | static int __init init_jffs2_fs(void) |
| 340 | { |
| 341 | int ret; |
| 342 | |
David Woodhouse | 3e68fbb | 2006-05-15 00:49:43 +0100 | [diff] [blame] | 343 | /* Paranoia checks for on-medium structures. If we ask GCC |
| 344 | to pack them with __attribute__((packed)) then it _also_ |
| 345 | assumes that they're not aligned -- so it emits crappy |
| 346 | code on some architectures. Ideally we want an attribute |
| 347 | which means just 'no padding', without the alignment |
| 348 | thing. But GCC doesn't have that -- we have to just |
| 349 | hope the structs are the right sizes, instead. */ |
Alexey Dobriyan | 2ecd05a | 2006-10-11 01:22:05 -0700 | [diff] [blame] | 350 | BUILD_BUG_ON(sizeof(struct jffs2_unknown_node) != 12); |
| 351 | BUILD_BUG_ON(sizeof(struct jffs2_raw_dirent) != 40); |
| 352 | BUILD_BUG_ON(sizeof(struct jffs2_raw_inode) != 68); |
| 353 | BUILD_BUG_ON(sizeof(struct jffs2_raw_summary) != 32); |
David Woodhouse | 3e68fbb | 2006-05-15 00:49:43 +0100 | [diff] [blame] | 354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | printk(KERN_INFO "JFFS2 version 2.2." |
Andrew Victor | 2f82ce1 | 2005-02-09 09:24:26 +0000 | [diff] [blame] | 356 | #ifdef CONFIG_JFFS2_FS_WRITEBUFFER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | " (NAND)" |
| 358 | #endif |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 359 | #ifdef CONFIG_JFFS2_SUMMARY |
| 360 | " (SUMMARY) " |
| 361 | #endif |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 362 | " © 2001-2006 Red Hat, Inc.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
| 364 | jffs2_inode_cachep = kmem_cache_create("jffs2_i", |
| 365 | sizeof(struct jffs2_inode_info), |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 366 | 0, (SLAB_RECLAIM_ACCOUNT| |
| 367 | SLAB_MEM_SPREAD), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 368 | jffs2_i_init_once); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | if (!jffs2_inode_cachep) { |
| 370 | printk(KERN_ERR "JFFS2 error: Failed to initialise inode cache\n"); |
| 371 | return -ENOMEM; |
| 372 | } |
| 373 | ret = jffs2_compressors_init(); |
| 374 | if (ret) { |
| 375 | printk(KERN_ERR "JFFS2 error: Failed to initialise compressors\n"); |
| 376 | goto out; |
| 377 | } |
| 378 | ret = jffs2_create_slab_caches(); |
| 379 | if (ret) { |
| 380 | printk(KERN_ERR "JFFS2 error: Failed to initialise slab caches\n"); |
| 381 | goto out_compressors; |
| 382 | } |
| 383 | ret = register_filesystem(&jffs2_fs_type); |
| 384 | if (ret) { |
| 385 | printk(KERN_ERR "JFFS2 error: Failed to register filesystem\n"); |
| 386 | goto out_slab; |
| 387 | } |
| 388 | return 0; |
| 389 | |
| 390 | out_slab: |
| 391 | jffs2_destroy_slab_caches(); |
| 392 | out_compressors: |
| 393 | jffs2_compressors_exit(); |
| 394 | out: |
| 395 | kmem_cache_destroy(jffs2_inode_cachep); |
| 396 | return ret; |
| 397 | } |
| 398 | |
| 399 | static void __exit exit_jffs2_fs(void) |
| 400 | { |
| 401 | unregister_filesystem(&jffs2_fs_type); |
| 402 | jffs2_destroy_slab_caches(); |
| 403 | jffs2_compressors_exit(); |
| 404 | kmem_cache_destroy(jffs2_inode_cachep); |
| 405 | } |
| 406 | |
| 407 | module_init(init_jffs2_fs); |
| 408 | module_exit(exit_jffs2_fs); |
| 409 | |
| 410 | MODULE_DESCRIPTION("The Journalling Flash File System, v2"); |
| 411 | MODULE_AUTHOR("Red Hat, Inc."); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 412 | MODULE_LICENSE("GPL"); // Actually dual-licensed, but it doesn't matter for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | // the sake of this tag. It's Free Software. |