inode.c (0a1340c185734a57fbf4775927966ad4a1347b02) inode.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b)
1/*
2 * Super block/filesystem wide operations
3 *
4 * Copyright (C) 1996 Peter J. Braam <braam@maths.ox.ac.uk> and
5 * Michael Callahan <callahan@maths.ox.ac.uk>
6 *
7 * Rewritten for Linux 2.1. Peter Braam <braam@cs.cmu.edu>
8 * Copyright (C) Carnegie Mellon University

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

75 init_once, NULL);
76 if (coda_inode_cachep == NULL)
77 return -ENOMEM;
78 return 0;
79}
80
81void coda_destroy_inodecache(void)
82{
1/*
2 * Super block/filesystem wide operations
3 *
4 * Copyright (C) 1996 Peter J. Braam <braam@maths.ox.ac.uk> and
5 * Michael Callahan <callahan@maths.ox.ac.uk>
6 *
7 * Rewritten for Linux 2.1. Peter Braam <braam@cs.cmu.edu>
8 * Copyright (C) Carnegie Mellon University

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

75 init_once, NULL);
76 if (coda_inode_cachep == NULL)
77 return -ENOMEM;
78 return 0;
79}
80
81void coda_destroy_inodecache(void)
82{
83 if (kmem_cache_destroy(coda_inode_cachep))
84 printk(KERN_INFO "coda_inode_cache: not all structures were freed\n");
83 kmem_cache_destroy(coda_inode_cachep);
85}
86
87static int coda_remount(struct super_block *sb, int *flags, char *data)
88{
89 *flags |= MS_NODIRATIME;
90 return 0;
91}
92

--- 231 unchanged lines hidden ---
84}
85
86static int coda_remount(struct super_block *sb, int *flags, char *data)
87{
88 *flags |= MS_NODIRATIME;
89 return 0;
90}
91

--- 231 unchanged lines hidden ---