diff options
Diffstat (limited to 'fs/ntfs/inode.h')
-rw-r--r-- | fs/ntfs/inode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ntfs/inode.h b/fs/ntfs/inode.h index 117eaf8032a3..9a113544605d 100644 --- a/fs/ntfs/inode.h +++ b/fs/ntfs/inode.h | |||
@@ -307,12 +307,12 @@ extern void ntfs_truncate_vfs(struct inode *vi); | |||
307 | 307 | ||
308 | extern int ntfs_setattr(struct dentry *dentry, struct iattr *attr); | 308 | extern int ntfs_setattr(struct dentry *dentry, struct iattr *attr); |
309 | 309 | ||
310 | extern int ntfs_write_inode(struct inode *vi, int sync); | 310 | extern int __ntfs_write_inode(struct inode *vi, int sync); |
311 | 311 | ||
312 | static inline void ntfs_commit_inode(struct inode *vi) | 312 | static inline void ntfs_commit_inode(struct inode *vi) |
313 | { | 313 | { |
314 | if (!is_bad_inode(vi)) | 314 | if (!is_bad_inode(vi)) |
315 | ntfs_write_inode(vi, 1); | 315 | __ntfs_write_inode(vi, 1); |
316 | return; | 316 | return; |
317 | } | 317 | } |
318 | 318 | ||