[tip:sched/core] sched/fair: Reset nr_balance_failed after active balancing

2016-03-31 Thread tip-bot for Srikar Dronamraju
Commit-ID: d02c071183e1c01a76811c878c8a52322201f81f Gitweb: http://git.kernel.org/tip/d02c071183e1c01a76811c878c8a52322201f81f Author: Srikar Dronamraju AuthorDate: Wed, 23 Mar 2016 17:54:44 +0530 Committer: Ingo Molnar CommitDate: Thu, 31 Mar 2016 10:49:44 +0200 sched/fair: Reset

[PATCH 2/3] Reset nr_balance_failed after active balancing

2016-03-23 Thread Srikar Dronamraju
. Resetting the nr_balance_failed after a successful active balance, ensures that a hot task is not unreasonably migrated. This can be verified by looking at number of hot task migrations reported by /proc/schedstat. Signed-off-by: Srikar Dronamraju <sri...@linux.vnet.ibm.com> --- kernel/sched/fair.

[PATCH 2/3] Reset nr_balance_failed after active balancing

2016-03-23 Thread Srikar Dronamraju
. Resetting the nr_balance_failed after a successful active balance, ensures that a hot task is not unreasonably migrated. This can be verified by looking at number of hot task migrations reported by /proc/schedstat. Signed-off-by: Srikar Dronamraju --- kernel/sched/fair.c | 12 ++-- 1 file

[PATCH 1/3] sched/fair: Fix asym packing to select correct cpu

2016-03-23 Thread Srikar Dronamraju
MaxMedian AvgStddev x 5 37102220 42736809 38442478 39529626 2298389.4 Signed-off-by: Srikar Dronamraju <sri...@linux.vnet.ibm.com> --- kernel/sched/fair.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff

[PATCH 1/3] sched/fair: Fix asym packing to select correct cpu

2016-03-23 Thread Srikar Dronamraju
MaxMedian AvgStddev x 5 37102220 42736809 38442478 39529626 2298389.4 Signed-off-by: Srikar Dronamraju --- kernel/sched/fair.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/kernel/sched/fair.c b/kernel

Re: [PATCH 01/33] mm: introduce get_user_pages_remote()

2016-02-14 Thread Srikar Dronamraju
, mm, vaddr, 1, 0, 1, , NULL); > if (result < 0) > return result; > Reviewed-by: Srikar Dronamraju <sri...@linux.vnet.ibm.com> -- Thanks and Regards Srikar Dronamraju

Re: [PATCH 01/33] mm: introduce get_user_pages_remote()

2016-02-14 Thread Srikar Dronamraju
, mm, vaddr, 1, 0, 1, , NULL); > if (result < 0) > return result; > Reviewed-by: Srikar Dronamraju -- Thanks and Regards Srikar Dronamraju

Re: [PATCH 1/1] sched: Make schedstats a runtime tunable that is disabled by default v4

2016-02-03 Thread Srikar Dronamraju
ssors. > > > Signed-off-by: Mel Gorman > Reviewed-by: Matt Fleming Reviewed-by: Srikar Dronamraju -- Thanks and Regards Srikar Dronamraju

Re: [PATCH 1/1] sched: Make schedstats a runtime tunable that is disabled by default v4

2016-02-03 Thread Srikar Dronamraju
ssors. > > > Signed-off-by: Mel Gorman <mgor...@techsingularity.net> > Reviewed-by: Matt Fleming <m...@codeblueprint.co.uk> Reviewed-by: Srikar Dronamraju <sri...@linux.vnet.ibm.com> -- Thanks and Regards Srikar Dronamraju

Re: [PATCH 1/1] sched: Make schedstats a runtime tunable that is disabled by default v3

