| To: | Linus Torvalds <torvalds@linux-foundation.org> |
|---|---|
| Subject: | [PATCH] MIPS: MT: Fix build error iFPU affinity code |
| From: | Ralf Baechle <ralf@linux-mips.org> |
| Date: | Sun, 24 Oct 2010 22:23:50 +0100 |
| Cc: | linux-kernel@vger.kernel.org, linux-mips@linux-mips.org, KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>, James Morris <jmorris@namei.org> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mutt/1.5.21 (2010-09-15) |
> commit b0ae19811375031ae3b3fecc65b702a9c6e5cc28
> Author: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
> Date: Fri Oct 15 04:21:18 2010 +0900
>
> security: remove unused parameter from security_task_setscheduler()
broke the build of arch/mips/kernel/mips-mt-fpaff.c. The function
arguments were unnecessary, not the semicolon ...
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/mips-mt-fpaff.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/mips/kernel/mips-mt-fpaff.c b/arch/mips/kernel/mips-mt-fpaff.c
index 9a526ba..802e616 100644
--- a/arch/mips/kernel/mips-mt-fpaff.c
+++ b/arch/mips/kernel/mips-mt-fpaff.c
@@ -103,7 +103,7 @@ asmlinkage long mipsmt_sys_sched_setaffinity(pid_t pid,
unsigned int len,
if (!check_same_owner(p) && !capable(CAP_SYS_NICE))
goto out_unlock;
- retval = security_task_setscheduler(p)
+ retval = security_task_setscheduler(p);
if (retval)
goto out_unlock;
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | patch: [RFC 2/2] ftrace/MIPS: Add support for C version of recordmcount, John Reiser |
|---|---|
| Next by Date: | Re: [PATCH] MIPS: MT: Fix build error iFPU affinity code, KOSAKI Motohiro |
| Previous by Thread: | [PATCH RESEND 0/2] Au1300/DB1300 support, Manuel Lauss |
| Next by Thread: | Re: [PATCH] MIPS: MT: Fix build error iFPU affinity code, KOSAKI Motohiro |
| Indexes: | [Date] [Thread] [Top] [All Lists] |