<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>8988c4b9 - perf tools: Fix in-source libperf build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#8988c4b9</link>
        <description>perf tools: Fix in-source libperf buildWhen libperf is built alone in-source, $(OUTPUT) isn&apos;t set. This causesthe generated uapi path to resolve to &apos;/../arch&apos; which results in apermissions error:  mkdir: cannot create directory &apos;/../arch&apos;: Permission deniedFix it by removing the preceding &apos;/..&apos; which means that it getsgenerated either in the tools/lib/perf part of the tree or the OUTPUTfolder. Some other rules that rely on OUTPUT further refine thisconditionally depending on whether it&apos;s an in-source or out-of-sourcebuild, but I don&apos;t think we need the extra complexity here. And thisrule is slightly different to others because the header is needed byboth libperf and Perf. This is further complicated by the fact that Perfalways passes O=... to libperf even for in source builds, meaning thatOUTPUT isn&apos;t set consistently between projects.Because we&apos;re no longer going one level up to try to generate the filein the tools/ folder, Perf&apos;s include rule needs to descend into libperf.Also fix the clean rule while we&apos;re here.Reported-by: Thorsten Leemhuis &lt;linux@leemhuis.info&gt;Closes: https://lore.kernel.org/linux-perf-users/7703f88e-ccb7-4c98-9da4-8aad224e780f@leemhuis.info/Fixes: bfb713ea53c7 (&quot;perf tools: Fix arm64 build by generating unistd_64.h&quot;)Signed-off-by: James Clark &lt;james.clark@linaro.org&gt;Tested-by: Thorsten Leemhuis &lt;linux@leemhuis.info&gt;Link: https://lore.kernel.org/r/20250429-james-perf-fix-libperf-in-source-build-v1-1-a1a827ac15e5@linaro.orgSigned-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Tue, 29 Apr 2025 14:22:18 +0000</pubDate>
        <dc:creator>James Clark &lt;james.clark@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>bfb713ea - perf tools: Fix arm64 build by generating unistd_64.h</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#bfb713ea</link>
        <description>perf tools: Fix arm64 build by generating unistd_64.hSince pulling in the kernel changes in commit 22f72088ffe6 (&quot;toolsheaders: Update the syscall table with the kernel sources&quot;), arm64 isno longer using a generic syscall header and generates one from thesyscall table. Therefore we must also generate the syscall header forarm64 before building Perf.Add it as a dependency to libperf which uses one syscall number. Perfuses more, but as libperf is a dependency of Perf it will be generatedfor both.Future platforms that need this will have to add their own syscall-ytargets in libperf manually. Unfortunately the arch specific files thatdo this (e.g. arch/arm64/include/asm/Kbuild) can&apos;t easily be importedinto the Perf build. But Perf only needs a subset of the generated filesanyway, so redefining them is probably the correct thing to do.Fixes: 22f72088ffe6 (&quot;tools headers: Update the syscall table with the kernel sources&quot;)Signed-off-by: James Clark &lt;james.clark@linaro.org&gt;Tested-by: Harshit Mogalapalli &lt;harshit.m.mogalapalli@oracle.com&gt;Link: https://lore.kernel.org/r/20250417-james-perf-fix-gen-syscall-v1-1-1d268c923901@linaro.orgSigned-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Thu, 17 Apr 2025 13:55:50 +0000</pubDate>
        <dc:creator>James Clark &lt;james.clark@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>f5b07010 - libperf: Don&apos;t remove -g when EXTRA_CFLAGS are used</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#f5b07010</link>
        <description>libperf: Don&apos;t remove -g when EXTRA_CFLAGS are usedWhen using EXTRA_CFLAGS, for example &quot;EXTRA_CFLAGS=-DREFCNT_CHECKING=1&quot;,this construct stops setting -g which you&apos;d expect would not be affectedby adding extra flags. Additionally, EXTRA_CFLAGS should be the lastthing to be appended so that it can be used to undo any defaults. And nocondition is required, just += appends to any existing CFLAGS and alsoappends or doesn&apos;t append EXTRA_CFLAGS if they are or aren&apos;t set.It&apos;s not clear why DEBUG=1 is required for -g in Perf when in libperfit&apos;s always on, but I don&apos;t think we need to change that behavior nowbecause someone may be depending on it.Signed-off-by: James Clark &lt;james.clark@linaro.org&gt;Reviewed-by: Ian Rogers &lt;irogers@google.com&gt;Link: https://lore.kernel.org/r/20250319114009.417865-1-james.clark@linaro.orgSigned-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Wed, 19 Mar 2025 11:40:09 +0000</pubDate>
        <dc:creator>James Clark &lt;james.clark@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>42367eca - tools: Remove redundant quiet setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#42367eca</link>
        <description>tools: Remove redundant quiet setupQ is exported from Makefile.include so it is not necessary to manuallyset it.Reviewed-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Signed-off-by: Charlie Jenkins &lt;charlie@rivosinc.com&gt;Acked-by: Andrii Nakryiko &lt;andrii@kernel.org&gt;Acked-by: Quentin Monnet &lt;qmo@kernel.org&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Alexei Starovoitov &lt;ast@kernel.org&gt;Cc: Benjamin Tissoires &lt;bentiss@kernel.org&gt;Cc: Daniel Borkmann &lt;daniel@iogearbox.net&gt;Cc: Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;Cc: Eduard Zingerman &lt;eddyz87@gmail.com&gt;Cc: Hao Luo &lt;haoluo@google.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Kosina &lt;jikos@kernel.org&gt;Cc: John Fastabend &lt;john.fastabend@gmail.com&gt;Cc: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;Cc: KP Singh &lt;kpsingh@kernel.org&gt;Cc: Lukasz Luba &lt;lukasz.luba@arm.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin KaFai Lau &lt;martin.lau@linux.dev&gt;Cc: Mykola Lysenko &lt;mykolal@fb.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Rafael J. Wysocki &lt;rafael@kernel.org&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Stanislav Fomichev &lt;sdf@google.com&gt;Cc: Steven Rostedt (VMware) &lt;rostedt@goodmis.org&gt;Cc: Yonghong Song &lt;yonghong.song@linux.dev&gt;Cc: Zhang Rui &lt;rui.zhang@intel.com&gt;Link: https://lore.kernel.org/r/20250213-quiet_tools-v3-2-07de4482a581@rivosinc.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Thu, 13 Feb 2025 21:06:22 +0000</pubDate>
        <dc:creator>Charlie Jenkins &lt;charlie@rivosinc.com&gt;</dc:creator>
    </item>
