Commit 13a453c2 authored by Norbert Manthey's avatar Norbert Manthey Committed by Ingo Molnar

sched/fair: Add ';' after label attributes

Due to using GCC defines for configuration, some labels might be unused in
certain configurations. While adding a __maybe_unused to the label is
fine in general, the line has to be terminated with ';'. This is also
reflected in the GCC documentation, but GCC parsed the previous variant
without an error message.

This has been spotted while compiling with goto-cc, the compiler for the
CPROVER tool suite.
Signed-off-by: default avatarNorbert Manthey <nmanthey@amazon.de>
Signed-off-by: default avatarMichael Tautschnig <tautschn@amazon.co.uk>
Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1519717660-16157-1-git-send-email-nmanthey@amazon.deSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent fc4c5a38
...@@ -6797,7 +6797,7 @@ pick_next_task_fair(struct rq *rq, struct task_struct *prev, struct rq_flags *rf ...@@ -6797,7 +6797,7 @@ pick_next_task_fair(struct rq *rq, struct task_struct *prev, struct rq_flags *rf
p = task_of(se); p = task_of(se);
done: __maybe_unused done: __maybe_unused;
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
/* /*
* Move the next running task to the front of * Move the next running task to the front of
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment