 3ae5080f4c
			
		
	
	
	3ae5080f4c
	
	
	
		
			
			* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6: (37 commits) fs: avoid I_NEW inodes Merge code for single and multiple-instance mounts Remove get_init_pts_sb() Move common mknod_ptmx() calls into caller Parse mount options just once and copy them to super block Unroll essentials of do_remount_sb() into devpts vfs: simple_set_mnt() should return void fs: move bdev code out of buffer.c constify dentry_operations: rest constify dentry_operations: configfs constify dentry_operations: sysfs constify dentry_operations: JFS constify dentry_operations: OCFS2 constify dentry_operations: GFS2 constify dentry_operations: FAT constify dentry_operations: FUSE constify dentry_operations: procfs constify dentry_operations: ecryptfs constify dentry_operations: CIFS constify dentry_operations: AFS ...
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.7 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.7 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
 | |
|  * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
 | |
|  *
 | |
|  * This copyrighted material is made available to anyone wishing to use,
 | |
|  * modify, copy, or redistribute it subject to the terms and conditions
 | |
|  * of the GNU General Public License version 2.
 | |
|  */
 | |
| 
 | |
| #ifndef __SUPER_DOT_H__
 | |
| #define __SUPER_DOT_H__
 | |
| 
 | |
| #include <linux/fs.h>
 | |
| #include <linux/dcache.h>
 | |
| #include "incore.h"
 | |
| 
 | |
| extern void gfs2_lm_unmount(struct gfs2_sbd *sdp);
 | |
| 
 | |
| static inline unsigned int gfs2_jindex_size(struct gfs2_sbd *sdp)
 | |
| {
 | |
| 	unsigned int x;
 | |
| 	spin_lock(&sdp->sd_jindex_spin);
 | |
| 	x = sdp->sd_journals;
 | |
| 	spin_unlock(&sdp->sd_jindex_spin);
 | |
| 	return x;
 | |
| }
 | |
| 
 | |
| void gfs2_jindex_free(struct gfs2_sbd *sdp);
 | |
| 
 | |
| extern int gfs2_mount_args(struct gfs2_sbd *sdp, struct gfs2_args *args, char *data);
 | |
| 
 | |
| extern struct gfs2_jdesc *gfs2_jdesc_find(struct gfs2_sbd *sdp, unsigned int jid);
 | |
| extern int gfs2_jdesc_check(struct gfs2_jdesc *jd);
 | |
| 
 | |
| extern int gfs2_lookup_in_master_dir(struct gfs2_sbd *sdp, char *filename,
 | |
| 				     struct gfs2_inode **ipp);
 | |
| 
 | |
| extern int gfs2_make_fs_rw(struct gfs2_sbd *sdp);
 | |
| 
 | |
| extern int gfs2_statfs_init(struct gfs2_sbd *sdp);
 | |
| extern void gfs2_statfs_change(struct gfs2_sbd *sdp, s64 total, s64 free,
 | |
| 			       s64 dinodes);
 | |
| extern int gfs2_statfs_sync(struct gfs2_sbd *sdp);
 | |
| 
 | |
| extern int gfs2_freeze_fs(struct gfs2_sbd *sdp);
 | |
| extern void gfs2_unfreeze_fs(struct gfs2_sbd *sdp);
 | |
| 
 | |
| extern struct file_system_type gfs2_fs_type;
 | |
| extern struct file_system_type gfs2meta_fs_type;
 | |
| extern const struct export_operations gfs2_export_ops;
 | |
| extern const struct super_operations gfs2_super_ops;
 | |
| extern const struct dentry_operations gfs2_dops;
 | |
| 
 | |
| #endif /* __SUPER_DOT_H__ */
 | |
| 
 |