Commit 6abf6a9a authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] gcc-3.5: fsfilter.h, ntfs.h

From: Tim Cambrant <tim@cambrant.com>

Fix inline decls in fsfilter.h, ntfs.h
parent ad924c8a
......@@ -183,7 +183,7 @@ extern void post_write_mst_fixup(NTFS_RECORD *b);
/* From fs/ntfs/time.c */
extern inline s64 utc2ntfs(const time_t time);
extern inline s64 get_current_ntfs_time(void);
extern inline time_t ntfs2utc(const s64 time);
extern time_t ntfs2utc(const s64 time);
/* From fs/ntfs/unistr.c */
extern BOOL ntfs_are_names_equal(const uchar_t *s1, size_t s1_len,
......
......@@ -74,22 +74,22 @@ extern struct filter_fs filter_oppar[FILTER_FS_TYPES];
struct filter_fs *filter_get_filter_fs(const char *cache_type);
void filter_setup_journal_ops(struct filter_fs *ops, char *cache_type);
inline struct super_operations *filter_c2usops(struct filter_fs *cache);
inline struct inode_operations *filter_c2ufiops(struct filter_fs *cache);
inline struct inode_operations *filter_c2udiops(struct filter_fs *cache);
inline struct inode_operations *filter_c2usiops(struct filter_fs *cache);
inline struct file_operations *filter_c2uffops(struct filter_fs *cache);
inline struct file_operations *filter_c2udfops(struct filter_fs *cache);
inline struct file_operations *filter_c2usfops(struct filter_fs *cache);
inline struct super_operations *filter_c2csops(struct filter_fs *cache);
inline struct inode_operations *filter_c2cfiops(struct filter_fs *cache);
inline struct inode_operations *filter_c2cdiops(struct filter_fs *cache);
inline struct inode_operations *filter_c2csiops(struct filter_fs *cache);
inline struct file_operations *filter_c2cffops(struct filter_fs *cache);
inline struct file_operations *filter_c2cdfops(struct filter_fs *cache);
inline struct file_operations *filter_c2csfops(struct filter_fs *cache);
inline struct dentry_operations *filter_c2cdops(struct filter_fs *cache);
inline struct dentry_operations *filter_c2udops(struct filter_fs *cache);
struct super_operations *filter_c2usops(struct filter_fs *cache);
struct inode_operations *filter_c2ufiops(struct filter_fs *cache);
struct inode_operations *filter_c2udiops(struct filter_fs *cache);
struct inode_operations *filter_c2usiops(struct filter_fs *cache);
struct file_operations *filter_c2uffops(struct filter_fs *cache);
struct file_operations *filter_c2udfops(struct filter_fs *cache);
struct file_operations *filter_c2usfops(struct filter_fs *cache);
struct super_operations *filter_c2csops(struct filter_fs *cache);
struct inode_operations *filter_c2cfiops(struct filter_fs *cache);
struct inode_operations *filter_c2cdiops(struct filter_fs *cache);
struct inode_operations *filter_c2csiops(struct filter_fs *cache);
struct file_operations *filter_c2cffops(struct filter_fs *cache);
struct file_operations *filter_c2cdfops(struct filter_fs *cache);
struct file_operations *filter_c2csfops(struct filter_fs *cache);
struct dentry_operations *filter_c2cdops(struct filter_fs *cache);
struct dentry_operations *filter_c2udops(struct filter_fs *cache);
void filter_setup_super_ops(struct filter_fs *cache, struct super_operations *cache_ops, struct super_operations *filter_sops);
void filter_setup_dir_ops(struct filter_fs *cache, struct inode *cache_inode, struct inode_operations *filter_iops, struct file_operations *ffops);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment