GFS2: Rationalise header files
[deliverable/linux.git] / fs / gfs2 / super.h
CommitLineData
b3b94faa
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3a8a9a10 3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
b3b94faa
DT
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
e9fc2aa0 7 * of the GNU General Public License version 2.
b3b94faa
DT
8 */
9
10#ifndef __SUPER_DOT_H__
11#define __SUPER_DOT_H__
12
b2760583
SW
13#include <linux/fs.h>
14#include <linux/dcache.h>
f2f7ba52
SW
15#include "incore.h"
16
da755fdb 17void gfs2_lm_unmount(struct gfs2_sbd *sdp);
b3b94faa
DT
18
19static inline unsigned int gfs2_jindex_size(struct gfs2_sbd *sdp)
20{
21 unsigned int x;
22 spin_lock(&sdp->sd_jindex_spin);
23 x = sdp->sd_journals;
24 spin_unlock(&sdp->sd_jindex_spin);
25 return x;
26}
27
28int gfs2_jindex_hold(struct gfs2_sbd *sdp, struct gfs2_holder *ji_gh);
29void gfs2_jindex_free(struct gfs2_sbd *sdp);
30
31struct gfs2_jdesc *gfs2_jdesc_find(struct gfs2_sbd *sdp, unsigned int jid);
32void gfs2_jdesc_make_dirty(struct gfs2_sbd *sdp, unsigned int jid);
33struct gfs2_jdesc *gfs2_jdesc_find_dirty(struct gfs2_sbd *sdp);
34int gfs2_jdesc_check(struct gfs2_jdesc *jd);
35
b3b94faa
DT
36int gfs2_lookup_in_master_dir(struct gfs2_sbd *sdp, char *filename,
37 struct gfs2_inode **ipp);
38
39int gfs2_make_fs_rw(struct gfs2_sbd *sdp);
b3b94faa
DT
40
41int gfs2_statfs_init(struct gfs2_sbd *sdp);
42void gfs2_statfs_change(struct gfs2_sbd *sdp,
cd915493 43 s64 total, s64 free, s64 dinodes);
b3b94faa 44int gfs2_statfs_sync(struct gfs2_sbd *sdp);
bd209cc0
AV
45int gfs2_statfs_i(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc);
46int gfs2_statfs_slow(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc);
b3b94faa 47
b3b94faa
DT
48int gfs2_freeze_fs(struct gfs2_sbd *sdp);
49void gfs2_unfreeze_fs(struct gfs2_sbd *sdp);
50
b2760583
SW
51extern struct file_system_type gfs2_fs_type;
52extern struct file_system_type gfs2meta_fs_type;
53extern const struct export_operations gfs2_export_ops;
54extern const struct super_operations gfs2_super_ops;
55extern struct dentry_operations gfs2_dops;
56
b3b94faa
DT
57#endif /* __SUPER_DOT_H__ */
58
This page took 0.239343 seconds and 5 git commands to generate.