1. 28 4月, 2016 5 次提交
  2. 08 4月, 2016 7 次提交
  3. 13 3月, 2016 15 次提交
  4. 03 3月, 2016 1 次提交
    • C
      tools/power turbostat: fix various build warnings · 1b69317d
      Colin Ian King 提交于
      When building with gcc 6 we're getting various build warnings that just
      require some trivial function declaration and call fixes:
      
        turbostat.c: In function ‘dump_cstate_pstate_config_info’:
        turbostat.c:1973:1: warning: type of ‘family’ defaults to ‘int’
         dump_cstate_pstate_config_info(family, model)
        turbostat.c:1973:1: warning: type of ‘model’ defaults to ‘int’
        turbostat.c: In function ‘get_tdp’:
        turbostat.c:2145:8: warning: type of ‘model’ defaults to ‘int’
         double get_tdp(model)
        turbostat.c: In function ‘perf_limit_reasons_probe’:
        turbostat.c:2259:6: warning: type of ‘family’ defaults to ‘int’
         void perf_limit_reasons_probe(family, model)
        turbostat.c:2259:6: warning: type of ‘model’ defaults to ‘int’
      Signed-off-by: NColin Ian King <colin.king@canonical.com>
      Cc: Matt Fleming <matt@codeblueprint.co.uk>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Link: http://lkml.kernel.org/n/tip-wbicer8n0s9qe6ql8h9x478e@git.kernel.orgSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
      1b69317d
  5. 17 2月, 2016 4 次提交
  6. 19 1月, 2016 1 次提交
  7. 16 1月, 2016 1 次提交
  8. 01 1月, 2016 2 次提交
  9. 15 12月, 2015 1 次提交
    • L
      tools/power/acpi: Add userspace AML interface support · 37645d65
      Lv Zheng 提交于
      This patch adds a userspace tool to access Linux kernel AML debugger
      interface.
      
      Tow modes are supported by this tool:
      1. Interactive: Users are able to launch a debugging shell to talk with
         in-kernel AML debugger.
         Note that it's user duty to ensure kernel runtime integrity by using
         this debugging tool:
         A. Some control methods evaluated by the users may result in kernel
            panics if those control methods shouldn't be evaluated by the OSPMs
            according to the current BIOS/OS configurations.
         B. Currently if a single stepping evaluation couldn't run to an end,
            then the synchronization primitives acquired by the evaluation may
            block normal OSPM control method evaluations.
      2. Batch: Users are able to execute debugger commands in a script.
         Note that in addition to the above duties, it's user duty to ensure
         script runtime integrity by using this debugging tool in this mode:
         C. Currently only those commands that are not used for single stepping
            are suitable to be used in this mode.
         D. If the execution of the command may cause a failure that could result
            in an endless kernel execution, the execution of the script may also
            get blocked.
      To exit the utility, currently "exit/quit" commands are recommended, but
      ctrl-C" can also be used.
      Signed-off-by: NLv Zheng <lv.zheng@intel.com>
      Signed-off-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
      37645d65
  10. 03 12月, 2015 3 次提交