|
@@ -10,6 +10,7 @@
|
|
#ifndef __INODE_DOT_H__
|
|
#ifndef __INODE_DOT_H__
|
|
#define __INODE_DOT_H__
|
|
#define __INODE_DOT_H__
|
|
|
|
|
|
|
|
+#include <linux/fs.h>
|
|
#include "util.h"
|
|
#include "util.h"
|
|
|
|
|
|
static inline int gfs2_is_stuffed(const struct gfs2_inode *ip)
|
|
static inline int gfs2_is_stuffed(const struct gfs2_inode *ip)
|
|
@@ -97,5 +98,15 @@ struct inode *gfs2_lookup_simple(struct inode *dip, const char *name);
|
|
void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf);
|
|
void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf);
|
|
void gfs2_dinode_print(const struct gfs2_inode *ip);
|
|
void gfs2_dinode_print(const struct gfs2_inode *ip);
|
|
|
|
|
|
|
|
+extern const struct inode_operations gfs2_file_iops;
|
|
|
|
+extern const struct inode_operations gfs2_dir_iops;
|
|
|
|
+extern const struct inode_operations gfs2_symlink_iops;
|
|
|
|
+extern const struct file_operations gfs2_file_fops;
|
|
|
|
+extern const struct file_operations gfs2_dir_fops;
|
|
|
|
+extern const struct file_operations gfs2_file_fops_nolock;
|
|
|
|
+extern const struct file_operations gfs2_dir_fops_nolock;
|
|
|
|
+
|
|
|
|
+extern void gfs2_set_inode_flags(struct inode *inode);
|
|
|
|
+
|
|
#endif /* __INODE_DOT_H__ */
|
|
#endif /* __INODE_DOT_H__ */
|
|
|
|
|