summaryrefslogtreecommitdiffstats
path: root/fs/adfs/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/adfs/file.c')
-rw-r--r--fs/adfs/file.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/adfs/file.c b/fs/adfs/file.c
index 0d5f4346e..0cd28ca47 100644
--- a/fs/adfs/file.c
+++ b/fs/adfs/file.c
@@ -33,7 +33,7 @@
* We have mostly NULLs here: the current defaults are OK for
* the adfs filesystem.
*/
-static struct file_operations adfs_file_operations = {
+struct file_operations adfs_file_operations = {
read: generic_file_read,
mmap: generic_file_mmap,
fsync: file_fsync,
@@ -43,8 +43,9 @@ static struct file_operations adfs_file_operations = {
};
struct inode_operations adfs_file_inode_operations = {
- &adfs_file_operations, /* default file operations */
+ setattr: adfs_notify_change,
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0)
+ &adfs_file_operations, /* default file operations */
readpage: generic_readpage,
bmap: adfs_bmap,
#endif