Skip to content

Commit

Permalink
Really implement fallocate{,64} and sync_file_range as cancellation p…
Browse files Browse the repository at this point in the history
…oints.
  • Loading branch information
Ulrich Drepper committed Apr 1, 2011
1 parent 6e63d5e commit 748876b
Show file tree
Hide file tree
Showing 9 changed files with 130 additions and 33 deletions.
15 changes: 14 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
2011-04-01 Ulrich Drepper <drepper@gmail.com>

* io/Makefile: Compile fallocate.c, fallocate64.c, and
sync_file_range.c with -fexceptions.
* sysdeps/unix/sysv/linux/fallocate.c: Make cancelable.
* sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
* sysdeps/unix/sysv/linux/i386/fallocate.c: Likewise.
* sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
* sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
* sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
* sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Mark
sync_file_range as cancellation point.

2011-04-01 Andreas Schwab <schwab@redhat.com>

* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
bits/timex.h
bits/timex.h.

2011-04-01 Ulrich Drepper <drepper@gmail.com>

Expand Down
5 changes: 4 additions & 1 deletion io/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 1992-2003,2005,2006,2007,2008 Free Software Foundation, Inc.
# Copyright (C) 1992-2003,2005-2008,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
Expand Down Expand Up @@ -90,6 +90,9 @@ CFLAGS-ftw64.c = $(uses-callbacks) -fexceptions
CFLAGS-lockf.c = -fexceptions
CFLAGS-posix_fallocate.c = -fexceptions
CFLAGS-posix_fallocate64.c = -fexceptions
CFLAGS-fallocate.c = -fexceptions
CFLAGS-fallocate64.c = -fexceptions
CFLAGS-sync_file_range.c = -fexceptions

