blob: 22a0d7ed5fa1c45bf412d42346f7c003c929185a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/adfs/super.c
3 *
4 * Copyright (C) 1997-1999 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
12#include <linux/buffer_head.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/parser.h>
Miklos Szeredie11400b2008-02-08 04:21:35 -080014#include <linux/mount.h>
15#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Al Viro608ba502009-06-16 14:52:13 -040017#include <linux/statfs.h>
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -080018#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "adfs.h"
20#include "dir_f.h"
21#include "dir_fplus.h"
22
Miklos Szeredie11400b2008-02-08 04:21:35 -080023#define ADFS_DEFAULT_OWNER_MASK S_IRWXU
24#define ADFS_DEFAULT_OTHER_MASK (S_IRWXG | S_IRWXO)
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026void __adfs_error(struct super_block *sb, const char *function, const char *fmt, ...)
27{
28 char error_buf[128];
29 va_list args;
30
31 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -080032 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 va_end(args);
34
35 printk(KERN_CRIT "ADFS-fs error (device %s)%s%s: %s\n",
36 sb->s_id, function ? ": " : "",
37 function ? function : "", error_buf);
38}
39
40static int adfs_checkdiscrecord(struct adfs_discrecord *dr)
41{
42 int i;
43
44 /* sector size must be 256, 512 or 1024 bytes */
45 if (dr->log2secsize != 8 &&
46 dr->log2secsize != 9 &&
47 dr->log2secsize != 10)
48 return 1;
49
50 /* idlen must be at least log2secsize + 3 */
51 if (dr->idlen < dr->log2secsize + 3)
52 return 1;
53
54 /* we cannot have such a large disc that we
55 * are unable to represent sector offsets in
56 * 32 bits. This works out at 2.0 TB.
57 */
58 if (le32_to_cpu(dr->disc_size_high) >> dr->log2secsize)
59 return 1;
60
61 /* idlen must be no greater than 19 v2 [1.0] */
62 if (dr->idlen > 19)
63 return 1;
64
65 /* reserved bytes should be zero */
66 for (i = 0; i < sizeof(dr->unused52); i++)
67 if (dr->unused52[i] != 0)
68 return 1;
69
70 return 0;
71}
72
73static unsigned char adfs_calczonecheck(struct super_block *sb, unsigned char *map)
74{
75 unsigned int v0, v1, v2, v3;
76 int i;
77
78 v0 = v1 = v2 = v3 = 0;
79 for (i = sb->s_blocksize - 4; i; i -= 4) {
80 v0 += map[i] + (v3 >> 8);
81 v3 &= 0xff;
82 v1 += map[i + 1] + (v0 >> 8);
83 v0 &= 0xff;
84 v2 += map[i + 2] + (v1 >> 8);
85 v1 &= 0xff;
86 v3 += map[i + 3] + (v2 >> 8);
87 v2 &= 0xff;
88 }
89 v0 += v3 >> 8;
90 v1 += map[1] + (v0 >> 8);
91 v2 += map[2] + (v1 >> 8);
92 v3 += map[3] + (v2 >> 8);
93
94 return v0 ^ v1 ^ v2 ^ v3;
95}
96
97static int adfs_checkmap(struct super_block *sb, struct adfs_discmap *dm)
98{
99 unsigned char crosscheck = 0, zonecheck = 1;
100 int i;
101
102 for (i = 0; i < ADFS_SB(sb)->s_map_size; i++) {
103 unsigned char *map;
104
105 map = dm[i].dm_bh->b_data;
106
107 if (adfs_calczonecheck(sb, map) != map[0]) {
108 adfs_error(sb, "zone %d fails zonecheck", i);
109 zonecheck = 0;
110 }
111 crosscheck ^= map[3];
112 }
113 if (crosscheck != 0xff)
114 adfs_error(sb, "crosscheck != 0xff");
115 return crosscheck == 0xff && zonecheck;
116}
117
118static void adfs_put_super(struct super_block *sb)
119{
120 int i;
121 struct adfs_sb_info *asb = ADFS_SB(sb);
122
123 for (i = 0; i < asb->s_map_size; i++)
124 brelse(asb->s_map[i].dm_bh);
125 kfree(asb->s_map);
126 kfree(asb);
127 sb->s_fs_info = NULL;
128}
129
Al Viro34c80b12011-12-08 21:32:45 -0500130static int adfs_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredie11400b2008-02-08 04:21:35 -0800131{
Al Viro34c80b12011-12-08 21:32:45 -0500132 struct adfs_sb_info *asb = ADFS_SB(root->d_sb);
Miklos Szeredie11400b2008-02-08 04:21:35 -0800133
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800134 if (!uid_eq(asb->s_uid, GLOBAL_ROOT_UID))
135 seq_printf(seq, ",uid=%u", from_kuid_munged(&init_user_ns, asb->s_uid));
136 if (!gid_eq(asb->s_gid, GLOBAL_ROOT_GID))
137 seq_printf(seq, ",gid=%u", from_kgid_munged(&init_user_ns, asb->s_gid));
Miklos Szeredie11400b2008-02-08 04:21:35 -0800138 if (asb->s_owner_mask != ADFS_DEFAULT_OWNER_MASK)
139 seq_printf(seq, ",ownmask=%o", asb->s_owner_mask);
140 if (asb->s_other_mask != ADFS_DEFAULT_OTHER_MASK)
141 seq_printf(seq, ",othmask=%o", asb->s_other_mask);
Stuart Swalesda23ef02011-03-22 16:35:06 -0700142 if (asb->s_ftsuffix != 0)
143 seq_printf(seq, ",ftsuffix=%u", asb->s_ftsuffix);
Miklos Szeredie11400b2008-02-08 04:21:35 -0800144
145 return 0;
146}
147
Stuart Swalesda23ef02011-03-22 16:35:06 -0700148enum {Opt_uid, Opt_gid, Opt_ownmask, Opt_othmask, Opt_ftsuffix, Opt_err};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Steven Whitehousea447c092008-10-13 10:46:57 +0100150static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 {Opt_uid, "uid=%u"},
152 {Opt_gid, "gid=%u"},
153 {Opt_ownmask, "ownmask=%o"},
154 {Opt_othmask, "othmask=%o"},
Stuart Swalesda23ef02011-03-22 16:35:06 -0700155 {Opt_ftsuffix, "ftsuffix=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 {Opt_err, NULL}
157};
158
159static int parse_options(struct super_block *sb, char *options)
160{
161 char *p;
162 struct adfs_sb_info *asb = ADFS_SB(sb);
163 int option;
164
165 if (!options)
166 return 0;
167
168 while ((p = strsep(&options, ",")) != NULL) {
169 substring_t args[MAX_OPT_ARGS];
170 int token;
171 if (!*p)
172 continue;
173
174 token = match_token(p, tokens, args);
175 switch (token) {
176 case Opt_uid:
177 if (match_int(args, &option))
178 return -EINVAL;
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800179 asb->s_uid = make_kuid(current_user_ns(), option);
180 if (!uid_valid(asb->s_uid))
181 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 break;
183 case Opt_gid:
184 if (match_int(args, &option))
185 return -EINVAL;
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800186 asb->s_gid = make_kgid(current_user_ns(), option);
187 if (!gid_valid(asb->s_gid))
188 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 break;
190 case Opt_ownmask:
191 if (match_octal(args, &option))
192 return -EINVAL;
193 asb->s_owner_mask = option;
194 break;
195 case Opt_othmask:
196 if (match_octal(args, &option))
197 return -EINVAL;
198 asb->s_other_mask = option;
199 break;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700200 case Opt_ftsuffix:
201 if (match_int(args, &option))
202 return -EINVAL;
203 asb->s_ftsuffix = option;
204 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 default:
206 printk("ADFS-fs: unrecognised mount option \"%s\" "
207 "or missing value\n", p);
208 return -EINVAL;
209 }
210 }
211 return 0;
212}
213
214static int adfs_remount(struct super_block *sb, int *flags, char *data)
215{
216 *flags |= MS_NODIRATIME;
217 return parse_options(sb, data);
218}
219
David Howells726c3342006-06-23 02:02:58 -0700220static int adfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Coly Liaccb4012009-04-02 16:59:27 -0700222 struct super_block *sb = dentry->d_sb;
223 struct adfs_sb_info *sbi = ADFS_SB(sb);
224 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 buf->f_type = ADFS_SUPER_MAGIC;
Coly Liaccb4012009-04-02 16:59:27 -0700227 buf->f_namelen = sbi->s_namelen;
228 buf->f_bsize = sb->s_blocksize;
229 buf->f_blocks = sbi->s_size;
230 buf->f_files = sbi->s_ids_per_zone * sbi->s_map_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 buf->f_bavail =
Coly Liaccb4012009-04-02 16:59:27 -0700232 buf->f_bfree = adfs_map_free(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 buf->f_ffree = (long)(buf->f_bfree * buf->f_files) / (long)buf->f_blocks;
Coly Liaccb4012009-04-02 16:59:27 -0700234 buf->f_fsid.val[0] = (u32)id;
235 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 return 0;
238}
239
Christoph Lametere18b8902006-12-06 20:33:20 -0800240static struct kmem_cache *adfs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242static struct inode *adfs_alloc_inode(struct super_block *sb)
243{
244 struct adfs_inode_info *ei;
Christoph Lametere94b1762006-12-06 20:33:17 -0800245 ei = (struct adfs_inode_info *)kmem_cache_alloc(adfs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (!ei)
247 return NULL;
248 return &ei->vfs_inode;
249}
250
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100251static void adfs_i_callback(struct rcu_head *head)
252{
253 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100254 kmem_cache_free(adfs_inode_cachep, ADFS_I(inode));
255}
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257static void adfs_destroy_inode(struct inode *inode)
258{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100259 call_rcu(&inode->i_rcu, adfs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700262static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 struct adfs_inode_info *ei = (struct adfs_inode_info *) foo;
265
Christoph Lametera35afb82007-05-16 22:10:57 -0700266 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
Paul Mundt20c2df82007-07-20 10:11:58 +0900268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static int init_inodecache(void)
270{
271 adfs_inode_cachep = kmem_cache_create("adfs_inode_cache",
272 sizeof(struct adfs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800273 0, (SLAB_RECLAIM_ACCOUNT|
274 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900275 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (adfs_inode_cachep == NULL)
277 return -ENOMEM;
278 return 0;
279}
280
281static void destroy_inodecache(void)
282{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700283 kmem_cache_destroy(adfs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800286static const struct super_operations adfs_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 .alloc_inode = adfs_alloc_inode,
288 .destroy_inode = adfs_destroy_inode,
289 .write_inode = adfs_write_inode,
290 .put_super = adfs_put_super,
291 .statfs = adfs_statfs,
292 .remount_fs = adfs_remount,
Miklos Szeredie11400b2008-02-08 04:21:35 -0800293 .show_options = adfs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294};
295
296static struct adfs_discmap *adfs_read_map(struct super_block *sb, struct adfs_discrecord *dr)
297{
298 struct adfs_discmap *dm;
299 unsigned int map_addr, zone_size, nzones;
300 int i, zone;
301 struct adfs_sb_info *asb = ADFS_SB(sb);
302
303 nzones = asb->s_map_size;
304 zone_size = (8 << dr->log2secsize) - le16_to_cpu(dr->zone_spare);
305 map_addr = (nzones >> 1) * zone_size -
306 ((nzones > 1) ? ADFS_DR_SIZE_BITS : 0);
307 map_addr = signed_asl(map_addr, asb->s_map2blk);
308
309 asb->s_ids_per_zone = zone_size / (asb->s_idlen + 1);
310
311 dm = kmalloc(nzones * sizeof(*dm), GFP_KERNEL);
312 if (dm == NULL) {
313 adfs_error(sb, "not enough memory");
314 return NULL;
315 }
316
317 for (zone = 0; zone < nzones; zone++, map_addr++) {
318 dm[zone].dm_startbit = 0;
319 dm[zone].dm_endbit = zone_size;
320 dm[zone].dm_startblk = zone * zone_size - ADFS_DR_SIZE_BITS;
321 dm[zone].dm_bh = sb_bread(sb, map_addr);
322
323 if (!dm[zone].dm_bh) {
324 adfs_error(sb, "unable to read map");
325 goto error_free;
326 }
327 }
328
329 /* adjust the limits for the first and last map zones */
330 i = zone - 1;
331 dm[0].dm_startblk = 0;
332 dm[0].dm_startbit = ADFS_DR_SIZE_BITS;
333 dm[i].dm_endbit = (le32_to_cpu(dr->disc_size_high) << (32 - dr->log2bpmb)) +
334 (le32_to_cpu(dr->disc_size) >> dr->log2bpmb) +
335 (ADFS_DR_SIZE_BITS - i * zone_size);
336
337 if (adfs_checkmap(sb, dm))
338 return dm;
339
Andrew Morton1725cd02006-08-13 23:24:17 -0700340 adfs_error(sb, "map corrupted");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342error_free:
343 while (--zone >= 0)
344 brelse(dm[zone].dm_bh);
345
346 kfree(dm);
347 return NULL;
348}
349
350static inline unsigned long adfs_discsize(struct adfs_discrecord *dr, int block_bits)
351{
352 unsigned long discsize;
353
354 discsize = le32_to_cpu(dr->disc_size_high) << (32 - block_bits);
355 discsize |= le32_to_cpu(dr->disc_size) >> block_bits;
356
357 return discsize;
358}
359
360static int adfs_fill_super(struct super_block *sb, void *data, int silent)
361{
362 struct adfs_discrecord *dr;
363 struct buffer_head *bh;
364 struct object_info root_obj;
365 unsigned char *b_data;
366 struct adfs_sb_info *asb;
367 struct inode *root;
368
369 sb->s_flags |= MS_NODIRATIME;
370
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700371 asb = kzalloc(sizeof(*asb), GFP_KERNEL);
Arnd Bergmann4688a062011-01-22 20:05:05 +0100372 if (!asb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return -ENOMEM;
374 sb->s_fs_info = asb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 /* set default options */
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800377 asb->s_uid = GLOBAL_ROOT_UID;
378 asb->s_gid = GLOBAL_ROOT_GID;
Miklos Szeredie11400b2008-02-08 04:21:35 -0800379 asb->s_owner_mask = ADFS_DEFAULT_OWNER_MASK;
380 asb->s_other_mask = ADFS_DEFAULT_OTHER_MASK;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700381 asb->s_ftsuffix = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 if (parse_options(sb, data))
384 goto error;
385
386 sb_set_blocksize(sb, BLOCK_SIZE);
387 if (!(bh = sb_bread(sb, ADFS_DISCRECORD / BLOCK_SIZE))) {
388 adfs_error(sb, "unable to read superblock");
389 goto error;
390 }
391
392 b_data = bh->b_data + (ADFS_DISCRECORD % BLOCK_SIZE);
393
394 if (adfs_checkbblk(b_data)) {
395 if (!silent)
396 printk("VFS: Can't find an adfs filesystem on dev "
397 "%s.\n", sb->s_id);
398 goto error_free_bh;
399 }
400
401 dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
402
403 /*
404 * Do some sanity checks on the ADFS disc record
405 */
406 if (adfs_checkdiscrecord(dr)) {
407 if (!silent)
408 printk("VPS: Can't find an adfs filesystem on dev "
409 "%s.\n", sb->s_id);
410 goto error_free_bh;
411 }
412
413 brelse(bh);
414 if (sb_set_blocksize(sb, 1 << dr->log2secsize)) {
415 bh = sb_bread(sb, ADFS_DISCRECORD / sb->s_blocksize);
416 if (!bh) {
417 adfs_error(sb, "couldn't read superblock on "
418 "2nd try.");
419 goto error;
420 }
421 b_data = bh->b_data + (ADFS_DISCRECORD % sb->s_blocksize);
422 if (adfs_checkbblk(b_data)) {
423 adfs_error(sb, "disc record mismatch, very weird!");
424 goto error_free_bh;
425 }
426 dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
427 } else {
428 if (!silent)
429 printk(KERN_ERR "VFS: Unsupported blocksize on dev "
430 "%s.\n", sb->s_id);
431 goto error;
432 }
433
434 /*
435 * blocksize on this device should now be set to the ADFS log2secsize
436 */
437
438 sb->s_magic = ADFS_SUPER_MAGIC;
439 asb->s_idlen = dr->idlen;
440 asb->s_map_size = dr->nzones | (dr->nzones_high << 8);
441 asb->s_map2blk = dr->log2bpmb - dr->log2secsize;
442 asb->s_size = adfs_discsize(dr, sb->s_blocksize_bits);
443 asb->s_version = dr->format_version;
444 asb->s_log2sharesize = dr->log2sharesize;
445
446 asb->s_map = adfs_read_map(sb, dr);
447 if (!asb->s_map)
448 goto error_free_bh;
449
450 brelse(bh);
451
452 /*
453 * set up enough so that we can read an inode
454 */
455 sb->s_op = &adfs_sops;
456
457 dr = (struct adfs_discrecord *)(asb->s_map[0].dm_bh->b_data + 4);
458
459 root_obj.parent_id = root_obj.file_id = le32_to_cpu(dr->root);
460 root_obj.name_len = 0;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700461 /* Set root object date as 01 Jan 1987 00:00:00 */
462 root_obj.loadaddr = 0xfff0003f;
463 root_obj.execaddr = 0xec22c000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 root_obj.size = ADFS_NEWDIR_SIZE;
465 root_obj.attr = ADFS_NDA_DIRECTORY | ADFS_NDA_OWNER_READ |
466 ADFS_NDA_OWNER_WRITE | ADFS_NDA_PUBLIC_READ;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700467 root_obj.filetype = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 /*
470 * If this is a F+ disk with variable length directories,
471 * get the root_size from the disc record.
472 */
473 if (asb->s_version) {
474 root_obj.size = le32_to_cpu(dr->root_size);
475 asb->s_dir = &adfs_fplus_dir_ops;
476 asb->s_namelen = ADFS_FPLUS_NAME_LEN;
477 } else {
478 asb->s_dir = &adfs_f_dir_ops;
479 asb->s_namelen = ADFS_F_NAME_LEN;
480 }
Stuart Swalesda23ef02011-03-22 16:35:06 -0700481 /*
482 * ,xyz hex filetype suffix may be added by driver
483 * to files that have valid RISC OS filetype
484 */
485 if (asb->s_ftsuffix)
486 asb->s_namelen += 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Al Viro96e13912010-12-18 11:20:57 -0500488 sb->s_d_op = &adfs_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 root = adfs_iget(sb, &root_obj);
Al Viro48fde702012-01-08 22:15:13 -0500490 sb->s_root = d_make_root(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (!sb->s_root) {
492 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 for (i = 0; i < asb->s_map_size; i++)
494 brelse(asb->s_map[i].dm_bh);
495 kfree(asb->s_map);
496 adfs_error(sb, "get root inode failed\n");
497 goto error;
Al Viro96e13912010-12-18 11:20:57 -0500498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return 0;
500
501error_free_bh:
502 brelse(bh);
503error:
504 sb->s_fs_info = NULL;
505 kfree(asb);
506 return -EINVAL;
507}
508
Al Viro152a0832010-07-25 00:46:55 +0400509static struct dentry *adfs_mount(struct file_system_type *fs_type,
510 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Al Viro152a0832010-07-25 00:46:55 +0400512 return mount_bdev(fs_type, flags, dev_name, data, adfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515static struct file_system_type adfs_fs_type = {
516 .owner = THIS_MODULE,
517 .name = "adfs",
Al Viro152a0832010-07-25 00:46:55 +0400518 .mount = adfs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 .kill_sb = kill_block_super,
520 .fs_flags = FS_REQUIRES_DEV,
521};
522
523static int __init init_adfs_fs(void)
524{
525 int err = init_inodecache();
526 if (err)
527 goto out1;
528 err = register_filesystem(&adfs_fs_type);
529 if (err)
530 goto out;
531 return 0;
532out:
533 destroy_inodecache();
534out1:
535 return err;
536}
537
538static void __exit exit_adfs_fs(void)
539{
540 unregister_filesystem(&adfs_fs_type);
541 destroy_inodecache();
542}
543
544module_init(init_adfs_fs)
545module_exit(exit_adfs_fs)
Al Viro608ba502009-06-16 14:52:13 -0400546MODULE_LICENSE("GPL");