02 Nov, 2017

1 commit

  • Many source files in the tree are missing licensing information, which
    makes it harder for compliance tools to determine the correct license.

    By default all files without license information are under the default
    license of the kernel, which is GPL version 2.

    Update the files which contain no license information with the 'GPL-2.0'
    SPDX license identifier. The SPDX identifier is a legally binding
    shorthand, which can be used instead of the full boiler plate text.

    This patch is based on work done by Thomas Gleixner and Kate Stewart and
    Philippe Ombredanne.

    How this work was done:

    Patches were generated and checked against linux-4.14-rc6 for a subset of
    the use cases:
    - file had no licensing information it it.
    - file was a */uapi/* one with no licensing information in it,
    - file was a */uapi/* one with existing licensing information,

    Further patches will be generated in subsequent months to fix up cases
    where non-standard license headers were used, and references to license
    had to be inferred by heuristics based on keywords.

    The analysis to determine which SPDX License Identifier to be applied to
    a file was done in a spreadsheet of side by side results from of the
    output of two independent scanners (ScanCode & Windriver) producing SPDX
    tag:value files created by Philippe Ombredanne. Philippe prepared the
    base worksheet, and did an initial spot review of a few 1000 files.

    The 4.13 kernel was the starting point of the analysis with 60,537 files
    assessed. Kate Stewart did a file by file comparison of the scanner
    results in the spreadsheet to determine which SPDX license identifier(s)
    to be applied to the file. She confirmed any determination that was not
    immediately clear with lawyers working with the Linux Foundation.

    Criteria used to select files for SPDX license identifier tagging was:
    - Files considered eligible had to be source code files.
    - Make and config files were included as candidates if they contained >5
    lines of source
    - File already had some variant of a license header in it (even if
    Reviewed-by: Philippe Ombredanne
    Reviewed-by: Thomas Gleixner
    Signed-off-by: Greg Kroah-Hartman

    Greg Kroah-Hartman
     

07 Jun, 2016

1 commit

  • Add basic plumbing for TopDown in perf stat

    TopDown is intended to replace the frontend cycles idle/ backend cycles
    idle metrics in standard perf stat output. These metrics are not
    reliable in many workloads, due to out of order effects.

    This implements a new --topdown mode in perf stat (similar to
    --transaction) that measures the pipe line bottlenecks using
    standardized formulas. The measurement can be all done with 5 counters
    (one fixed counter)

    The result are four metrics:

    FrontendBound, BackendBound, BadSpeculation, Retiring

    that describe the CPU pipeline behavior on a high level.

    The full top down methology has many hierarchical metrics. This
    implementation only supports level 1 which can be collected without
    multiplexing. A full implementation of top down on top of perf is
    available in pmu-tools toplev. (http://github.com/andikleen/pmu-tools)

    The current version works on Intel Core CPUs starting with Sandy Bridge,
    and Atom CPUs starting with Silvermont. In principle the generic
    metrics should be also implementable on other out of order CPUs.

    TopDown level 1 uses a set of abstracted metrics which are generic to
    out of order CPU cores (although some CPUs may not implement all of
    them):

    topdown-total-slots Available slots in the pipeline
    topdown-slots-issued Slots issued into the pipeline
    topdown-slots-retired Slots successfully retired
    topdown-fetch-bubbles Pipeline gaps in the frontend
    topdown-recovery-bubbles Pipeline gaps during recovery
    from misspeculation

    These metrics then allow to compute four useful metrics:

    FrontendBound, BackendBound, Retiring, BadSpeculation.

    Add a new --topdown options to enable events. When --topdown is
    specified set up events for all topdown events supported by the kernel.
    Add topdown-* as a special case to the event parser, as is needed for
    all events containing -.

    The actual code to compute the metrics is in follow-on patches.

    v2: Use standard sysctl read function.
    v3: Move x86 specific code to arch/
    v4: Enable --metric-only implicitly for topdown.
    v5: Add --single-thread option to not force per core mode
    v6: Fix output order of topdown metrics
    v7: Allow combining with -d
    v8: Remove --single-thread again
    v9: Rename functions, adding arch_ and topdown_.
    v10: Expand man page and describe TopDown better
    Paste intro into commit description.
    Print error when malloc fails.

    Signed-off-by: Andi Kleen
    Acked-by: Jiri Olsa
    Link: http://lkml.kernel.org/r/1464119559-17203-1-git-send-email-andi@firstfloor.org
    Signed-off-by: Arnaldo Carvalho de Melo

    Andi Kleen