diff options
author | Anton Blanchard <anton@samba.org> | 2006-06-25 05:48:44 -0700 |
---|---|---|
committer | Chris Wright <chrisw@sous-sol.org> | 2006-06-29 17:17:17 -0700 |
commit | c4389daed17fb3d6ec54f2759e2705c268828899 (patch) | |
tree | 77d1698d05730c6c857576c1ece04fd9d0300dd2 | |
parent | 6bd6b5c7d81c365b53ff40f9c049e19aa104f6ac (diff) |
[PATCH] Link error when futexes are disabled on 64bit architectures
From: Anton Blanchard <anton@samba.org>
If futexes are disabled we fail to link on ppc64.
Signed-off-by: Anton Blanchard <anton@samba.org>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
-rw-r--r-- | kernel/exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index e06d0c10a24..ccf791ba865 100644 --- a/kernel/exit.c +++ b/kernel/exit.c @@ -899,7 +899,7 @@ fastcall NORET_TYPE void do_exit(long code) } if (unlikely(tsk->robust_list)) exit_robust_list(tsk); -#ifdef CONFIG_COMPAT +#if defined(CONFIG_FUTEX) && defined(CONFIG_COMPAT) if (unlikely(tsk->compat_robust_list)) compat_exit_robust_list(tsk); #endif |