|
@@ -285,8 +285,8 @@ SYSCALL_DEFINE1(fdatasync, unsigned int, fd)
|
|
* already-instantiated disk blocks, there are no guarantees here that the data
|
|
* already-instantiated disk blocks, there are no guarantees here that the data
|
|
* will be available after a crash.
|
|
* will be available after a crash.
|
|
*/
|
|
*/
|
|
-SYSCALL_DEFINE4(sync_file_range, int, fd, loff_t, offset, loff_t, nbytes,
|
|
|
|
- unsigned int, flags)
|
|
|
|
|
|
+int ksys_sync_file_range(int fd, loff_t offset, loff_t nbytes,
|
|
|
|
+ unsigned int flags)
|
|
{
|
|
{
|
|
int ret;
|
|
int ret;
|
|
struct fd f;
|
|
struct fd f;
|
|
@@ -364,10 +364,16 @@ out:
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+SYSCALL_DEFINE4(sync_file_range, int, fd, loff_t, offset, loff_t, nbytes,
|
|
|
|
+ unsigned int, flags)
|
|
|
|
+{
|
|
|
|
+ return ksys_sync_file_range(fd, offset, nbytes, flags);
|
|
|
|
+}
|
|
|
|
+
|
|
/* It would be nice if people remember that not all the world's an i386
|
|
/* It would be nice if people remember that not all the world's an i386
|
|
when they introduce new system calls */
|
|
when they introduce new system calls */
|
|
SYSCALL_DEFINE4(sync_file_range2, int, fd, unsigned int, flags,
|
|
SYSCALL_DEFINE4(sync_file_range2, int, fd, unsigned int, flags,
|
|
loff_t, offset, loff_t, nbytes)
|
|
loff_t, offset, loff_t, nbytes)
|
|
{
|
|
{
|
|
- return sys_sync_file_range(fd, offset, nbytes, flags);
|
|
|
|
|
|
+ return ksys_sync_file_range(fd, offset, nbytes, flags);
|
|
}
|
|
}
|