2016-02-02 Thread Srikar Dronamraju
e 100644 > --- a/kernel/profile.c > +++ b/kernel/profile.c > @@ -59,6 +59,7 @@ int profile_setup(char *str) > > if (!strncmp(str, sleepstr, strlen(sleepstr))) { > #ifdef CONFIG_SCHEDSTATS > + force_schedstat_enabled(); > prof_on = SLEEP_PROFILING; > if (str[strlen(sleepstr)] == ',') > str += strlen(sleepstr) + 1; -- Thanks and Regards Srikar Dronamraju

Re: [PATCH 1/1] sched: Make schedstats a runtime tunable that is disabled by default v3

2016-02-02 Thread Srikar Dronamraju
tries to enable kernel sleep profiling profile_setup(), the kernel may not be able to do the right profiling since enqueue_sleeper() may not get called. Should we alert the user saying kernel sleep profiling is disabled? -- Thanks and Regards Srikar Dronamraju

Re: [PATCH 1/1] sched: Make schedstats a runtime tunable that is disabled by default v3

2016-02-02 Thread Srikar Dronamraju
e 100644 > --- a/kernel/profile.c > +++ b/kernel/profile.c > @@ -59,6 +59,7 @@ int profile_setup(char *str) > > if (!strncmp(str, sleepstr, strlen(sleepstr))) { > #ifdef CONFIG_SCHEDSTATS > + force_schedstat_enabled(); > prof_on = SLEEP_PROFILING; > if (str[strlen(sleepstr)] == ',') > str += strlen(sleepstr) + 1; -- Thanks and Regards Srikar Dronamraju

Re: [PATCH 1/1] sched: Make schedstats a runtime tunable that is disabled by default v3

2016-02-02 Thread Srikar Dronamraju
tries to enable kernel sleep profiling profile_setup(), the kernel may not be able to do the right profiling since enqueue_sleeper() may not get called. Should we alert the user saying kernel sleep profiling is disabled? -- Thanks and Regards Srikar Dronamraju

Re: [PATCH] mm, gup: introduce concept of "foreign" get_user_pages()

2016-01-25 Thread Srikar Dronamraju
ue gup caller. Being an instruction access > and also really originating from the kernel (vs. the app), I opted > to consider this a 'foreign' access where protection keys will not > be enforced. > Changes for uprobes.c looks good to me. Acked-by: Srikar Dronamraju > Signed-off-by: Dave Hansen

Re: [PATCH] mm, gup: introduce concept of "foreign" get_user_pages()

2016-01-25 Thread Srikar Dronamraju
makes it a pretty unique gup caller. Being an instruction access > and also really originating from the kernel (vs. the app), I opted > to consider this a 'foreign' access where protection keys will not > be enforced. > Changes for uprobes.c looks good to me. Acked-by: Sr

Re: [PATCH] x86/efi: Setup separate EFI page tables in kexec paths

2016-01-21 Thread Srikar Dronamraju
l to efi_setup_page_tables() should have > existed for kexec before commit 67a9108ed431. Things just magically > worked because we were actually using the kernel's page tables that > contained the required mappings. > > Reported-by: Srikar Dronamraju > Cc: Raghavendra K T >

Re: [PATCH] x86/efi: Setup separate EFI page tables in kexec paths

2016-01-21 Thread Srikar Dronamraju
calls. > > At the very least, the call to efi_setup_page_tables() should have > existed for kexec before commit 67a9108ed431. Things just magically > worked because we were actually using the kernel's page tables that > contained the required mappings. > > Reported-by: Srikar Dronamraju &

[tip:sched/core] sched/numa: Fix task_tick_fair() from disabling numa_balancing

2015-10-06 Thread tip-bot for Srikar Dronamraju
Commit-ID: b52da86e0ad58f096710977fcda856fd84da9233 Gitweb: http://git.kernel.org/tip/b52da86e0ad58f096710977fcda856fd84da9233 Author: Srikar Dronamraju AuthorDate: Fri, 2 Oct 2015 07:48:25 +0530 Committer: Ingo Molnar CommitDate: Tue, 6 Oct 2015 17:08:21 +0200 sched/numa: Fix

[tip:sched/core] sched/numa: Fix task_tick_fair() from disabling numa_balancing

2015-10-06 Thread tip-bot for Srikar Dronamraju
Commit-ID: b52da86e0ad58f096710977fcda856fd84da9233 Gitweb: http://git.kernel.org/tip/b52da86e0ad58f096710977fcda856fd84da9233 Author: Srikar Dronamraju <sri...@linux.vnet.ibm.com> AuthorDate: Fri, 2 Oct 2015 07:48:25 +0530 Committer: Ingo Molnar <mi...@kernel.org> CommitDate

[PATCH] sched: Fix task_tick_fair from disabling numa_balancing

2015-10-01 Thread Srikar Dronamraju
tic branch sched_numa_balancing is enabled. Signed-off-by: Srikar Dronamraju --- kernel/sched/fair.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 4df37a4..3bdc3da 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -7881

[PATCH] sched: Fix task_tick_fair from disabling numa_balancing

2015-10-01 Thread Srikar Dronamraju
tic branch sched_numa_balancing is enabled. Signed-off-by: Srikar Dronamraju <sri...@linux.vnet.ibm.com> --- kernel/sched/fair.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 4df37a4..3bdc3da 100644 --- a/kernel/sched/fair.c ++

[tip:sched/core] sched/numa: Convert sched_numa_balancing to a static_branch

2015-09-13 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2a595721a1fa6b684c1c818f379bef834ac3d65e Gitweb: http://git.kernel.org/tip/2a595721a1fa6b684c1c818f379bef834ac3d65e Author: Srikar Dronamraju AuthorDate: Tue, 11 Aug 2015 21:54:21 +0530 Committer: Ingo Molnar CommitDate: Sun, 13 Sep 2015 09:52:54 +0200 sched/numa: Convert

[tip:sched/core] sched/numa: Remove the NUMA sched_feature

2015-09-13 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2b49d84b259fc18e131026e5d38e7855352f71b9 Gitweb: http://git.kernel.org/tip/2b49d84b259fc18e131026e5d38e7855352f71b9 Author: Srikar Dronamraju AuthorDate: Tue, 11 Aug 2015 16:30:13 +0530 Committer: Ingo Molnar CommitDate: Sun, 13 Sep 2015 09:52:53 +0200 sched/numa: Remove

[tip:sched/core] sched/numa: Disable sched_numa_balancing on UMA systems

2015-09-13 Thread tip-bot for Srikar Dronamraju
Commit-ID: c3b9bc5bbfc3750570d788afffd431263ef695c6 Gitweb: http://git.kernel.org/tip/c3b9bc5bbfc3750570d788afffd431263ef695c6 Author: Srikar Dronamraju AuthorDate: Tue, 11 Aug 2015 16:30:12 +0530 Committer: Ingo Molnar CommitDate: Sun, 13 Sep 2015 09:52:53 +0200 sched/numa: Disable

[tip:sched/core] sched/numa: Rename numabalancing_enabled to sched_numa_balancing

2015-09-13 Thread tip-bot for Srikar Dronamraju
Commit-ID: 78a9c54649ea220065aad9902460a1d137c7eafd Gitweb: http://git.kernel.org/tip/78a9c54649ea220065aad9902460a1d137c7eafd Author: Srikar Dronamraju AuthorDate: Tue, 11 Aug 2015 16:30:11 +0530 Committer: Ingo Molnar CommitDate: Sun, 13 Sep 2015 09:52:52 +0200 sched/numa: Rename

[tip:sched/core] sched/numa: Convert sched_numa_balancing to a static_branch

2015-09-13 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2a595721a1fa6b684c1c818f379bef834ac3d65e Gitweb: http://git.kernel.org/tip/2a595721a1fa6b684c1c818f379bef834ac3d65e Author: Srikar Dronamraju <sri...@linux.vnet.ibm.com> AuthorDate: Tue, 11 Aug 2015 21:54:21 +0530 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:sched/core] sched/numa: Remove the NUMA sched_feature

2015-09-13 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2b49d84b259fc18e131026e5d38e7855352f71b9 Gitweb: http://git.kernel.org/tip/2b49d84b259fc18e131026e5d38e7855352f71b9 Author: Srikar Dronamraju <sri...@linux.vnet.ibm.com> AuthorDate: Tue, 11 Aug 2015 16:30:13 +0530 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:sched/core] sched/numa: Rename numabalancing_enabled to sched_numa_balancing

2015-09-13 Thread tip-bot for Srikar Dronamraju
Commit-ID: 78a9c54649ea220065aad9902460a1d137c7eafd Gitweb: http://git.kernel.org/tip/78a9c54649ea220065aad9902460a1d137c7eafd Author: Srikar Dronamraju <sri...@linux.vnet.ibm.com> AuthorDate: Tue, 11 Aug 2015 16:30:11 +0530 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:sched/core] sched/numa: Disable sched_numa_balancing on UMA systems

2015-09-13 Thread tip-bot for Srikar Dronamraju
Commit-ID: c3b9bc5bbfc3750570d788afffd431263ef695c6 Gitweb: http://git.kernel.org/tip/c3b9bc5bbfc3750570d788afffd431263ef695c6 Author: Srikar Dronamraju <sri...@linux.vnet.ibm.com> AuthorDate: Tue, 11 Aug 2015 16:30:12 +0530 Committer: Ingo Molnar <mi...@kernel.org> CommitD

Re: [PATCH] check_for_tasks: read_lock(tasklist_lock) doesn't need to disable irqs

2015-09-11 Thread Srikar Dronamraju
* Oleg Nesterov [2015-09-10 15:07:50]: > check_for_tasks() doesn't need to disable irqs, recursive read_lock() > from interrupt is fine. > > While at it, s/do_each_thread/for_each_process_thread/. > > Signed-off-by: Oleg Nesterov Looks good to me. Reviewed-by:

Re: [PATCH] check_for_tasks: read_lock(tasklist_lock) doesn't need to disable irqs

2015-09-11 Thread Srikar Dronamraju
; Looks good to me. Reviewed-by: Srikar Dronamraju <sri...@linux.vnet.ibm.com> > --- > kernel/cpu.c |8 > 1 files changed, 4 insertions(+), 4 deletions(-) > -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line "unsubsc

Re: [PATCH v2 4/4] sched/numa: Convert sched_numa_balancing to a static_branch

2015-09-06 Thread Srikar Dronamraju
* Wanpeng Li [2015-09-06 12:01:10]: Hi Wanpeng Li, > Hi Srikar, > On 8/12/15 12:24 AM, Srikar Dronamraju wrote: > >Variable sched_numa_balancing toggles numa_balancing feature. Hence > >moving from a simple read mostly variable to a more apt static_branch. > > > &g

Re: [PATCH v2 4/4] sched/numa: Convert sched_numa_balancing to a static_branch

2015-09-06 Thread Srikar Dronamraju
* Wanpeng Li <wanpeng...@hotmail.com> [2015-09-06 12:01:10]: Hi Wanpeng Li, > Hi Srikar, > On 8/12/15 12:24 AM, Srikar Dronamraju wrote: > >Variable sched_numa_balancing toggles numa_balancing feature. Hence > >moving from a simple read mostly variable to

[PATCH v2 4/4] sched/numa: Convert sched_numa_balancing to a static_branch

2015-08-11 Thread Srikar Dronamraju
Variable sched_numa_balancing toggles numa_balancing feature. Hence moving from a simple read mostly variable to a more apt static_branch. Suggested-by: Peter Zijlstra Signed-off-by: Srikar Dronamraju --- kernel/sched/core.c | 10 +++--- kernel/sched/fair.c | 6 +++--- kernel/sched

[PATCH v2 2/3] sched/numa: Disable sched_numa_balancing on uma systems

2015-08-11 Thread Srikar Dronamraju
his commit - Makes sched_numa_balancing common to CONFIG_SCHED_DEBUG and !CONFIG_SCHED_DEBUG. Earlier it was only in !CONFIG_SCHED_DEBUG - Checks for sched_numa_balancing instead of sched_feat(NUMA) Signed-off-by: Srikar Dronamraju --- kernel/sched/core.c | 14 +- kernel/sched/fa

[PATCH v2 0/3] Disable sched_numa_balancing on uma systems

2015-08-11 Thread Srikar Dronamraju
_balancing. This patchset - Renames numabalancing_enabled to sched_numa_balancing - Makes sched_numa_balancing common to CONFIG_SCHED_DEBUG and !CONFIG_SCHED_DEBUG. Earlier it was only in !CONFIG_SCHED_DEBUG - Checks for sched_numa_balancing instead of sched_feat(NUMA) - Removes NUMA sched feature Srikar Dro

[PATCH v2 1/3] sched/numa: Rename numabalancing_enabled to sched_numa_balancing

2015-08-11 Thread Srikar Dronamraju
Simple rename of numabalancing_enabled variable to sched_numa_balancing. No functional changes. Suggested-by: Ingo Molnar Signed-off-by: Srikar Dronamraju --- kernel/sched/core.c | 6 +++--- kernel/sched/fair.c | 4 ++-- kernel/sched/sched.h | 6 +++--- 3 files changed, 8 insertions(+), 8

[PATCH v2 3/3] sched/numa: Remove NUMA sched feature

2015-08-11 Thread Srikar Dronamraju
Variable sched_numa_balancing is available for both CONFIG_SCHED_DEBUG and !CONFIG_SCHED_DEBUG. All code paths now check for sched_numa_balancing. Hence remove sched_feat(NUMA). Suggested-by: Ingo Molnar Signed-off-by: Srikar Dronamraju --- kernel/sched/core.c | 6 -- kernel/sched

[PATCH v2 3/3] sched/numa: Remove NUMA sched feature

2015-08-11 Thread Srikar Dronamraju
Variable sched_numa_balancing is available for both CONFIG_SCHED_DEBUG and !CONFIG_SCHED_DEBUG. All code paths now check for sched_numa_balancing. Hence remove sched_feat(NUMA). Suggested-by: Ingo Molnar mi...@kernel.org Signed-off-by: Srikar Dronamraju sri...@linux.vnet.ibm.com --- kernel/sched

[PATCH v2 1/3] sched/numa: Rename numabalancing_enabled to sched_numa_balancing

2015-08-11 Thread Srikar Dronamraju
Simple rename of numabalancing_enabled variable to sched_numa_balancing. No functional changes. Suggested-by: Ingo Molnar mi...@kernel.org Signed-off-by: Srikar Dronamraju sri...@linux.vnet.ibm.com --- kernel/sched/core.c | 6 +++--- kernel/sched/fair.c | 4 ++-- kernel/sched/sched.h | 6

[PATCH v2 2/3] sched/numa: Disable sched_numa_balancing on uma systems

2015-08-11 Thread Srikar Dronamraju
- Makes sched_numa_balancing common to CONFIG_SCHED_DEBUG and !CONFIG_SCHED_DEBUG. Earlier it was only in !CONFIG_SCHED_DEBUG - Checks for sched_numa_balancing instead of sched_feat(NUMA) Signed-off-by: Srikar Dronamraju sri...@linux.vnet.ibm.com --- kernel/sched/core.c | 14 +- kernel

[PATCH v2 0/3] Disable sched_numa_balancing on uma systems

2015-08-11 Thread Srikar Dronamraju
. This patchset - Renames numabalancing_enabled to sched_numa_balancing - Makes sched_numa_balancing common to CONFIG_SCHED_DEBUG and !CONFIG_SCHED_DEBUG. Earlier it was only in !CONFIG_SCHED_DEBUG - Checks for sched_numa_balancing instead of sched_feat(NUMA) - Removes NUMA sched feature Srikar Dronamraju (3

[PATCH v2 4/4] sched/numa: Convert sched_numa_balancing to a static_branch

2015-08-11 Thread Srikar Dronamraju
Variable sched_numa_balancing toggles numa_balancing feature. Hence moving from a simple read mostly variable to a more apt static_branch. Suggested-by: Peter Zijlstra pet...@infradead.org Signed-off-by: Srikar Dronamraju sri...@linux.vnet.ibm.com --- kernel/sched/core.c | 10 +++--- kernel

Re: [PATCH] sched/numa: Disable sched_numa_balancing on uma systems

2015-07-21 Thread Srikar Dronamraju
; > > So why is the 'NUMA' sched_features option still twiddled? Your patch splits > out a > sched_numa_balancing flag - so the NUMA/NO_NUMA feature can go away, right? > I thought we could retain sched_feat so that we could enable/disable sched numa balancing for debugging purpo

Re: [PATCH] sched/numa: Disable sched_numa_balancing on uma systems

2015-07-21 Thread Srikar Dronamraju
away, right? I thought we could retain sched_feat so that we could enable/disable sched numa balancing for debugging purposes similar to other sched features if the kernel has been build with CONFIG_SCHED_DEBUG. -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send

[PATCH] sched/numa: Disable sched_numa_balancing on uma systems

2015-07-15 Thread Srikar Dronamraju
his commit - Renames numabalancing_enabled to sched_numa_balancing - Makes sched_numa_balancing common to CONFIG_SCHED_DEBUG and !CONFIG_SCHED_DEBUG. Earlier it was only in !CONFIG_SCHED_DEBUG - Checks for sched_numa_balancing instead of sched_feat(NUMA) Signed-off-by: Srikar Dronamraju --- ke

[PATCH] sched/numa: Disable sched_numa_balancing on uma systems

2015-07-15 Thread Srikar Dronamraju
- Renames numabalancing_enabled to sched_numa_balancing - Makes sched_numa_balancing common to CONFIG_SCHED_DEBUG and !CONFIG_SCHED_DEBUG. Earlier it was only in !CONFIG_SCHED_DEBUG - Checks for sched_numa_balancing instead of sched_feat(NUMA) Signed-off-by: Srikar Dronamraju sri...@linux.vnet.ibm.com

Re: [PATCH] sched/numa: Restore sched feature NUMA to its earlier avatar.

2015-07-10 Thread Srikar Dronamraju
*/ #ifdef CONFIG_NUMA_BALANCING -#define sched_feat_numa(x) sched_feat(x) -#ifdef CONFIG_SCHED_DEBUG -#define numabalancing_enabled sched_feat_numa(NUMA) -#else extern bool numabalancing_enabled; -#endif /* CONFIG_SCHED_DEBUG */ #else -#define sched_feat_numa(x) (0) #define numabalancing_ena

Re: [PATCH v2 10/11] uprobes: Add the "enum rp_check ctx" arg to arch_uretprobe_is_alive()

2015-07-10 Thread Srikar Dronamraju
> > Signed-off-by: Oleg Nesterov Looks good to me. Acked-by: Srikar Dronamraju -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: [PATCH v2 11/11] uprobes/x86: Make arch_uretprobe_is_alive(RP_CHECK_CALL) more clever

2015-07-10 Thread Srikar Dronamraju
== T" positives. > > Signed-off-by: Oleg Nesterov Looks good to me. Acked-by: Srikar Dronamraju -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH v2 09/11] uprobes: Change prepare_uretprobe() to (try to) flush the dead frames

2015-07-10 Thread Srikar Dronamraju
() can be false positive, > the stack can grow after longjmp(). Unfortunately, the kernel can't > 100% solve this problem, but see the next patch. > > Signed-off-by: Oleg Nesterov Looks good to me. Acked-by: Srikar Dronamraju -- Thanks and Regards Srikar Dronamraju -- To unsub

Re: [PATCH v2 08/11] uprobes: Change handle_trampoline() to flush the frames invalidated by longjmp()

2015-07-10 Thread Srikar Dronamraju
. > > Note: this change has no effect on !x86, the arch-agnostic version of > arch_uretprobe_is_alive() just returns "true". > > TODO: as documented by the previous change, arch_uretprobe_is_alive() > can be fooled by sigaltstack/etc. > > Signed-off-by: Oleg Ne

Re: [PATCH v2 07/11] uprobes/x86: Reimplement arch_uretprobe_is_alive()

2015-07-10 Thread Srikar Dronamraju
will try to improve this logic later. > > Signed-off-by: Oleg Nesterov Looks good to me. Acked-by: Srikar Dronamraju -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to ma

Re: [PATCH v2 06/11] uprobes: Export struct return_instance, introduce arch_uretprobe_is_alive()

2015-07-10 Thread Srikar Dronamraju
s "struct return_instance" for the architectures which > want to override this hook. We can also cleanup prepare_uretprobe() if > we pass the new return_instance to arch_uretprobe_hijack_return_addr(). > > Signed-off-by: Oleg Nesterov Looks good to me. Acked-by: Srikar Dronam

Re: [PATCH v2 07/11] uprobes/x86: Reimplement arch_uretprobe_is_alive()

2015-07-10 Thread Srikar Dronamraju
. Signed-off-by: Oleg Nesterov o...@redhat.com Looks good to me. Acked-by: Srikar Dronamraju sri...@linux.vnet.ibm.com -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

Re: [PATCH v2 06/11] uprobes: Export struct return_instance, introduce arch_uretprobe_is_alive()

2015-07-10 Thread Srikar Dronamraju
for the architectures which want to override this hook. We can also cleanup prepare_uretprobe() if we pass the new return_instance to arch_uretprobe_hijack_return_addr(). Signed-off-by: Oleg Nesterov o...@redhat.com Looks good to me. Acked-by: Srikar Dronamraju sri...@linux.vnet.ibm.com

Re: [PATCH v2 11/11] uprobes/x86: Make arch_uretprobe_is_alive(RP_CHECK_CALL) more clever

2015-07-10 Thread Srikar Dronamraju
Dronamraju sri...@linux.vnet.ibm.com -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [PATCH v2 09/11] uprobes: Change prepare_uretprobe() to (try to) flush the dead frames

2015-07-10 Thread Srikar Dronamraju
be false positive, the stack can grow after longjmp(). Unfortunately, the kernel can't 100% solve this problem, but see the next patch. Signed-off-by: Oleg Nesterov o...@redhat.com Looks good to me. Acked-by: Srikar Dronamraju sri...@linux.vnet.ibm.com -- Thanks and Regards Srikar

Re: [PATCH v2 08/11] uprobes: Change handle_trampoline() to flush the frames invalidated by longjmp()

2015-07-10 Thread Srikar Dronamraju
version of arch_uretprobe_is_alive() just returns true. TODO: as documented by the previous change, arch_uretprobe_is_alive() can be fooled by sigaltstack/etc. Signed-off-by: Oleg Nesterov o...@redhat.com Looks good to me. Acked-by: Srikar Dronamraju sri...@linux.vnet.ibm.com -- Thanks

Re: [PATCH v2 10/11] uprobes: Add the enum rp_check ctx arg to arch_uretprobe_is_alive()

2015-07-10 Thread Srikar Dronamraju
. Signed-off-by: Oleg Nesterov o...@redhat.com Looks good to me. Acked-by: Srikar Dronamraju sri...@linux.vnet.ibm.com -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

Re: [PATCH] sched/numa: Restore sched feature NUMA to its earlier avatar.

2015-07-10 Thread Srikar Dronamraju
-#define sched_feat_numa(x) (0) #define numabalancing_enabled (0) #endif /* CONFIG_NUMA_BALANCING */ -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info

Re: [PATCH] sched/numa: Restore sched feature NUMA to its earlier avatar.

2015-07-09 Thread Srikar Dronamraju
tasks without bothering about cache hotness so that convergence is achieved. > > I.e. this patch sucks on multiple grounds, and 8a9e62a probably sucks as > well. And > you added a Reviewed-by while you should have noticed at least 2-3 flaws in > the > patch and its approach. Not g

Re: [PATCH] sched/numa: Restore sched feature NUMA to its earlier avatar.

2015-07-09 Thread Srikar Dronamraju
in the patch and its approach. Not good. -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ

Re: [PATCH] sched/numa: Restore sched feature NUMA to its earlier avatar.

2015-07-08 Thread Srikar Dronamraju
wever the other feature NUMA_FAVOUR_HIGHER / NUMA_FAVOR_BUSY_NODES will only affect if we want to give a numa bias when we do the regular load balance. It wouldnt affect numa hinting faults or the tasks swaps that we do based on numa faults. So its impact is very limited. Would you recommend removing

Re: [tip:sched/core] sched/numa: Prefer NUMA hotness over cache hotness

2015-07-08 Thread Srikar Dronamraju
* Srikar Dronamraju [2015-07-07 05:49:31]: > * tip-bot for Srikar Dronamraju [2015-07-06 08:50:28]: > > > Commit-ID: 8a9e62a238a3033158e0084d8df42ea116d69ce1 > > Gitweb: > > http://git.kernel.org/tip/8a9e62a238a3033158e0084d8df42ea116d69ce1 > >

[PATCH] sched/numa: Restore sched feature NUMA to its earlier avatar.

2015-07-08 Thread Srikar Dronamraju
ER feature. Signed-off-by: Srikar Dronamraju diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 587a2f6..aea72d5 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -5676,10 +5676,10 @@ static int migrate_degrades_locality(struct task_struct *p, struct lb_env *env) uns

[PATCH] sched/numa: Restore sched feature NUMA to its earlier avatar.

2015-07-08 Thread Srikar Dronamraju
-off-by: Srikar Dronamraju sri...@linux.vnet.ibm.com diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 587a2f6..aea72d5 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -5676,10 +5676,10 @@ static int migrate_degrades_locality(struct task_struct *p, struct lb_env *env

Re: [tip:sched/core] sched/numa: Prefer NUMA hotness over cache hotness

2015-07-08 Thread Srikar Dronamraju
* Srikar Dronamraju sri...@linux.vnet.ibm.com [2015-07-07 05:49:31]: * tip-bot for Srikar Dronamraju tip...@zytor.com [2015-07-06 08:50:28]: Commit-ID: 8a9e62a238a3033158e0084d8df42ea116d69ce1 Gitweb: http://git.kernel.org/tip/8a9e62a238a3033158e0084d8df42ea116d69ce1 Author

Re: [PATCH] sched/numa: Restore sched feature NUMA to its earlier avatar.

2015-07-08 Thread Srikar Dronamraju
or the tasks swaps that we do based on numa faults. So its impact is very limited. Would you recommend removing the feature? -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

[tip:sched/core] sched/numa: Consider 'imbalance_pct' when comparing loads in numa_has_capacity()

2015-07-07 Thread tip-bot for Srikar Dronamraju
Commit-ID: 44dcb04f0ea8eaac3b9c9d3172416efc5a950214 Gitweb: http://git.kernel.org/tip/44dcb04f0ea8eaac3b9c9d3172416efc5a950214 Author: Srikar Dronamraju AuthorDate: Tue, 16 Jun 2015 17:26:00 +0530 Committer: Ingo Molnar CommitDate: Tue, 7 Jul 2015 08:46:10 +0200 sched/numa: Consider

[tip:sched/core] sched/numa: Prefer NUMA hotness over cache hotness

2015-07-07 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2a1ed24ce94036d00a7c5d5e99a77a80f0aa556a Gitweb: http://git.kernel.org/tip/2a1ed24ce94036d00a7c5d5e99a77a80f0aa556a Author: Srikar Dronamraju AuthorDate: Tue, 16 Jun 2015 17:25:59 +0530 Committer: Ingo Molnar CommitDate: Tue, 7 Jul 2015 08:46:10 +0200 sched/numa: Prefer

[tip:sched/core] sched/numa: Prefer NUMA hotness over cache hotness

2015-07-07 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2a1ed24ce94036d00a7c5d5e99a77a80f0aa556a Gitweb: http://git.kernel.org/tip/2a1ed24ce94036d00a7c5d5e99a77a80f0aa556a Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Tue, 16 Jun 2015 17:25:59 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Tue, 7 Jul

[tip:sched/core] sched/numa: Consider 'imbalance_pct' when comparing loads in numa_has_capacity()

2015-07-07 Thread tip-bot for Srikar Dronamraju
Commit-ID: 44dcb04f0ea8eaac3b9c9d3172416efc5a950214 Gitweb: http://git.kernel.org/tip/44dcb04f0ea8eaac3b9c9d3172416efc5a950214 Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Tue, 16 Jun 2015 17:26:00 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Tue, 7 Jul

Re: [tip:sched/core] sched/numa: Prefer NUMA hotness over cache hotness

2015-07-06 Thread Srikar Dronamraju
* tip-bot for Srikar Dronamraju [2015-07-06 08:50:28]: > Commit-ID: 8a9e62a238a3033158e0084d8df42ea116d69ce1 > Gitweb: http://git.kernel.org/tip/8a9e62a238a3033158e0084d8df42ea116d69ce1 > Author: Srikar Dronamraju > AuthorDate: Tue, 16 Jun 2015 17:25:59 +0530 > Committe

[tip:sched/core] sched/numa: Prefer NUMA hotness over cache hotness

2015-07-06 Thread tip-bot for Srikar Dronamraju
Commit-ID: 8a9e62a238a3033158e0084d8df42ea116d69ce1 Gitweb: http://git.kernel.org/tip/8a9e62a238a3033158e0084d8df42ea116d69ce1 Author: Srikar Dronamraju AuthorDate: Tue, 16 Jun 2015 17:25:59 +0530 Committer: Ingo Molnar CommitDate: Mon, 6 Jul 2015 15:29:55 +0200 sched/numa: Prefer

[tip:sched/core] sched/numa: Consider 'imbalance_pct' when comparing loads in numa_has_capacity()

2015-07-06 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2d9f7144b84aac8be63e1c45cd248a5f7f67ed24 Gitweb: http://git.kernel.org/tip/2d9f7144b84aac8be63e1c45cd248a5f7f67ed24 Author: Srikar Dronamraju AuthorDate: Tue, 16 Jun 2015 17:26:00 +0530 Committer: Ingo Molnar CommitDate: Mon, 6 Jul 2015 15:29:55 +0200 sched/numa: Consider

[tip:sched/core] sched/numa: Consider 'imbalance_pct' when comparing loads in numa_has_capacity()

2015-07-06 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2d9f7144b84aac8be63e1c45cd248a5f7f67ed24 Gitweb: http://git.kernel.org/tip/2d9f7144b84aac8be63e1c45cd248a5f7f67ed24 Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Tue, 16 Jun 2015 17:26:00 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Mon, 6 Jul

[tip:sched/core] sched/numa: Prefer NUMA hotness over cache hotness

2015-07-06 Thread tip-bot for Srikar Dronamraju
Commit-ID: 8a9e62a238a3033158e0084d8df42ea116d69ce1 Gitweb: http://git.kernel.org/tip/8a9e62a238a3033158e0084d8df42ea116d69ce1 Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Tue, 16 Jun 2015 17:25:59 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Mon, 6 Jul

Re: [tip:sched/core] sched/numa: Prefer NUMA hotness over cache hotness

2015-07-06 Thread Srikar Dronamraju
* tip-bot for Srikar Dronamraju tip...@zytor.com [2015-07-06 08:50:28]: Commit-ID: 8a9e62a238a3033158e0084d8df42ea116d69ce1 Gitweb: http://git.kernel.org/tip/8a9e62a238a3033158e0084d8df42ea116d69ce1 Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Tue, 16 Jun 2015 17

[tip:sched/urgent] sched/debug: Move print_cfs_rq() declaration to kernel/sched/sched.h

2015-07-05 Thread tip-bot for Srikar Dronamraju
Commit-ID: 6b55c9654fccf69ae7ace23ca101dc37b903181b Gitweb: http://git.kernel.org/tip/6b55c9654fccf69ae7ace23ca101dc37b903181b Author: Srikar Dronamraju AuthorDate: Thu, 25 Jun 2015 22:51:41 +0530 Committer: Ingo Molnar CommitDate: Sat, 4 Jul 2015 10:04:31 +0200 sched/debug: Move

[tip:sched/urgent] sched/numa: Fix numa balancing stats in /proc/ pid/sched

2015-07-05 Thread tip-bot for Srikar Dronamraju
Commit-ID: 397f2378f136128623fc237746157aa2564d1082 Gitweb: http://git.kernel.org/tip/397f2378f136128623fc237746157aa2564d1082 Author: Srikar Dronamraju AuthorDate: Thu, 25 Jun 2015 22:51:43 +0530 Committer: Ingo Molnar CommitDate: Sat, 4 Jul 2015 10:04:33 +0200 sched/numa: Fix numa

[tip:sched/urgent] sched/numa: Show numa_group ID in /proc/ sched_debug task listings

2015-07-05 Thread tip-bot for Srikar Dronamraju
Commit-ID: e3d24d0a6048a826de5562d75dedb664d3a2a1b2 Gitweb: http://git.kernel.org/tip/e3d24d0a6048a826de5562d75dedb664d3a2a1b2 Author: Srikar Dronamraju AuthorDate: Thu, 25 Jun 2015 22:51:42 +0530 Committer: Ingo Molnar CommitDate: Sat, 4 Jul 2015 10:04:32 +0200 sched/numa: Show

[tip:sched/urgent] sched/debug: Move print_cfs_rq() declaration to kernel/sched/sched.h

2015-07-05 Thread tip-bot for Srikar Dronamraju
Commit-ID: 6b55c9654fccf69ae7ace23ca101dc37b903181b Gitweb: http://git.kernel.org/tip/6b55c9654fccf69ae7ace23ca101dc37b903181b Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Thu, 25 Jun 2015 22:51:41 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Sat, 4 Jul

[tip:sched/urgent] sched/numa: Fix numa balancing stats in /proc/ pid/sched

2015-07-05 Thread tip-bot for Srikar Dronamraju
Commit-ID: 397f2378f136128623fc237746157aa2564d1082 Gitweb: http://git.kernel.org/tip/397f2378f136128623fc237746157aa2564d1082 Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Thu, 25 Jun 2015 22:51:43 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Sat, 4 Jul

[tip:sched/urgent] sched/numa: Show numa_group ID in /proc/ sched_debug task listings

2015-07-05 Thread tip-bot for Srikar Dronamraju
Commit-ID: e3d24d0a6048a826de5562d75dedb664d3a2a1b2 Gitweb: http://git.kernel.org/tip/e3d24d0a6048a826de5562d75dedb664d3a2a1b2 Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Thu, 25 Jun 2015 22:51:42 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Sat, 4 Jul

[tip:sched/urgent] sched/numa: Fix numa balancing stats in /proc/ pid/sched

2015-07-03 Thread tip-bot for Srikar Dronamraju
Commit-ID: 46fb6b9762d13fdeeefb3a9e9c317ebcd344f578 Gitweb: http://git.kernel.org/tip/46fb6b9762d13fdeeefb3a9e9c317ebcd344f578 Author: Srikar Dronamraju AuthorDate: Thu, 25 Jun 2015 22:51:43 +0530 Committer: Ingo Molnar CommitDate: Wed, 1 Jul 2015 10:31:28 +0200 sched/numa: Fix numa

[tip:sched/urgent] sched/numa: Show numa_group ID in /proc/ sched_debug task listings

2015-07-03 Thread tip-bot for Srikar Dronamraju
Commit-ID: 478fd9ada06ff17ae13a5b7f775346562036127e Gitweb: http://git.kernel.org/tip/478fd9ada06ff17ae13a5b7f775346562036127e Author: Srikar Dronamraju AuthorDate: Thu, 25 Jun 2015 22:51:42 +0530 Committer: Ingo Molnar CommitDate: Wed, 1 Jul 2015 10:31:27 +0200 sched/numa: Show

[tip:sched/urgent] sched/debug: Move print_cfs_rq() declaration to kernel/sched/sched.h

2015-07-03 Thread tip-bot for Srikar Dronamraju
Commit-ID: 6e3ecb4945f06ebbf1cf00ec316511c249492b08 Gitweb: http://git.kernel.org/tip/6e3ecb4945f06ebbf1cf00ec316511c249492b08 Author: Srikar Dronamraju AuthorDate: Thu, 25 Jun 2015 22:51:41 +0530 Committer: Ingo Molnar CommitDate: Wed, 1 Jul 2015 10:31:27 +0200 sched/debug: Move

[tip:sched/urgent] sched/numa: Fix numa balancing stats in /proc/ pid/sched

2015-07-03 Thread tip-bot for Srikar Dronamraju
Commit-ID: 46fb6b9762d13fdeeefb3a9e9c317ebcd344f578 Gitweb: http://git.kernel.org/tip/46fb6b9762d13fdeeefb3a9e9c317ebcd344f578 Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Thu, 25 Jun 2015 22:51:43 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Wed, 1 Jul

[tip:sched/urgent] sched/numa: Show numa_group ID in /proc/ sched_debug task listings

2015-07-03 Thread tip-bot for Srikar Dronamraju
Commit-ID: 478fd9ada06ff17ae13a5b7f775346562036127e Gitweb: http://git.kernel.org/tip/478fd9ada06ff17ae13a5b7f775346562036127e Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Thu, 25 Jun 2015 22:51:42 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Wed, 1 Jul

[tip:sched/urgent] sched/debug: Move print_cfs_rq() declaration to kernel/sched/sched.h

2015-07-03 Thread tip-bot for Srikar Dronamraju
Commit-ID: 6e3ecb4945f06ebbf1cf00ec316511c249492b08 Gitweb: http://git.kernel.org/tip/6e3ecb4945f06ebbf1cf00ec316511c249492b08 Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Thu, 25 Jun 2015 22:51:41 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Wed, 1 Jul

Re: [PATCH v2 1/2] schedstat: Simplify sched_info accounting dependency

2015-06-30 Thread Srikar Dronamraju
* Naveen N. Rao [2015-06-25 23:53:37]: > Both CONFIG_SCHEDSTATS and CONFIG_TASK_DELAY_ACCT track task sched_info. > Simplify by introducing a common CONFIG_SCHED_INFO selected by both. > > Signed-off-by: Naveen N. Rao > --- Looks good to me. Acked-by: Srikar Dronamr

Re: [PATCH v3 2/2] schedstat: Expose /proc/pid/schedstat if CONFIG_SCHED_INFO is set

2015-06-30 Thread Srikar Dronamraju
signed long in printf > Looks good to me. Acked-by: Srikar Dronamraju -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.ker

Re: [PATCH v3 2/2] schedstat: Expose /proc/pid/schedstat if CONFIG_SCHED_INFO is set

2015-06-30 Thread Srikar Dronamraju
--- Changes since v2: Revert to unsigned long in printf Looks good to me. Acked-by: Srikar Dronamraju sri...@linux.vnet.ibm.com -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org

Re: [PATCH v2 1/2] schedstat: Simplify sched_info accounting dependency

2015-06-30 Thread Srikar Dronamraju
to me. Acked-by: Srikar Dronamraju sri...@linux.vnet.ibm.com -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v2 2/2] schedstat: Expose /proc/pid/schedstat if CONFIG_SCHED_INFO is set

2015-06-29 Thread Srikar Dronamraju
long)task->se.sum_exec_runtime, > (unsigned long long)task->sched_info.run_delay, > task->sched_info.pcount); > -- > 2.4.0 > -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line "uns

Re: [PATCH v2 2/2] schedstat: Expose /proc/pid/schedstat if CONFIG_SCHED_INFO is set

2015-06-29 Thread Srikar Dronamraju
long)task-sched_info.run_delay, task-sched_info.pcount); -- 2.4.0 -- Thanks and Regards Srikar Dronamraju -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http

