UPDATES: add support for cpu alignment, fix makefile, make changes to f/sync
/fs/sync.c
blob:8e4108feb5a1616f679196e8e4920cef4f8cafc8 -> blob:944ab9f2c730db7965fc83bf09496a634aa24789
--- fs/sync.c
+++ fs/sync.c
@@ -143,10 +143,6 @@ SYSCALL_DEFINE1(syncfs, int, fd)
int ret;
int fput_needed;
-#ifdef CONFIG_DYNAMIC_FSYNC
- if (!early_suspend_active)
- return 0;
-#endif
file = fget_light(fd, &fput_needed);
if (!file)
return -EBADF;
@@ -265,10 +261,6 @@ SYSCALL_DEFINE1(fdatasync, unsigned int,
*/
int generic_write_sync(struct file *file, loff_t pos, loff_t count)
{
-#ifdef CONFIG_DYNAMIC_FSYNC
- if (!early_suspend_active)
- return 0;
-#endif
if (!(file->f_flags & O_DSYNC) && !IS_SYNC(file->f_mapping->host))
return 0;
return vfs_fsync_range(file, pos, pos + count - 1,