diff options
author | Roland McGrath <roland@redhat.com> | 2008-04-30 03:53:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:37 -0400 |
commit | f3de272b821accbc8387211977c2de4f38468d05 (patch) | |
tree | 775b5b3db5a09176447d4e62e04077b63640a4d7 /fs/compat.c | |
parent | 49eaeb4bc4c901c327ee259c7768be20fd020a30 (diff) |
signals: use HAVE_SET_RESTORE_SIGMASK
Change all the #ifdef TIF_RESTORE_SIGMASK conditionals in non-arch code to
#ifdef HAVE_SET_RESTORE_SIGMASK. If arch code defines it first, the generic
set_restore_sigmask() using TIF_RESTORE_SIGMASK is not defined.
Signed-off-by: Roland McGrath <roland@redhat.com>
Cc: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: "Luck, Tony" <tony.luck@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/compat.c')
-rw-r--r-- | fs/compat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/compat.c b/fs/compat.c index 9964d542ae9e..139dc93c092d 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
@@ -1634,7 +1634,7 @@ sticky: | |||
1634 | return ret; | 1634 | return ret; |
1635 | } | 1635 | } |
1636 | 1636 | ||
1637 | #ifdef TIF_RESTORE_SIGMASK | 1637 | #ifdef HAVE_SET_RESTORE_SIGMASK |
1638 | asmlinkage long compat_sys_pselect7(int n, compat_ulong_t __user *inp, | 1638 | asmlinkage long compat_sys_pselect7(int n, compat_ulong_t __user *inp, |
1639 | compat_ulong_t __user *outp, compat_ulong_t __user *exp, | 1639 | compat_ulong_t __user *outp, compat_ulong_t __user *exp, |
1640 | struct compat_timespec __user *tsp, compat_sigset_t __user *sigmask, | 1640 | struct compat_timespec __user *tsp, compat_sigset_t __user *sigmask, |
@@ -1825,7 +1825,7 @@ sticky: | |||
1825 | 1825 | ||
1826 | return ret; | 1826 | return ret; |
1827 | } | 1827 | } |
1828 | #endif /* TIF_RESTORE_SIGMASK */ | 1828 | #endif /* HAVE_SET_RESTORE_SIGMASK */ |
1829 | 1829 | ||
1830 | #if defined(CONFIG_NFSD) || defined(CONFIG_NFSD_MODULE) | 1830 | #if defined(CONFIG_NFSD) || defined(CONFIG_NFSD_MODULE) |
1831 | /* Stuff for NFS server syscalls... */ | 1831 | /* Stuff for NFS server syscalls... */ |
@@ -2080,7 +2080,7 @@ long asmlinkage compat_sys_nfsservctl(int cmd, void *notused, void *notused2) | |||
2080 | 2080 | ||
2081 | #ifdef CONFIG_EPOLL | 2081 | #ifdef CONFIG_EPOLL |
2082 | 2082 | ||
2083 | #ifdef TIF_RESTORE_SIGMASK | 2083 | #ifdef HAVE_SET_RESTORE_SIGMASK |
2084 | asmlinkage long compat_sys_epoll_pwait(int epfd, | 2084 | asmlinkage long compat_sys_epoll_pwait(int epfd, |
2085 | struct compat_epoll_event __user *events, | 2085 | struct compat_epoll_event __user *events, |
2086 | int maxevents, int timeout, | 2086 | int maxevents, int timeout, |
@@ -2124,7 +2124,7 @@ asmlinkage long compat_sys_epoll_pwait(int epfd, | |||
2124 | 2124 | ||
2125 | return err; | 2125 | return err; |
2126 | } | 2126 | } |
2127 | #endif /* TIF_RESTORE_SIGMASK */ | 2127 | #endif /* HAVE_SET_RESTORE_SIGMASK */ |
2128 | 2128 | ||
2129 | #endif /* CONFIG_EPOLL */ | 2129 | #endif /* CONFIG_EPOLL */ |
2130 | 2130 | ||