fs.h (eafdc7d190a944c755a9fe68573c193e6e0217e7) | fs.h (6a1a90ad1b0edb556a7550a6ef8a8756f0304dd5) |
---|---|
1#ifndef _LINUX_FS_H 2#define _LINUX_FS_H 3 4/* 5 * This file has definitions for some important file table 6 * structures etc. 7 */ 8 --- 2379 unchanged lines hidden (view full) --- 2388 struct page *, struct page *); 2389#else 2390#define buffer_migrate_page NULL 2391#endif 2392 2393extern int inode_change_ok(const struct inode *, struct iattr *); 2394extern int inode_newsize_ok(const struct inode *, loff_t offset); 2395extern int __must_check inode_setattr(struct inode *, const struct iattr *); | 1#ifndef _LINUX_FS_H 2#define _LINUX_FS_H 3 4/* 5 * This file has definitions for some important file table 6 * structures etc. 7 */ 8 --- 2379 unchanged lines hidden (view full) --- 2388 struct page *, struct page *); 2389#else 2390#define buffer_migrate_page NULL 2391#endif 2392 2393extern int inode_change_ok(const struct inode *, struct iattr *); 2394extern int inode_newsize_ok(const struct inode *, loff_t offset); 2395extern int __must_check inode_setattr(struct inode *, const struct iattr *); |
2396extern void generic_setattr(struct inode *inode, const struct iattr *attr); | 2396extern void setattr_copy(struct inode *inode, const struct iattr *attr); |
2397 2398extern void file_update_time(struct file *file); 2399 2400extern int generic_show_options(struct seq_file *m, struct vfsmount *mnt); 2401extern void save_mount_options(struct super_block *sb, char *options); 2402extern void replace_mount_options(struct super_block *sb, char *options); 2403 2404static inline ino_t parent_ino(struct dentry *dentry) --- 86 unchanged lines hidden --- | 2397 2398extern void file_update_time(struct file *file); 2399 2400extern int generic_show_options(struct seq_file *m, struct vfsmount *mnt); 2401extern void save_mount_options(struct super_block *sb, char *options); 2402extern void replace_mount_options(struct super_block *sb, char *options); 2403 2404static inline ino_t parent_ino(struct dentry *dentry) --- 86 unchanged lines hidden --- |