diff options
Diffstat (limited to 'fs/qnx4')
| -rw-r--r-- | fs/qnx4/bitmap.c | 1 | ||||
| -rw-r--r-- | fs/qnx4/dir.c | 1 | ||||
| -rw-r--r-- | fs/qnx4/fsync.c | 1 | ||||
| -rw-r--r-- | fs/qnx4/inode.c | 11 | ||||
| -rw-r--r-- | fs/qnx4/namei.c | 1 | ||||
| -rw-r--r-- | fs/qnx4/truncate.c | 1 |
6 files changed, 3 insertions, 13 deletions
diff --git a/fs/qnx4/bitmap.c b/fs/qnx4/bitmap.c index 46efbf52cbec..8425cf6e9624 100644 --- a/fs/qnx4/bitmap.c +++ b/fs/qnx4/bitmap.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | * 28-06-1998 by Frank Denis : qnx4_free_inode (to be fixed) . | 13 | * 28-06-1998 by Frank Denis : qnx4_free_inode (to be fixed) . |
| 14 | */ | 14 | */ |
| 15 | 15 | ||
| 16 | #include <linux/config.h> | ||
| 17 | #include <linux/time.h> | 16 | #include <linux/time.h> |
| 18 | #include <linux/fs.h> | 17 | #include <linux/fs.h> |
| 19 | #include <linux/qnx4_fs.h> | 18 | #include <linux/qnx4_fs.h> |
diff --git a/fs/qnx4/dir.c b/fs/qnx4/dir.c index 9031948fefd0..0d7103fa0df5 100644 --- a/fs/qnx4/dir.c +++ b/fs/qnx4/dir.c | |||
| @@ -11,7 +11,6 @@ | |||
| 11 | * 20-06-1998 by Frank Denis : Linux 2.1.99+ & dcache support. | 11 | * 20-06-1998 by Frank Denis : Linux 2.1.99+ & dcache support. |
| 12 | */ | 12 | */ |
| 13 | 13 | ||
| 14 | #include <linux/config.h> | ||
| 15 | #include <linux/string.h> | 14 | #include <linux/string.h> |
| 16 | #include <linux/errno.h> | 15 | #include <linux/errno.h> |
| 17 | #include <linux/fs.h> | 16 | #include <linux/fs.h> |
diff --git a/fs/qnx4/fsync.c b/fs/qnx4/fsync.c index df5bc75d5414..aa3b19544bee 100644 --- a/fs/qnx4/fsync.c +++ b/fs/qnx4/fsync.c | |||
| @@ -10,7 +10,6 @@ | |||
| 10 | * 24-03-1998 by Richard Frowijn : first release. | 10 | * 24-03-1998 by Richard Frowijn : first release. |
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #include <linux/config.h> | ||
| 14 | #include <linux/errno.h> | 13 | #include <linux/errno.h> |
| 15 | #include <linux/time.h> | 14 | #include <linux/time.h> |
| 16 | #include <linux/stat.h> | 15 | #include <linux/stat.h> |
diff --git a/fs/qnx4/inode.c b/fs/qnx4/inode.c index 2f24c46f72a1..5a41db2a218d 100644 --- a/fs/qnx4/inode.c +++ b/fs/qnx4/inode.c | |||
| @@ -12,7 +12,6 @@ | |||
| 12 | * 30-06-1998 by Frank Denis : first step to write inodes. | 12 | * 30-06-1998 by Frank Denis : first step to write inodes. |
| 13 | */ | 13 | */ |
| 14 | 14 | ||
| 15 | #include <linux/config.h> | ||
| 16 | #include <linux/module.h> | 15 | #include <linux/module.h> |
| 17 | #include <linux/types.h> | 16 | #include <linux/types.h> |
| 18 | #include <linux/string.h> | 17 | #include <linux/string.h> |
| @@ -359,11 +358,10 @@ static int qnx4_fill_super(struct super_block *s, void *data, int silent) | |||
| 359 | const char *errmsg; | 358 | const char *errmsg; |
| 360 | struct qnx4_sb_info *qs; | 359 | struct qnx4_sb_info *qs; |
| 361 | 360 | ||
| 362 | qs = kmalloc(sizeof(struct qnx4_sb_info), GFP_KERNEL); | 361 | qs = kzalloc(sizeof(struct qnx4_sb_info), GFP_KERNEL); |
| 363 | if (!qs) | 362 | if (!qs) |
| 364 | return -ENOMEM; | 363 | return -ENOMEM; |
| 365 | s->s_fs_info = qs; | 364 | s->s_fs_info = qs; |
| 366 | memset(qs, 0, sizeof(struct qnx4_sb_info)); | ||
| 367 | 365 | ||
| 368 | sb_set_blocksize(s, QNX4_BLOCK_SIZE); | 366 | sb_set_blocksize(s, QNX4_BLOCK_SIZE); |
| 369 | 367 | ||
| @@ -450,7 +448,7 @@ static sector_t qnx4_bmap(struct address_space *mapping, sector_t block) | |||
| 450 | { | 448 | { |
| 451 | return generic_block_bmap(mapping,block,qnx4_get_block); | 449 | return generic_block_bmap(mapping,block,qnx4_get_block); |
| 452 | } | 450 | } |
| 453 | static struct address_space_operations qnx4_aops = { | 451 | static const struct address_space_operations qnx4_aops = { |
| 454 | .readpage = qnx4_readpage, | 452 | .readpage = qnx4_readpage, |
| 455 | .writepage = qnx4_writepage, | 453 | .writepage = qnx4_writepage, |
| 456 | .sync_page = block_sync_page, | 454 | .sync_page = block_sync_page, |
| @@ -498,7 +496,6 @@ static void qnx4_read_inode(struct inode *inode) | |||
| 498 | inode->i_ctime.tv_sec = le32_to_cpu(raw_inode->di_ctime); | 496 | inode->i_ctime.tv_sec = le32_to_cpu(raw_inode->di_ctime); |
| 499 | inode->i_ctime.tv_nsec = 0; | 497 | inode->i_ctime.tv_nsec = 0; |
| 500 | inode->i_blocks = le32_to_cpu(raw_inode->di_first_xtnt.xtnt_size); | 498 | inode->i_blocks = le32_to_cpu(raw_inode->di_first_xtnt.xtnt_size); |
| 501 | inode->i_blksize = QNX4_DIR_ENTRY_SIZE; | ||
| 502 | 499 | ||
| 503 | memcpy(qnx4_inode, raw_inode, QNX4_DIR_ENTRY_SIZE); | 500 | memcpy(qnx4_inode, raw_inode, QNX4_DIR_ENTRY_SIZE); |
| 504 | if (S_ISREG(inode->i_mode)) { | 501 | if (S_ISREG(inode->i_mode)) { |
| @@ -558,9 +555,7 @@ static int init_inodecache(void) | |||
| 558 | 555 | ||
| 559 | static void destroy_inodecache(void) | 556 | static void destroy_inodecache(void) |
| 560 | { | 557 | { |
| 561 | if (kmem_cache_destroy(qnx4_inode_cachep)) | 558 | kmem_cache_destroy(qnx4_inode_cachep); |
| 562 | printk(KERN_INFO | ||
| 563 | "qnx4_inode_cache: not all structures were freed\n"); | ||
| 564 | } | 559 | } |
| 565 | 560 | ||
| 566 | static int qnx4_get_sb(struct file_system_type *fs_type, | 561 | static int qnx4_get_sb(struct file_system_type *fs_type, |
diff --git a/fs/qnx4/namei.c b/fs/qnx4/namei.c index 4af4951d7f54..c3d83f67154a 100644 --- a/fs/qnx4/namei.c +++ b/fs/qnx4/namei.c | |||
| @@ -12,7 +12,6 @@ | |||
| 12 | * 04-07-1998 by Frank Denis : first step for rmdir/unlink. | 12 | * 04-07-1998 by Frank Denis : first step for rmdir/unlink. |
| 13 | */ | 13 | */ |
| 14 | 14 | ||
| 15 | #include <linux/config.h> | ||
| 16 | #include <linux/time.h> | 15 | #include <linux/time.h> |
| 17 | #include <linux/fs.h> | 16 | #include <linux/fs.h> |
| 18 | #include <linux/qnx4_fs.h> | 17 | #include <linux/qnx4_fs.h> |
diff --git a/fs/qnx4/truncate.c b/fs/qnx4/truncate.c index 86563ec01b39..6437c1c3d1dd 100644 --- a/fs/qnx4/truncate.c +++ b/fs/qnx4/truncate.c | |||
| @@ -10,7 +10,6 @@ | |||
| 10 | * 30-06-1998 by Frank DENIS : ugly filler. | 10 | * 30-06-1998 by Frank DENIS : ugly filler. |
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #include <linux/config.h> | ||
| 14 | #include <linux/types.h> | 13 | #include <linux/types.h> |
| 15 | #include <linux/errno.h> | 14 | #include <linux/errno.h> |
| 16 | #include <linux/fs.h> | 15 | #include <linux/fs.h> |