<item>
        <title>da885a0e - perf cpumap: Add reference count checking</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#da885a0e</link>
        <description>perf cpumap: Add reference count checkingEnabled when REFCNT_CHECKING is defined. The change adds a memoryallocated pointer that is interposed between the reference counted cpumap at a get and freed by a put. The pointer replaces the originalperf_cpu_map struct, so use of the perf_cpu_map via APIs remainsunchanged. Any use of the cpu map without the API requires two versions,handled via the RC_CHK_ACCESS macro.This change is intended to catch: - use after put: using a cpumap after you have put it will cause a   segv. - unbalanced puts: two puts for a get will result in a double free   that can be captured and reported by tools like address sanitizer,   including with the associated stack traces of allocation and frees. - missing puts: if a put is missing then the get turns into a memory   leak that can be reported by leak sanitizer, including the stack   trace at the point the get occurs.Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Alexey Bayduraev &lt;alexey.v.bayduraev@linux.intel.com&gt;Cc: Andi Kleen &lt;ak@linux.intel.com&gt;Cc: Andrew Morton &lt;akpm@linux-foundation.org&gt;Cc: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Cc: Darren Hart &lt;dvhart@infradead.org&gt;Cc: Davidlohr Bueso &lt;dave@stgolabs.net&gt;Cc: Dmitriy Vyukov &lt;dvyukov@google.com&gt;Cc: Eric Dumazet &lt;edumazet@google.com&gt;Cc: German Gomez &lt;german.gomez@arm.com&gt;Cc: Hao Luo &lt;haoluo@google.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: James Clark &lt;james.clark@arm.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: John Garry &lt;john.g.garry@oracle.com&gt;Cc: Kajol Jain &lt;kjain@linux.ibm.com&gt;Cc: Kan Liang &lt;kan.liang@linux.intel.com&gt;Cc: Leo Yan &lt;leo.yan@linaro.org&gt;Cc: Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Masami Hiramatsu &lt;mhiramat@kernel.org&gt;Cc: Miaoqian Lin &lt;linmq006@gmail.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Riccardo Mancini &lt;rickyman7@gmail.com&gt;Cc: Shunsuke Nakamura &lt;nakamura.shun@fujitsu.com&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Stephen Brennan &lt;stephen.s.brennan@oracle.com&gt;Cc: Steven Rostedt (VMware) &lt;rostedt@goodmis.org&gt;Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Thomas Richter &lt;tmricht@linux.ibm.com&gt;,Cc: Yury Norov &lt;yury.norov@gmail.com&gt;Link: https://lore.kernel.org/lkml/20230407230405.2931830-3-irogers@google.com[ Extracted from a larger patch ]Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Mon, 17 Apr 2023 19:50:02 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>4ff17c44 - libperf: Fix install_pkgconfig target</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#4ff17c44</link>
        <description>libperf: Fix install_pkgconfig targetCommit 47e02b94a4c98dcc (&quot;tools lib perf: Add dependency test to install_headers&quot;)misses the notion of $(DESTDIR_SQ) for install_pkgconfig target, which leads toerror:  install: cannot create regular file &apos;/usr/lib64/pkgconfig/libperf.pc&apos;: Permission denied  make: *** [Makefile:210: install_pkgconfig] Error 1Signed-off-by: Alexander Gordeev &lt;agordeev@linux.ibm.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Nicolas Schier &lt;nicolas@fjasle.eu&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: bpf@vger.kernel.orgCc: llvm@lists.linux.devLink: http://lore.kernel.org/lkml/Y5w/cWKyb8vpNMfA@li-4a3a4a4c-28e5-11b2-a85c-a8d192c6f089.ibm.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Fri, 16 Dec 2022 09:50:41 +0000</pubDate>
        <dc:creator>Alexander Gordeev &lt;agordeev@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>47e02b94 - tools lib perf: Add dependency test to install_headers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#47e02b94</link>
        <description>tools lib perf: Add dependency test to install_headersCompute the headers to be installed from their source headers and makeeach have its own build target to install it. Using dependenciesavoids headers being reinstalled and getting a new timestamp whichthen causes files that depend on the header to be rebuilt.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Nicolas Schier &lt;nicolas@fjasle.eu&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: bpf@vger.kernel.orgCc: llvm@lists.linux.devLink: https://lore.kernel.org/r/20221202045743.2639466-3-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Fri, 02 Dec 2022 04:57:40 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>e8951bfb - tools lib perf: Make install_headers clearer</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#e8951bfb</link>
        <description>tools lib perf: Make install_headers clearerAdd libperf to the name so that this install_headers build appearsdifferent to similar targets in different libraries.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Alexei Starovoitov &lt;ast@kernel.org&gt;Cc: Andrii Nakryiko &lt;andrii@kernel.org&gt;Cc: Daniel Borkmann &lt;daniel@iogearbox.net&gt;Cc: Hao Luo &lt;haoluo@google.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: John Fastabend &lt;john.fastabend@gmail.com&gt;Cc: KP Singh &lt;kpsingh@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin KaFai Lau &lt;martin.lau@linux.dev&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nicolas Schier &lt;nicolas@fjasle.eu&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Stanislav Fomichev &lt;sdf@google.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Yonghong Song &lt;yhs@fb.com&gt;Cc: bpf@vger.kernel.orgLink: https://lore.kernel.org/r/20221117004356.279422-5-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Thu, 17 Nov 2022 00:43:54 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>a6e8caf5 - tools lib perf: Add missing install headers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#a6e8caf5</link>
        <description>tools lib perf: Add missing install headersHeaders necessary for the perf build. Note, internal headers are alsoinstalled as these are necessary for the build.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Acked-by: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andrii Nakryiko &lt;andrii.nakryiko@gmail.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Nicolas Schier &lt;nicolas@fjasle.eu&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: bpf@vger.kernel.orgLink: http://lore.kernel.org/lkml/20221109184914.1357295-9-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Wed, 09 Nov 2022 18:49:08 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>5c816641 - kbuild: replace $(if A,A,B) with $(or A,B)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#5c816641</link>
        <description>kbuild: replace $(if A,A,B) with $(or A,B)$(or ...) is available since GNU Make 3.81, and useful to shorten thecode in some places.Covert as follows:  $(if A,A,B)  --&gt;  $(or A,B)This patch also converts:  $(if A, A, B) --&gt; $(or A, B)Strictly speaking, the latter is not an equivalent conversion becauseGNU Make keeps spaces after commas; if A is not empty, $(if A, A, B)expands to &quot; A&quot;, while $(or A, B) expands to &quot;A&quot;.Anyway, preceding spaces are not significant in the code hunks I touched.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Reviewed-by: Nicolas Schier &lt;nicolas@fjasle.eu&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Fri, 11 Feb 2022 05:14:11 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3d970601 - libperf: Change tests to single static and shared binaries</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#3d970601</link>
        <description>libperf: Change tests to single static and shared binariesMake tests to be two binaries &apos;tests_static&apos; and &apos;tests_shared&apos;, so themaintenance is easier.Adding tests under libperf build system, so we define all the flags justonce.Adding make-tests tule to just compile tests without running them.Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Michael Petlan &lt;mpetlan@redhat.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Shunsuke Nakamura &lt;nakamura.shun@fujitsu.com&gt;Link: http://lore.kernel.org/lkml/20210706151704.73662-2-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Tue, 06 Jul 2021 15:16:58 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>81de3bf3 - libperf: Add man pages</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#81de3bf3</link>
        <description>libperf: Add man pagesChange the man page generation to asciidoc, because it&apos;s easier to useand has been more commonly used in related projects. Remove the currentrst pages.Add 3 man pages to have a base for more additions:  libperf.3          - overall description  libperf-counting.7 - counting basics explained on simple example  libperf-sampling.7 - sampling basics explained on simple exampleThe plan is to add more man pages to cover the basic API.The build generates html and man pages:  $ cd tools/lib/perf/Documentation  $ make    ASCIIDOC libperf.xml    XMLTO    libperf.3    ASCIIDOC libperf-counting.xml    XMLTO    libperf-counting.7    ASCIIDOC libperf-sampling.xml    XMLTO    libperf-sampling.7    ASCIIDOC libperf.html    ASCIIDOC libperf-counting.html    ASCIIDOC libperf-sampling.htmlAdd the following install targets:   install-man      - man pages   install-html     - html version of man pages   install-examples - examples mentioned in the man pagesSigned-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Michael Petlan &lt;mpetlan@redhat.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Link: http://lore.kernel.org/lkml/20191206210612.8676-3-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Fri, 06 Dec 2019 21:06:12 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3ce311af - libperf: Move to tools/lib/perf</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/perf/Makefile#3ce311af</link>
        <description>libperf: Move to tools/lib/perfMove libperf from its current location under tools/perf to a separatedirectory under tools/lib/.Also change various paths (mainly includes) to reflect the libperf moveto a separate directory and add a new directory under MANIFEST.Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Tested-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Michael Petlan &lt;mpetlan@redhat.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Link: http://lore.kernel.org/lkml/20191206210612.8676-2-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/perf/Makefile</description>
        <pubDate>Fri, 06 Dec 2019 21:06:11 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
