]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Make ppc sync_file_range cancelable.
authorAndreas Schwab <schwab@linux-m68k.org>
Sat, 9 Apr 2011 15:07:18 +0000 (11:07 -0400)
committerUlrich Drepper <drepper@gmail.com>
Sat, 9 Apr 2011 15:07:18 +0000 (11:07 -0400)
ChangeLog
sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c

index a7989040aee20c5cccb24768fe12441d418b7fed..5549869081496b20f16cd419b72651409fc93895 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-04-08  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
+       Make cancelable.
+
 2011-04-09  Ulrich Drepper  <drepper@gmail.com>
 
        [BZ #12655]
index 1ca4ce66df283000c19bda3977b782b02d50fe1e..ccbca4d25068f6ce4f2d61ea7d8bf0f5cfdfa0db 100644 (file)
@@ -1,5 +1,5 @@
 /* Selective file content synch'ing.
-   Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
+   Copyright (C) 2006, 2007, 2009, 2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@
 #include <fcntl.h>
 #include <sys/types.h>
 
-#include <sysdep.h>
+#include <sysdep-cancel.h>
 #include <sys/syscall.h>
 
 
 int
 sync_file_range (int fd, __off64_t from, __off64_t to, unsigned int flags)
 {
-  return INLINE_SYSCALL (sync_file_range2, 4, fd, flags, from, to);
+  if (SINGLE_THREAD_P)
+    return INLINE_SYSCALL (sync_file_range2, 4, fd, flags, from, to);
+
+  int result;
+  int oldtype = LIBC_CANCEL_ASYNC ();
+
+  result = INLINE_SYSCALL (sync_file_range2, 4, fd, flags, from, to);
+
+  LIBC_CANCEL_RESET (oldtype);
+
+  return result;
 }
 #else
 int