[tip:perf/urgent] perf bench numa: Fix to show proper convergence stats

2015-06-26 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2b42b09b88c831ba4da2d669581dde371c38c2af Gitweb: http://git.kernel.org/tip/2b42b09b88c831ba4da2d669581dde371c38c2af Author: Srikar Dronamraju AuthorDate: Wed, 24 Jun 2015 16:40:04 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 25 Jun 2015 12:28:35 -0300 perf

[tip:perf/urgent] perf bench numa: Fix to show proper convergence stats

2015-06-26 Thread tip-bot for Srikar Dronamraju
Commit-ID: 2b42b09b88c831ba4da2d669581dde371c38c2af Gitweb: http://git.kernel.org/tip/2b42b09b88c831ba4da2d669581dde371c38c2af Author: Srikar Dronamraju sri...@linux.vnet.ibm.com AuthorDate: Wed, 24 Jun 2015 16:40:04 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate

[PATCH 1/3] sched: Move print_cfs_rq declaration to kernel/sched/sched.h

2015-06-25 Thread Srikar Dronamraju
Currently print_cfs_rq() is declared in include/linux/sched.h. However its not used outside kernel/sched. Hence move the declaration to kernel/sched/sched.h Also some functions are only available for CONFIG_SCHED_DEBUG. Hence move the declarations within #ifdef. Signed-off-by: Srikar Dronamraju

<    2   3   4   5   6   7   8   9   10   11   >