19 February 2008

Somehow we fixed the same thing...

commit b3da2a73ff5a2953a4ad8ebbf0aa7e6965ff9de2
Author: Mel Gorman <mel@csn.ul.ie>
Date: Wed Oct 24 18:23:50 2007 +0200

sched: document profile=sleep requiring CONFIG_SCHEDSTATS

profile=sleep only works if CONFIG_SCHEDSTATS is set. This patch notes
the limitation in Documentation/kernel-parameters.txt and prints a
warning at boot-time if profile=sleep is used without CONFIG_SCHEDSTAT.

Signed-off-by: Mel Gorman <mel@csn.ul.ie>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

commit c0fe2e6964bea897d059fd1680a53cf131546f20
Author: Dave Jones <davej@redhat.com>
Date: Sat Oct 20 03:08:22 2007 +0200

Add missing profile=kvm option to Documentation/kernel-parameters.txt

Whilst looking up what profile=sleep did, I noticed that we missed
adding docs for the most recent addition to the profiler.

Signed-off-by: Dave Jones <davej@redhat.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Adrian Bunk <bunk@kernel.org>

And this was my post to LKML. Maybe I was too slow...but anyway, at least I achieve almost the same thing purely by reading the source code. Now that's what I call working!

regards,

Mulyadi.

How to execute multiple commands directly as ssh argument?

 Perhaps sometimes you need to do this: ssh user@10.1.2.3 ls It is easy understand the above: run ls after getting into 10.1.2.3 via ssh. Pi...