[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20091119032024.GA13378@elte.hu>
Date: Thu, 19 Nov 2009 04:20:24 +0100
From: Ingo Molnar <mingo@...e.hu>
To: Sven-Thorsten Dietrich <sven@...bigcorporation.com>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>
Cc: Jean Delvare <khali@...ux-fr.org>,
Leon Woestenberg <leon.woestenberg@...il.com>,
Alan Cox <alan@...rguk.ukuu.org.uk>,
Mark Brown <broonie@...nsource.wolfsonmicro.com>,
Thomas Gleixner <tglx@...utronix.de>,
linux-i2c@...r.kernel.org,
rt-users <linux-rt-users@...r.kernel.org>,
"Ben Dooks (embedded platforms)" <ben-linux@...ff.org>,
Peter Zijlstra <peterz@...radead.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] cleanup sched_yield (sys)call nesting.
* Sven-Thorsten Dietrich <sven@...bigcorporation.com> wrote:
> Subject: clean up chaining in sched_yield()
> From: Sven-Thorsten Dietrich <sdietrich@...e.de>
>
> The call to sys_sched_yield for in-Kernel is messy.
> and the return code from sys_sched_yield is ignored when called from
> in-kernel.
>
> Signed-off-by: Sven-Thorsten Dietrich <sdietrich@...e.de>
>
> diff --git a/kernel/sched.c b/kernel/sched.c
> index 3c11ae0..db2c0f9 100644
> --- a/kernel/sched.c
> +++ b/kernel/sched.c
> @@ -6647,12 +6647,12 @@ SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
> }
>
> /**
> - * sys_sched_yield - yield the current processor to other threads.
> + * do_sched_yield - yield the current processor to other threads.
> *
> * This function yields the current CPU to other tasks. If there are no
> * other threads running on this CPU then this function will return.
> */
> -SYSCALL_DEFINE0(sched_yield)
> +static inline void do_sched_yield(void)
> {
> struct rq *rq = this_rq_lock();
>
> @@ -6669,6 +6669,11 @@ SYSCALL_DEFINE0(sched_yield)
> preempt_enable_no_resched();
>
> schedule();
> +}
> +
> +SYSCALL_DEFINE0(sched_yield)
> +{
> + do_sched_yield();
>
> return 0;
> }
> @@ -6746,7 +6751,7 @@ EXPORT_SYMBOL(__cond_resched_softirq);
> void __sched yield(void)
> {
> set_current_state(TASK_RUNNING);
> - sys_sched_yield();
> + do_sched_yield();
> }
> EXPORT_SYMBOL(yield);
Why do you consider an in-kernel call to sys_*() 'messy'? It is not -
and we rely on being able to do it with various syscalls.
Also, your patch bloats the scheduler a bit, for no good reason.
Thanks,
Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists