blob: 280d361af41f6590a9d78489ae3e61cf42d919d2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/affs/inode.c
3 *
4 * (c) 1996 Hans-Joachim Widmaier - Rewritten
5 *
6 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
7 *
8 * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
9 *
10 * (C) 1991 Linus Torvalds - minix filesystem
11 */
12
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/statfs.h>
16#include <linux/parser.h>
Jeff Garzike18fa702006-09-24 11:13:19 -040017#include <linux/magic.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040018#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "affs.h"
20
21extern struct timezone sys_tz;
22
David Howells726c3342006-06-23 02:02:58 -070023static int affs_statfs(struct dentry *dentry, struct kstatfs *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024static int affs_remount (struct super_block *sb, int *flags, char *data);
25
26static void
27affs_put_super(struct super_block *sb)
28{
29 struct affs_sb_info *sbi = AFFS_SB(sb);
30 pr_debug("AFFS: put_super()\n");
31
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020032 lock_kernel();
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 if (!(sb->s_flags & MS_RDONLY)) {
35 AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->bm_flag = cpu_to_be32(1);
36 secs_to_datestamp(get_seconds(),
37 &AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->disk_change);
38 affs_fix_checksum(sb, sbi->s_root_bh);
39 mark_buffer_dirty(sbi->s_root_bh);
40 }
41
Jesper Juhlf99d49a2005-11-07 01:01:34 -080042 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 affs_free_bitmap(sb);
44 affs_brelse(sbi->s_root_bh);
45 kfree(sbi);
46 sb->s_fs_info = NULL;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020047
48 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
50
51static void
52affs_write_super(struct super_block *sb)
53{
54 int clean = 2;
55 struct affs_sb_info *sbi = AFFS_SB(sb);
56
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020057 lock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 if (!(sb->s_flags & MS_RDONLY)) {
59 // if (sbi->s_bitmap[i].bm_bh) {
60 // if (buffer_dirty(sbi->s_bitmap[i].bm_bh)) {
61 // clean = 0;
62 AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->bm_flag = cpu_to_be32(clean);
63 secs_to_datestamp(get_seconds(),
64 &AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->disk_change);
65 affs_fix_checksum(sb, sbi->s_root_bh);
66 mark_buffer_dirty(sbi->s_root_bh);
67 sb->s_dirt = !clean; /* redo until bitmap synced */
68 } else
69 sb->s_dirt = 0;
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020070 unlock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 pr_debug("AFFS: write_super() at %lu, clean=%d\n", get_seconds(), clean);
73}
74
Christoph Lametere18b8902006-12-06 20:33:20 -080075static struct kmem_cache * affs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77static struct inode *affs_alloc_inode(struct super_block *sb)
78{
Roman Zippeldca3c332008-04-29 17:02:20 +020079 struct affs_inode_info *i;
80
81 i = kmem_cache_alloc(affs_inode_cachep, GFP_KERNEL);
82 if (!i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return NULL;
Roman Zippeldca3c332008-04-29 17:02:20 +020084
85 i->vfs_inode.i_version = 1;
86 i->i_lc = NULL;
87 i->i_ext_bh = NULL;
88 i->i_pa_cnt = 0;
89
90 return &i->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93static void affs_destroy_inode(struct inode *inode)
94{
95 kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
96}
97
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070098static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 struct affs_inode_info *ei = (struct affs_inode_info *) foo;
101
Christoph Lametera35afb82007-05-16 22:10:57 -0700102 init_MUTEX(&ei->i_link_lock);
103 init_MUTEX(&ei->i_ext_lock);
104 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static int init_inodecache(void)
108{
109 affs_inode_cachep = kmem_cache_create("affs_inode_cache",
110 sizeof(struct affs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800111 0, (SLAB_RECLAIM_ACCOUNT|
112 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900113 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (affs_inode_cachep == NULL)
115 return -ENOMEM;
116 return 0;
117}
118
119static void destroy_inodecache(void)
120{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700121 kmem_cache_destroy(affs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800124static const struct super_operations affs_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .alloc_inode = affs_alloc_inode,
126 .destroy_inode = affs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .write_inode = affs_write_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .delete_inode = affs_delete_inode,
129 .clear_inode = affs_clear_inode,
130 .put_super = affs_put_super,
131 .write_super = affs_write_super,
132 .statfs = affs_statfs,
133 .remount_fs = affs_remount,
Miklos Szeredie9b39612008-02-08 04:21:36 -0800134 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
137enum {
138 Opt_bs, Opt_mode, Opt_mufs, Opt_prefix, Opt_protect,
139 Opt_reserved, Opt_root, Opt_setgid, Opt_setuid,
140 Opt_verbose, Opt_volume, Opt_ignore, Opt_err,
141};
142
Steven Whitehousea447c092008-10-13 10:46:57 +0100143static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 {Opt_bs, "bs=%u"},
145 {Opt_mode, "mode=%o"},
146 {Opt_mufs, "mufs"},
147 {Opt_prefix, "prefix=%s"},
148 {Opt_protect, "protect"},
149 {Opt_reserved, "reserved=%u"},
150 {Opt_root, "root=%u"},
151 {Opt_setgid, "setgid=%u"},
152 {Opt_setuid, "setuid=%u"},
153 {Opt_verbose, "verbose"},
154 {Opt_volume, "volume=%s"},
155 {Opt_ignore, "grpquota"},
156 {Opt_ignore, "noquota"},
157 {Opt_ignore, "quota"},
158 {Opt_ignore, "usrquota"},
159 {Opt_err, NULL},
160};
161
162static int
163parse_options(char *options, uid_t *uid, gid_t *gid, int *mode, int *reserved, s32 *root,
164 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts)
165{
166 char *p;
167 substring_t args[MAX_OPT_ARGS];
168
169 /* Fill in defaults */
170
David Howells21559982008-11-14 10:38:45 +1100171 *uid = current_uid();
172 *gid = current_gid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *reserved = 2;
174 *root = -1;
175 *blocksize = -1;
176 volume[0] = ':';
177 volume[1] = 0;
178 *mount_opts = 0;
179 if (!options)
180 return 1;
181
182 while ((p = strsep(&options, ",")) != NULL) {
183 int token, n, option;
184 if (!*p)
185 continue;
186
187 token = match_token(p, tokens, args);
188 switch (token) {
189 case Opt_bs:
190 if (match_int(&args[0], &n))
191 return -EINVAL;
192 if (n != 512 && n != 1024 && n != 2048
193 && n != 4096) {
194 printk ("AFFS: Invalid blocksize (512, 1024, 2048, 4096 allowed)\n");
195 return 0;
196 }
197 *blocksize = n;
198 break;
199 case Opt_mode:
200 if (match_octal(&args[0], &option))
201 return 1;
202 *mode = option & 0777;
203 *mount_opts |= SF_SETMODE;
204 break;
205 case Opt_mufs:
206 *mount_opts |= SF_MUFS;
207 break;
208 case Opt_prefix:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800209 /* Free any previous prefix */
210 kfree(*prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 *prefix = match_strdup(&args[0]);
212 if (!*prefix)
213 return 0;
214 *mount_opts |= SF_PREFIX;
215 break;
216 case Opt_protect:
217 *mount_opts |= SF_IMMUTABLE;
218 break;
219 case Opt_reserved:
220 if (match_int(&args[0], reserved))
221 return 1;
222 break;
223 case Opt_root:
224 if (match_int(&args[0], root))
225 return 1;
226 break;
227 case Opt_setgid:
228 if (match_int(&args[0], &option))
229 return 1;
230 *gid = option;
231 *mount_opts |= SF_SETGID;
232 break;
233 case Opt_setuid:
234 if (match_int(&args[0], &option))
235 return -EINVAL;
236 *uid = option;
237 *mount_opts |= SF_SETUID;
238 break;
239 case Opt_verbose:
240 *mount_opts |= SF_VERBOSE;
241 break;
242 case Opt_volume: {
243 char *vol = match_strdup(&args[0]);
Jim Meyering6db27dd2008-04-29 00:59:06 -0700244 if (!vol)
245 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 strlcpy(volume, vol, 32);
247 kfree(vol);
248 break;
249 }
250 case Opt_ignore:
251 /* Silently ignore the quota options */
252 break;
253 default:
254 printk("AFFS: Unrecognized mount option \"%s\" "
255 "or missing value\n", p);
256 return 0;
257 }
258 }
259 return 1;
260}
261
262/* This function definitely needs to be split up. Some fine day I'll
263 * hopefully have the guts to do so. Until then: sorry for the mess.
264 */
265
266static int affs_fill_super(struct super_block *sb, void *data, int silent)
267{
268 struct affs_sb_info *sbi;
269 struct buffer_head *root_bh = NULL;
270 struct buffer_head *boot_bh;
271 struct inode *root_inode = NULL;
272 s32 root_block;
273 int size, blocksize;
274 u32 chksum;
275 int num_bm;
276 int i, j;
277 s32 key;
278 uid_t uid;
279 gid_t gid;
280 int reserved;
281 unsigned long mount_flags;
282 int tmp_flags; /* fix remount prototype... */
Al Viro2b943cf2006-06-25 05:49:08 -0700283 u8 sig[4];
David Howells210f8552008-02-07 00:15:29 -0800284 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Miklos Szeredie9b39612008-02-08 04:21:36 -0800286 save_mount_options(sb, data);
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 pr_debug("AFFS: read_super(%s)\n",data ? (const char *)data : "no options");
289
290 sb->s_magic = AFFS_SUPER_MAGIC;
291 sb->s_op = &affs_sops;
292 sb->s_flags |= MS_NODIRATIME;
293
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700294 sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (!sbi)
296 return -ENOMEM;
297 sb->s_fs_info = sbi;
Matthias Kaehlcke7d135a52008-07-25 19:44:51 -0700298 mutex_init(&sbi->s_bmlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block,
301 &blocksize,&sbi->s_prefix,
302 sbi->s_volume, &mount_flags)) {
303 printk(KERN_ERR "AFFS: Error parsing options\n");
304 return -EINVAL;
305 }
306 /* N.B. after this point s_prefix must be released */
307
308 sbi->s_flags = mount_flags;
309 sbi->s_mode = i;
310 sbi->s_uid = uid;
311 sbi->s_gid = gid;
312 sbi->s_reserved= reserved;
313
314 /* Get the size of the device in 512-byte blocks.
315 * If we later see that the partition uses bigger
316 * blocks, we will have to change it.
317 */
318
319 size = sb->s_bdev->bd_inode->i_size >> 9;
320 pr_debug("AFFS: initial blocksize=%d, #blocks=%d\n", 512, size);
321
322 affs_set_blocksize(sb, PAGE_SIZE);
323 /* Try to find root block. Its location depends on the block size. */
324
325 i = 512;
326 j = 4096;
327 if (blocksize > 0) {
328 i = j = blocksize;
329 size = size / (blocksize / 512);
330 }
331 for (blocksize = i, key = 0; blocksize <= j; blocksize <<= 1, size >>= 1) {
332 sbi->s_root_block = root_block;
333 if (root_block < 0)
334 sbi->s_root_block = (reserved + size - 1) / 2;
335 pr_debug("AFFS: setting blocksize to %d\n", blocksize);
336 affs_set_blocksize(sb, blocksize);
337 sbi->s_partition_size = size;
338
339 /* The root block location that was calculated above is not
340 * correct if the partition size is an odd number of 512-
341 * byte blocks, which will be rounded down to a number of
342 * 1024-byte blocks, and if there were an even number of
343 * reserved blocks. Ideally, all partition checkers should
344 * report the real number of blocks of the real blocksize,
345 * but since this just cannot be done, we have to try to
346 * find the root block anyways. In the above case, it is one
347 * block behind the calculated one. So we check this one, too.
348 */
349 for (num_bm = 0; num_bm < 2; num_bm++) {
350 pr_debug("AFFS: Dev %s, trying root=%u, bs=%d, "
351 "size=%d, reserved=%d\n",
352 sb->s_id,
353 sbi->s_root_block + num_bm,
354 blocksize, size, reserved);
355 root_bh = affs_bread(sb, sbi->s_root_block + num_bm);
356 if (!root_bh)
357 continue;
358 if (!affs_checksum_block(sb, root_bh) &&
359 be32_to_cpu(AFFS_ROOT_HEAD(root_bh)->ptype) == T_SHORT &&
360 be32_to_cpu(AFFS_ROOT_TAIL(sb, root_bh)->stype) == ST_ROOT) {
361 sbi->s_hashsize = blocksize / 4 - 56;
362 sbi->s_root_block += num_bm;
363 key = 1;
364 goto got_root;
365 }
366 affs_brelse(root_bh);
367 root_bh = NULL;
368 }
369 }
370 if (!silent)
371 printk(KERN_ERR "AFFS: No valid root block on device %s\n",
372 sb->s_id);
373 goto out_error;
374
375 /* N.B. after this point bh must be released */
376got_root:
377 root_block = sbi->s_root_block;
378
379 /* Find out which kind of FS we have */
380 boot_bh = sb_bread(sb, 0);
381 if (!boot_bh) {
382 printk(KERN_ERR "AFFS: Cannot read boot block\n");
383 goto out_error;
384 }
Al Viro2b943cf2006-06-25 05:49:08 -0700385 memcpy(sig, boot_bh->b_data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 brelse(boot_bh);
Al Viro2b943cf2006-06-25 05:49:08 -0700387 chksum = be32_to_cpu(*(__be32 *)sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 /* Dircache filesystems are compatible with non-dircache ones
390 * when reading. As long as they aren't supported, writing is
391 * not recommended.
392 */
393 if ((chksum == FS_DCFFS || chksum == MUFS_DCFFS || chksum == FS_DCOFS
394 || chksum == MUFS_DCOFS) && !(sb->s_flags & MS_RDONLY)) {
395 printk(KERN_NOTICE "AFFS: Dircache FS - mounting %s read only\n",
396 sb->s_id);
397 sb->s_flags |= MS_RDONLY;
398 }
399 switch (chksum) {
400 case MUFS_FS:
401 case MUFS_INTLFFS:
402 case MUFS_DCFFS:
403 sbi->s_flags |= SF_MUFS;
404 /* fall thru */
405 case FS_INTLFFS:
406 case FS_DCFFS:
407 sbi->s_flags |= SF_INTL;
408 break;
409 case MUFS_FFS:
410 sbi->s_flags |= SF_MUFS;
411 break;
412 case FS_FFS:
413 break;
414 case MUFS_OFS:
415 sbi->s_flags |= SF_MUFS;
416 /* fall thru */
417 case FS_OFS:
418 sbi->s_flags |= SF_OFS;
419 sb->s_flags |= MS_NOEXEC;
420 break;
421 case MUFS_DCOFS:
422 case MUFS_INTLOFS:
423 sbi->s_flags |= SF_MUFS;
424 case FS_DCOFS:
425 case FS_INTLOFS:
426 sbi->s_flags |= SF_INTL | SF_OFS;
427 sb->s_flags |= MS_NOEXEC;
428 break;
429 default:
430 printk(KERN_ERR "AFFS: Unknown filesystem on device %s: %08X\n",
431 sb->s_id, chksum);
432 goto out_error;
433 }
434
435 if (mount_flags & SF_VERBOSE) {
Al Viro2b943cf2006-06-25 05:49:08 -0700436 u8 len = AFFS_ROOT_TAIL(sb, root_bh)->disk_name[0];
437 printk(KERN_NOTICE "AFFS: Mounting volume \"%.*s\": Type=%.3s\\%c, Blocksize=%d\n",
438 len > 31 ? 31 : len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 AFFS_ROOT_TAIL(sb, root_bh)->disk_name + 1,
Al Viro2b943cf2006-06-25 05:49:08 -0700440 sig, sig[3] + '0', blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 sb->s_flags |= MS_NODEV | MS_NOSUID;
444
445 sbi->s_data_blksize = sb->s_blocksize;
446 if (sbi->s_flags & SF_OFS)
447 sbi->s_data_blksize -= 24;
448
449 /* Keep super block in cache */
450 sbi->s_root_bh = root_bh;
451 /* N.B. after this point s_root_bh must be released */
452
453 tmp_flags = sb->s_flags;
454 if (affs_init_bitmap(sb, &tmp_flags))
455 goto out_error;
456 sb->s_flags = tmp_flags;
457
458 /* set up enough so that it can read an inode */
459
David Howells210f8552008-02-07 00:15:29 -0800460 root_inode = affs_iget(sb, root_block);
461 if (IS_ERR(root_inode)) {
462 ret = PTR_ERR(root_inode);
463 goto out_error_noinode;
464 }
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 sb->s_root = d_alloc_root(root_inode);
467 if (!sb->s_root) {
468 printk(KERN_ERR "AFFS: Get root inode failed\n");
469 goto out_error;
470 }
471 sb->s_root->d_op = &affs_dentry_operations;
472
473 pr_debug("AFFS: s_flags=%lX\n",sb->s_flags);
474 return 0;
475
476 /*
477 * Begin the cascaded cleanup ...
478 */
479out_error:
480 if (root_inode)
481 iput(root_inode);
David Howells210f8552008-02-07 00:15:29 -0800482out_error_noinode:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800483 kfree(sbi->s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 affs_brelse(root_bh);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800485 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 kfree(sbi);
487 sb->s_fs_info = NULL;
David Howells210f8552008-02-07 00:15:29 -0800488 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
491static int
492affs_remount(struct super_block *sb, int *flags, char *data)
493{
494 struct affs_sb_info *sbi = AFFS_SB(sb);
495 int blocksize;
496 uid_t uid;
497 gid_t gid;
498 int mode;
499 int reserved;
500 int root_block;
501 unsigned long mount_flags;
502 int res = 0;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800503 char *new_opts = kstrdup(data, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags,data);
506
507 *flags |= MS_NODIRATIME;
508
Miklos Szeredie9b39612008-02-08 04:21:36 -0800509 if (!parse_options(data, &uid, &gid, &mode, &reserved, &root_block,
510 &blocksize, &sbi->s_prefix, sbi->s_volume,
511 &mount_flags)) {
512 kfree(new_opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return -EINVAL;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800514 }
Al Viro2a32ceb2009-05-08 16:05:57 -0400515 replace_mount_options(sb, new_opts);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 sbi->s_flags = mount_flags;
518 sbi->s_mode = mode;
519 sbi->s_uid = uid;
520 sbi->s_gid = gid;
521
522 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
523 return 0;
524 if (*flags & MS_RDONLY) {
525 sb->s_dirt = 1;
526 while (sb->s_dirt)
527 affs_write_super(sb);
528 affs_free_bitmap(sb);
529 } else
530 res = affs_init_bitmap(sb, flags);
531
532 return res;
533}
534
535static int
David Howells726c3342006-06-23 02:02:58 -0700536affs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
David Howells726c3342006-06-23 02:02:58 -0700538 struct super_block *sb = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 int free;
Coly Lia6a2a732009-04-02 16:59:32 -0700540 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 pr_debug("AFFS: statfs() partsize=%d, reserved=%d\n",AFFS_SB(sb)->s_partition_size,
543 AFFS_SB(sb)->s_reserved);
544
545 free = affs_count_free_blocks(sb);
546 buf->f_type = AFFS_SUPER_MAGIC;
547 buf->f_bsize = sb->s_blocksize;
548 buf->f_blocks = AFFS_SB(sb)->s_partition_size - AFFS_SB(sb)->s_reserved;
549 buf->f_bfree = free;
550 buf->f_bavail = free;
Coly Lia6a2a732009-04-02 16:59:32 -0700551 buf->f_fsid.val[0] = (u32)id;
552 buf->f_fsid.val[1] = (u32)(id >> 32);
553 buf->f_namelen = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return 0;
555}
556
David Howells454e2392006-06-23 02:02:57 -0700557static int affs_get_sb(struct file_system_type *fs_type,
558 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
David Howells454e2392006-06-23 02:02:57 -0700560 return get_sb_bdev(fs_type, flags, dev_name, data, affs_fill_super,
561 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564static struct file_system_type affs_fs_type = {
565 .owner = THIS_MODULE,
566 .name = "affs",
567 .get_sb = affs_get_sb,
568 .kill_sb = kill_block_super,
569 .fs_flags = FS_REQUIRES_DEV,
570};
571
572static int __init init_affs_fs(void)
573{
574 int err = init_inodecache();
575 if (err)
576 goto out1;
577 err = register_filesystem(&affs_fs_type);
578 if (err)
579 goto out;
580 return 0;
581out:
582 destroy_inodecache();
583out1:
584 return err;
585}
586
587static void __exit exit_affs_fs(void)
588{
589 unregister_filesystem(&affs_fs_type);
590 destroy_inodecache();
591}
592
593MODULE_DESCRIPTION("Amiga filesystem support for Linux");
594MODULE_LICENSE("GPL");
595
596module_init(init_affs_fs)
597module_exit(exit_affs_fs)