inode.c (f8314dc60ccba7e41f425048c4160dc7f63377d5) inode.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b)
1/*
2 * QNX4 file system, Linux implementation.
3 *
4 * Version : 0.2.1
5 *
6 * Using parts of the xiafs filesystem.
7 *
8 * History :

--- 542 unchanged lines hidden (view full) ---

551 init_once, NULL);
552 if (qnx4_inode_cachep == NULL)
553 return -ENOMEM;
554 return 0;
555}
556
557static void destroy_inodecache(void)
558{
1/*
2 * QNX4 file system, Linux implementation.
3 *
4 * Version : 0.2.1
5 *
6 * Using parts of the xiafs filesystem.
7 *
8 * History :

--- 542 unchanged lines hidden (view full) ---

551 init_once, NULL);
552 if (qnx4_inode_cachep == NULL)
553 return -ENOMEM;
554 return 0;
555}
556
557static void destroy_inodecache(void)
558{
559 if (kmem_cache_destroy(qnx4_inode_cachep))
560 printk(KERN_INFO
561 "qnx4_inode_cache: not all structures were freed\n");
559 kmem_cache_destroy(qnx4_inode_cachep);
562}
563
564static int qnx4_get_sb(struct file_system_type *fs_type,
565 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
566{
567 return get_sb_bdev(fs_type, flags, dev_name, data, qnx4_fill_super,
568 mnt);
569}

--- 37 unchanged lines hidden ---
560}
561
562static int qnx4_get_sb(struct file_system_type *fs_type,
563 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
564{
565 return get_sb_bdev(fs_type, flags, dev_name, data, qnx4_fill_super,
566 mnt);
567}

--- 37 unchanged lines hidden ---