Re: [RFC PATCH v3 2/3] docs: scheduler: Add scheduler overview documentation

2020-05-13 Thread John Mathew
On Fri, May 8, 2020 at 1:58 PM Dietmar Eggemann wrote: > > On 07/05/2020 23:15, Valentin Schneider wrote: > > > > On 07/05/20 19:05, John Mathew wrote: > > [...] > > > It would also be an opportunity to have one place to (at least briefly) > > describe what the different sched classes do wrt capac

Re: [RFC PATCH v3 2/3] docs: scheduler: Add scheduler overview documentation

2020-05-13 Thread John Mathew
On Fri, May 8, 2020 at 1:19 PM Dietmar Eggemann wrote: > > On 07/05/2020 20:05, John Mathew wrote: > > [...] > > > diff --git a/Documentation/scheduler/cfs-overview.rst > > b/Documentation/scheduler/cfs-overview.rst > > new file mode 100644 > > index ..b717f2d3e340 > > --- /dev/null >

Re: [RFC PATCH v3 2/3] docs: scheduler: Add scheduler overview documentation

2020-05-13 Thread John Mathew
On Fri, May 8, 2020 at 12:15 AM Valentin Schneider wrote: > > > On 07/05/20 19:05, John Mathew wrote: > > Add documentation for > > -scheduler overview > > -scheduler state transtion > > -CFS overview > > -scheduler data structs > > > > Add rst for scheduler APIs and modify sched/core.c > > to

Re: [RFC PATCH v3 2/3] docs: scheduler: Add scheduler overview documentation

2020-05-08 Thread Tao Zhou
Hi John, On Thu, May 07, 2020 at 09:05:52PM +0300, John Mathew wrote: > Add documentation for > -scheduler overview > -scheduler state transtion > -CFS overview > -scheduler data structs > > Add rst for scheduler APIs and modify sched/core.c > to add kernel-doc comments. > > Suggested-by: Lu

Re: [RFC PATCH v3 2/3] docs: scheduler: Add scheduler overview documentation

2020-05-08 Thread Valentin Schneider
On 08/05/20 11:58, Dietmar Eggemann wrote: > On 07/05/2020 23:15, Valentin Schneider wrote: >> >> On 07/05/20 19:05, John Mathew wrote: > > [...] > >> It would also be an opportunity to have one place to (at least briefly) >> describe what the different sched classes do wrt capacity asymmetry - C

Re: [RFC PATCH v3 2/3] docs: scheduler: Add scheduler overview documentation

2020-05-08 Thread Dietmar Eggemann
On 07/05/2020 23:15, Valentin Schneider wrote: > > On 07/05/20 19:05, John Mathew wrote: [...] > It would also be an opportunity to have one place to (at least briefly) > describe what the different sched classes do wrt capacity asymmetry - CFS > does one thing, RT now does one thing (see Qais'

Re: [RFC PATCH v3 2/3] docs: scheduler: Add scheduler overview documentation

2020-05-08 Thread Dietmar Eggemann
On 07/05/2020 20:05, John Mathew wrote: [...] > diff --git a/Documentation/scheduler/cfs-overview.rst > b/Documentation/scheduler/cfs-overview.rst > new file mode 100644 > index ..b717f2d3e340 > --- /dev/null > +++ b/Documentation/scheduler/cfs-overview.rst > @@ -0,0 +1,113 @@ > +..

Re: [RFC PATCH v3 2/3] docs: scheduler: Add scheduler overview documentation

2020-05-07 Thread Valentin Schneider
On 07/05/20 19:05, John Mathew wrote: > Add documentation for > -scheduler overview > -scheduler state transtion > -CFS overview > -scheduler data structs > > Add rst for scheduler APIs and modify sched/core.c > to add kernel-doc comments. > > Suggested-by: Lukas Bulwahn > Co-developed-by: M

[RFC PATCH v3 2/3] docs: scheduler: Add scheduler overview documentation

2020-05-07 Thread John Mathew
Add documentation for -scheduler overview -scheduler state transtion -CFS overview -scheduler data structs Add rst for scheduler APIs and modify sched/core.c to add kernel-doc comments. Suggested-by: Lukas Bulwahn Co-developed-by: Mostafa Chamanara Signed-off-by: Mostafa Chamanara Co-devel