[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <49C232D4.7050004@novell.com>
Date: Thu, 19 Mar 2009 07:56:04 -0400
From: Gregory Haskins <ghaskins@...ell.com>
To: Ingo Molnar <mingo@...e.hu>
CC: Luis Henriques <henrix@...o.pt>,
Peter Zijlstra <peterz@...radead.org>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v3 -tip] sched: Clean unused fields from struct rq
Ingo Molnar wrote:
> * Luis Henriques <henrix@...o.pt> wrote:
>
>
>>
>> Btw: I tried Greg schedtop with this patch and the app behaviour is as expected:
>>
>> $ ./schedtop
>> Exception: unsupported version
>>
>
> Mind updating the app too and post it here please? It's the only app
> that relies on this file AFAIK.
>
I can take care of the update if Luis can just confirm that this patch
works as expected against his new ABI?
--
commit 336a22f597769bb5759d561773d05ce666019677
Author: Gregory Haskins <ghaskins@...ell.com>
Date: Thu Mar 19 07:54:10 2009 -0400
Update to proposed v15 ABI
Signed-off-by: Gregory Haskins <ghaskins@...ell.com>
diff --git a/schedtop.cc b/schedtop.cc
index 4d4c510..f3c9468 100644
--- a/schedtop.cc
+++ b/schedtop.cc
@@ -114,7 +114,7 @@ public:
throw std::runtime_error("error parsing
version");
lis >> m_version;
- if (m_version != 14)
+ if ((m_version < 14) || (m_version > 15))
throw std::runtime_error("unsupported version");
state = state_timestamp;
@@ -219,9 +219,11 @@ private:
std::string basename("/" + FormIndex("cpu", m_cpu) + "/rq/");
Importer importer(m_smap, is, basename);
- importer += "yld_both_empty";
- importer += "yld_act_empty";
- importer += "yld_exp_empty";
+ if (m_version < 15){
+ importer += "yld_both_empty";
+ importer += "yld_act_empty";
+ importer += "yld_exp_empty";
+ }
importer += "yld_count";
importer += "sched_switch";
importer += "sched_count";
----------------
If this patch works, you have my "Acked-by" for Luis' kernel-side patch.
-Greg
Download attachment "signature.asc" of type "application/pgp-signature" (258 bytes)
Powered by blists - more mailing lists