diff options
Diffstat (limited to 'fs/ntfs')
-rw-r--r-- | fs/ntfs/fs.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/fs/ntfs/fs.c b/fs/ntfs/fs.c index d9430c2cc..cc6bfe2e3 100644 --- a/fs/ntfs/fs.c +++ b/fs/ntfs/fs.c @@ -439,9 +439,10 @@ static struct inode_operations ntfs_inode_operations_nobmap = { NULL, /* rename */ NULL, /* readlink */ NULL, /* follow_link */ + NULL, /* get_block */ NULL, /* readpage */ NULL, /* writepage */ - NULL, /* bmap */ + NULL, /* flushpage */ NULL, /* truncate */ NULL, /* permission */ NULL, /* smap */ @@ -621,9 +622,10 @@ static struct inode_operations ntfs_inode_operations = { NULL, /* rename */ NULL, /* readlink */ NULL, /* follow_link */ - generic_readpage, + ntfs_bmap, /* get_block */ + block_read_full_page, /* readpage */ NULL, /* writepage */ - ntfs_bmap, + NULL, /* flushpage */ NULL, /* truncate */ NULL, /* permission */ NULL, /* smap */ @@ -669,9 +671,10 @@ static struct inode_operations ntfs_dir_inode_operations = { NULL, /* rename */ NULL, /* readlink */ NULL, /* follow_link */ + NULL, /* get_block */ NULL, /* readpage */ NULL, /* writepage */ - NULL, /* bmap */ + NULL, /* flushpage */ NULL, /* truncate */ NULL, /* permission */ NULL, /* smap */ |