CFLAGS-test-stat.c = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
CFLAGS-test-lfs.c = -D_LARGEFILE64_SOURCE
Expand Down
22 changes: 17 additions & 5 deletions sysdeps/unix/sysv/linux/fallocate.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2007, 2009 Free Software Foundation, Inc.
/* Copyright (C) 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
Expand All @@ -18,17 +18,29 @@

#include <errno.h>
#include <fcntl.h>
#include <sysdep.h>
#include <sysdep-cancel.h>


/* Reserve storage for the data of the file associated with FD. */
int
fallocate (int fd, int mode, __off_t offset, __off_t len)
{
#ifdef __NR_fallocate
return INLINE_SYSCALL (fallocate, 6, fd, mode,
__LONG_LONG_PAIR (offset >> 31, offset),
__LONG_LONG_PAIR (len >> 31, len));
if (SINGLE_THREAD_P)
return INLINE_SYSCALL (fallocate, 6, fd, mode,
__LONG_LONG_PAIR (offset >> 31, offset),
__LONG_LONG_PAIR (len >> 31, len));

int result;
int oldtype = LIBC_CANCEL_ASYNC ();

result = INLINE_SYSCALL (fallocate, 6, fd, mode,
__LONG_LONG_PAIR (offset >> 31, offset),
__LONG_LONG_PAIR (len >> 31, len));

LIBC_CANCEL_RESET (oldtype);

return result;
#else
__set_errno (ENOSYS);
return -1;
Expand Down
28 changes: 21 additions & 7 deletions sysdeps/unix/sysv/linux/fallocate64.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2007, 2009 Free Software Foundation, Inc.
/* Copyright (C) 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
Expand All @@ -18,19 +18,33 @@

#include <errno.h>
#include <fcntl.h>
#include <sysdep.h>
#include <sysdep-cancel.h>


/* Reserve storage for the data of the file associated with FD. */
int
fallocate64 (int fd, int mode, __off64_t offset, __off64_t len)
{
#ifdef __NR_fallocate
return INLINE_SYSCALL (fallocate, 6, fd, mode,
__LONG_LONG_PAIR ((long int) (offset >> 32),
(long int) offset),
__LONG_LONG_PAIR ((long int) (len >> 32),
(long int) len));
if (SINGLE_THREAD_P)
return INLINE_SYSCALL (fallocate, 6, fd, mode,
__LONG_LONG_PAIR ((long int) (offset >> 32),
(long int) offset),
__LONG_LONG_PAIR ((long int) (len >> 32),
(long int) len));

int result;
int oldtype = LIBC_CANCEL_ASYNC ();

result = INLINE_SYSCALL (fallocate, 6, fd, mode,
__LONG_LONG_PAIR ((long int) (offset >> 32),
(long int) offset),
__LONG_LONG_PAIR ((long int) (len >> 32),
(long int) len));

LIBC_CANCEL_RESET (oldtype);

return result;
#else
__set_errno (ENOSYS);
return -1;
Expand Down
16 changes: 13 additions & 3 deletions sysdeps/unix/sysv/linux/i386/fallocate.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2007, 2009 Free Software Foundation, Inc.
/* Copyright (C) 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
Expand All @@ -18,7 +18,7 @@

#include <errno.h>
#include <fcntl.h>
#include <sysdep.h>
#include <sysdep-cancel.h>


extern int __call_fallocate (int fd, int mode, __off64_t offset, __off64_t len)
Expand All @@ -30,7 +30,17 @@ int
fallocate (int fd, int mode, __off_t offset, __off_t len)
{
#ifdef __NR_fallocate
int err = __call_fallocate (fd, mode, offset, len);
int err;
if (SINGLE_THREAD_P)
err = __call_fallocate (fd, mode, offset, len);
else
{
int oldtype = LIBC_CANCEL_ASYNC ();

err = __call_fallocate (fd, mode, offset, len);

LIBC_CANCEL_RESET (oldtype);
}
if (__builtin_expect (err, 0))
{
__set_errno (err);
Expand Down
16 changes: 13 additions & 3 deletions sysdeps/unix/sysv/linux/i386/fallocate64.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2007, 2009 Free Software Foundation, Inc.
/* Copyright (C) 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
Expand All @@ -18,7 +18,7 @@

#include <errno.h>
#include <fcntl.h>
#include <sysdep.h>
#include <sysdep-cancel.h>


extern int __call_fallocate (int fd, int mode, __off64_t offset, __off64_t len)
Expand All @@ -30,7 +30,17 @@ int
fallocate64 (int fd, int mode, __off64_t offset, __off64_t len)
{
#ifdef __NR_fallocate
int err = __call_fallocate (fd, mode, offset, len);
int err;
if (SINGLE_THREAD_P)
err = __call_fallocate (fd, mode, offset, len);
else
{
int oldtype = LIBC_CANCEL_ASYNC ();

err = __call_fallocate (fd, mode, offset, len);

LIBC_CANCEL_RESET (oldtype);
}
if (__builtin_expect (err, 0))
{
__set_errno (err);
Expand Down
43 changes: 34 additions & 9 deletions sysdeps/unix/sysv/linux/sync_file_range.c
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -21,26 +21,51 @@
#include <fcntl.h>
#include <sys/types.h>

#include <sysdep.h>
#include <sysdep-cancel.h>
#include <sys/syscall.h>


#ifdef __NR_sync_file_range
int
sync_file_range (int fd, __off64_t from, __off64_t to, unsigned int flags)
{
return INLINE_SYSCALL (sync_file_range, 6, fd,
__LONG_LONG_PAIR ((long) (from >> 32), (long) from),
__LONG_LONG_PAIR ((long) (to >> 32), (long) to),
flags);
if (SINGLE_THREAD_P)
return INLINE_SYSCALL (sync_file_range, 6, fd,
__LONG_LONG_PAIR ((long) (from >> 32), (long) from),
__LONG_LONG_PAIR ((long) (to >> 32), (long) to),
flags);

int result;
int oldtype = LIBC_CANCEL_ASYNC ();

result = INLINE_SYSCALL (sync_file_range, 6, fd,
__LONG_LONG_PAIR ((long) (from >> 32), (long) from),
__LONG_LONG_PAIR ((long) (to >> 32), (long) to),
flags);

LIBC_CANCEL_RESET (oldtype);

return result;
}
#elif defined __NR_sync_file_range2
int
sync_file_range (int fd, __off64_t from, __off64_t to, unsigned int flags)
{
return INLINE_SYSCALL (sync_file_range2, 6, fd, flags,
__LONG_LONG_PAIR ((long) (from >> 32), (long) from),
__LONG_LONG_PAIR ((long) (to >> 32), (long) to));
if (SINGLE_THREAD_P)
return INLINE_SYSCALL (sync_file_range2, 6, fd, flags,
__LONG_LONG_PAIR ((long) (from >> 32), (long) from),
__LONG_LONG_PAIR ((long) (to >> 32), (long) to));

int result;
int oldtype = LIBC_CANCEL_ASYNC ();

result = INLINE_SYSCALL (sync_file_range2, 6, fd, flags,
__LONG_LONG_PAIR ((long) (from >> 32), (long) from),
__LONG_LONG_PAIR ((long) (to >> 32), (long) to));

LIBC_CANCEL_RESET (oldtype);

return result;
}
#else
int
Expand Down
16 changes: 13 additions & 3 deletions sysdeps/unix/sysv/linux/wordsize-64/fallocate.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2007, 2009 Free Software Foundation, Inc.
/* Copyright (C) 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
Expand All @@ -18,15 +18,25 @@

#include <errno.h>
#include <fcntl.h>
#include <sysdep.h>
#include <sysdep-cancel.h>


/* Reserve storage for the data of the file associated with FD. */
int
fallocate (int fd, int mode, __off_t offset, __off_t len)
{
#ifdef __NR_fallocate
return INLINE_SYSCALL (fallocate, 4, fd, mode, offset, len);
if (SINGLE_THREAD_P)
return INLINE_SYSCALL (fallocate, 4, fd, mode, offset, len);

int result;
int oldtype = LIBC_CANCEL_ASYNC ();

result = INLINE_SYSCALL (fallocate, 4, fd, mode, offset, len);

LIBC_CANCEL_RESET (oldtype);

return result;
#else
__set_errno (ENOSYS);
return -1;
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/wordsize-64/syscalls.list
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ getrlimit - getrlimit i:ip __getrlimit getrlimit getrlimit64
setrlimit - setrlimit i:ip __setrlimit setrlimit setrlimit64
readahead - readahead i:iii __readahead readahead
sendfile - sendfile i:iipi sendfile sendfile64
sync_file_range - sync_file_range i:iiii sync_file_range
sync_file_range - sync_file_range Ci:iiii sync_file_range
creat - creat Ci:si __libc_creat creat creat64
open - open Ci:siv __libc_open __open open __open64 open64
prlimit EXTRA prlimit64 i:iipp prlimit prlimit64
Expand Down

0 comments on commit 748876b

Please sign in to comment.