From: ciaby <ciaby@autistici.org>
To: Javier Sanz <jsanza@gmail.com>
Cc: linux-rt-users@vger.kernel.org
Subject: Re: [PATCH] 2.6.25.4-rt6: missing global_rt_runtime() in sched.c
Date: Mon, 09 Jun 2008 10:08:23 +0000 [thread overview]
Message-ID: <d7bf0be20a03f63c7e0f91164b4e1adb@localhost> (raw)
In-Reply-To: <a3d4028e0806090255x7301df1kd2c0fbc9d1e678c1@mail.gmail.com>
Probably because you don't use Group Scheduling:
--
#ifdef CONFIG_RT_GROUP_SCHED
init_task_group.rt_runtime = global_rt_runtime();
INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
init_tg_rt_entry(rq, &init_task_group,
&per_cpu(init_rt_rq, i),
&per_cpu(init_sched_rt_entity, i), i, 1);
#endif
--
If you enable it, it tries to initialize the init_task_group.rt_runtime,
but the global_rt_runtime() function has been lost somewhere between -rt3
and -rt4. I sent the patch again, i hope is gonna be in the next -rt
release.
Cheers
Giovanni "ciaby" Civardi
On Mon, 9 Jun 2008 11:55:49 +0200, "Javier Sanz" <jsanza@gmail.com> wrote:
> Umm,
>
> I think that -rt6 compile ok without you patch, for me, at least ...
>
> Regards
>
> J
>
>
> 2008/6/9 ciaby <ciaby@autistici.org>:
>
>>
>> I already sent this patch, but seems that nobody cared... the last 2
>>
>> revisions of the -rt kernel don't compile properly.
>>
>> Second patch to fix this.
>>
>> Regards
>>
>>
>>
>> Giovanni "ciaby" Civardi
>>
>>
>>
>> diff -uNr linux-2.6.25.4-rt6.orig/kernel/sched.c
>>
>> linux-2.6.25.4-rt6/kernel/sched.c
>>
>> --- linux-2.6.25.4-rt6.orig/kernel/sched.c 2008-06-09
>>
>> 11:35:57.000000000 +0200
>>
>> +++ linux-2.6.25.4-rt6/kernel/sched.c 2008-06-09 11:40:45.000000000
> +0200
>>
>> @@ -672,6 +672,13 @@
>>
>> */
>>
>> #define RUNTIME_INF ((u64)~0ULL)
>>
>>
>>
>> +static u64 global_rt_runtime(void)
>>
>> +{
>>
>> + if (sysctl_sched_rt_period < 0)
>>
>> + return RUNTIME_INF;
>>
>> + return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
>>
>> +}
>>
>> +
>>
>> /*
>>
>> * We really dont want to do anything complex within switch_to()
>>
>> * on PREEMPT_RT - this check enforces this.
>>
>>
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe
> linux-rt-users"
>> in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>
next prev parent reply other threads:[~2008-06-09 10:08 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-09 9:51 [PATCH] 2.6.25.4-rt6: missing global_rt_runtime() in sched.c ciaby
2008-06-09 9:51 ` ciaby
[not found] ` <a3d4028e0806090255x7301df1kd2c0fbc9d1e678c1@mail.gmail.com>
2008-06-09 10:08 ` ciaby [this message]
2008-06-09 12:54 ` Tarkan Erimer
2008-06-09 18:02 ` Daniel Walker
2008-06-13 10:07 ` ciaby
2008-06-13 10:07 ` ciaby
2008-06-13 19:23 ` Daniel Walker
2008-06-23 22:43 ` Steven Rostedt
2008-06-24 1:30 ` Steven Rostedt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d7bf0be20a03f63c7e0f91164b4e1adb@localhost \
--to=ciaby@autistici.org \
--cc=jsanza@gmail.com \
--cc=linux-rt-users@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.