diff options
author | Jeff Dike <jdike@addtoit.com> | 2006-07-10 04:45:15 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-10 13:24:24 -0700 |
commit | 9ead6feedd28091d86cde0843be914847b4e10e8 (patch) | |
tree | d477bd385e04d77d74823dbbaa4c840c235a5630 /arch/um/os-Linux/file.c | |
parent | 108ffa8cbfa323d462a2f4b49f38da3205d36e5a (diff) | |
download | kernel_goldelico_gta04-9ead6feedd28091d86cde0843be914847b4e10e8.zip kernel_goldelico_gta04-9ead6feedd28091d86cde0843be914847b4e10e8.tar.gz kernel_goldelico_gta04-9ead6feedd28091d86cde0843be914847b4e10e8.tar.bz2 |
[PATCH] uml: add some EINTR protection
Add some more uses of the CATCH_EINTR wrapper.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/os-Linux/file.c')
-rw-r--r-- | arch/um/os-Linux/file.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/um/os-Linux/file.c b/arch/um/os-Linux/file.c index 367ac33..189fa67 100644 --- a/arch/um/os-Linux/file.c +++ b/arch/um/os-Linux/file.c @@ -18,6 +18,7 @@ #include "os.h" #include "user.h" #include "kern_util.h" +#include "user_util.h" static void copy_stat(struct uml_stat *dst, struct stat64 *src) { @@ -42,10 +43,7 @@ int os_stat_fd(const int fd, struct uml_stat *ubuf) struct stat64 sbuf; int err; - do { - err = fstat64(fd, &sbuf); - } while((err < 0) && (errno == EINTR)) ; - + CATCH_EINTR(err = fstat64(fd, &sbuf)); if(err < 0) return -errno; |