aboutsummaryrefslogtreecommitdiffstats
path: root/fs/affs
diff options
context:
space:
mode:
Diffstat (limited to 'fs/affs')
-rw-r--r--fs/affs/affs.h1
-rw-r--r--fs/affs/file.c6
-rw-r--r--fs/affs/super.c7
3 files changed, 7 insertions, 7 deletions
diff --git a/fs/affs/affs.h b/fs/affs/affs.h
index 0ddd4cc0d1..1dc8438ef3 100644
--- a/fs/affs/affs.h
+++ b/fs/affs/affs.h
@@ -1,7 +1,6 @@
1#include <linux/types.h> 1#include <linux/types.h>
2#include <linux/fs.h> 2#include <linux/fs.h>
3#include <linux/buffer_head.h> 3#include <linux/buffer_head.h>
4#include <linux/affs_fs.h>
5#include <linux/amigaffs.h> 4#include <linux/amigaffs.h>
6 5
7/* AmigaOS allows file names with up to 30 characters length. 6/* AmigaOS allows file names with up to 30 characters length.
diff --git a/fs/affs/file.c b/fs/affs/file.c
index 3de8590e4f..05b5e22de7 100644
--- a/fs/affs/file.c
+++ b/fs/affs/file.c
@@ -27,8 +27,10 @@ static int affs_file_release(struct inode *inode, struct file *filp);
27 27
28const struct file_operations affs_file_operations = { 28const struct file_operations affs_file_operations = {
29 .llseek = generic_file_llseek, 29 .llseek = generic_file_llseek,
30 .read = generic_file_read, 30 .read = do_sync_read,
31 .write = generic_file_write, 31 .aio_read = generic_file_aio_read,
32 .write = do_sync_write,
33 .aio_write = generic_file_aio_write,
32 .mmap = generic_file_mmap, 34 .mmap = generic_file_mmap,
33 .open = affs_file_open, 35 .open = affs_file_open,
34 .release = affs_file_release, 36 .release = affs_file_release,
diff --git a/fs/affs/super.c b/fs/affs/super.c
index 5200f4938d..5ea72c3a16 100644
--- a/fs/affs/super.c
+++ b/fs/affs/super.c
@@ -14,6 +14,7 @@
14#include <linux/init.h> 14#include <linux/init.h>
15#include <linux/statfs.h> 15#include <linux/statfs.h>
16#include <linux/parser.h> 16#include <linux/parser.h>
17#include <linux/magic.h>
17#include "affs.h" 18#include "affs.h"
18 19
19extern struct timezone sys_tz; 20extern struct timezone sys_tz;
@@ -108,8 +109,7 @@ static int init_inodecache(void)
108 109
109static void destroy_inodecache(void) 110static void destroy_inodecache(void)
110{ 111{
111 if (kmem_cache_destroy(affs_inode_cachep)) 112 kmem_cache_destroy(affs_inode_cachep);
112 printk(KERN_INFO "affs_inode_cache: not all structures were freed\n");
113} 113}
114 114
115static struct super_operations affs_sops = { 115static struct super_operations affs_sops = {
@@ -279,11 +279,10 @@ static int affs_fill_super(struct super_block *sb, void *data, int silent)
279 sb->s_op = &affs_sops; 279 sb->s_op = &affs_sops;
280 sb->s_flags |= MS_NODIRATIME; 280 sb->s_flags |= MS_NODIRATIME;
281 281
282 sbi = kmalloc(sizeof(struct affs_sb_info), GFP_KERNEL); 282 sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
283 if (!sbi) 283 if (!sbi)
284 return -ENOMEM; 284 return -ENOMEM;
285 sb->s_fs_info = sbi; 285 sb->s_fs_info = sbi;
286 memset(sbi, 0, sizeof(*sbi));
287 init_MUTEX(&sbi->s_bmlock); 286 init_MUTEX(&sbi->s_bmlock);
288 287
289 if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block, 288 if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block,