X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=fs%2Fsync.c;h=7cd005ea76390f385dc85af2c11e8121b6b4dd69;hb=de18c850af701ac9512b7239e88fa45e4c168771;hp=5cb9e7e433835d00333ae712612185b0a1f88c35;hpb=a205752d1ad2d37d6597aaae5a56fc396a770868;p=pandora-kernel.git diff --git a/fs/sync.c b/fs/sync.c index 5cb9e7e43383..7cd005ea7639 100644 --- a/fs/sync.c +++ b/fs/sync.c @@ -229,13 +229,21 @@ asmlinkage long sys_sync_file_range(int fd, loff_t offset, loff_t nbytes, !S_ISLNK(i_mode)) goto out_put; - ret = do_sync_file_range(file, offset, endbyte, flags); + ret = do_sync_mapping_range(file->f_mapping, offset, endbyte, flags); out_put: fput_light(file, fput_needed); out: return ret; } +/* It would be nice if people remember that not all the world's an i386 + when they introduce new system calls */ +asmlinkage long sys_sync_file_range2(int fd, unsigned int flags, + loff_t offset, loff_t nbytes) +{ + return sys_sync_file_range(fd, offset, nbytes, flags); +} + /* * `endbyte' is inclusive */