<?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>fb54ea1e - dimlib: use *-y instead of *-objs in Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/lib/dim/Makefile#fb54ea1e</link>
        <description>dimlib: use *-y instead of *-objs in Makefile*-objs suffix is reserved rather for (user-space) host programs whileusually *-y suffix is used for kernel drivers (although *-objs works forthat purpose for now).Let&apos;s correct the old usages of *-objs in Makefiles.Link: https://lkml.kernel.org/r/20240821155140.611514-1-andriy.shevchenko@linux.intel.comSigned-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Acked-by: Florian Fainelli &lt;florian.fainelli@broadcom.com&gt;Reviewed-by: Alexander Lobakin &lt;aleksander.lobakin@intel.com&gt;Cc: Rasmus Villemoes &lt;linux@rasmusvillemoes.dk&gt;Cc: Tal Gilboa &lt;talgi@nvidia.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux-6.15/lib/dim/Makefile</description>
        <pubDate>Wed, 21 Aug 2024 15:51:04 +0000</pubDate>
        <dc:creator>Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>0d5044b4 - lib: Allow for the DIM library to be modular</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/lib/dim/Makefile#0d5044b4</link>
        <description>lib: Allow for the DIM library to be modularAllow the Dynamic Interrupt Moderation (DIM) library to be built as amodule. This is particularly useful in an Android GKI (Google KernelImage) configuration where everything is built as a module, includingEthernet controller drivers. Having to build DIMLIB into the kernelimage with potentially no user is wasteful.Signed-off-by: Florian Fainelli &lt;florian.fainelli@broadcom.com&gt;Reviewed-by: Alexander Lobakin &lt;aleksander.lobakin@intel.com&gt;Link: https://lore.kernel.org/r/20240506175040.410446-1-florian.fainelli@broadcom.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/lib/dim/Makefile</description>
        <pubDate>Mon, 06 May 2024 17:50:40 +0000</pubDate>
        <dc:creator>Florian Fainelli &lt;florian.fainelli@broadcom.com&gt;</dc:creator>
    </item>
<item>
        <title>b16838c6 - kbuild: trace functions in subdirectories of lib/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/lib/dim/Makefile#b16838c6</link>
        <description>kbuild: trace functions in subdirectories of lib/ccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE)exists here in sub-directories of lib/ to keep the behavior ofcommit 2464a609ded0 (&quot;ftrace: do not trace library functions&quot;).Since that commit, not only the objects in lib/ but also the ones inthe sub-directories are excluded from ftrace (although the commitdescription did not explicitly mention this).However, most of library functions in sub-directories are not so hot.Re-add them to ftrace.Going forward, only the objects right under lib/ will be excluded.Cc: Ingo Molnar &lt;mingo@kernel.org&gt;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Acked-by: Steven Rostedt (VMware) &lt;rostedt@goodmis.org&gt;

            List of files:
            /linux-6.15/lib/dim/Makefile</description>
        <pubDate>Tue, 07 Jul 2020 09:21:17 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>15d5761a - kbuild: introduce ccflags-remove-y and asflags-remove-y</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/lib/dim/Makefile#15d5761a</link>
        <description>kbuild: introduce ccflags-remove-y and asflags-remove-yCFLAGS_REMOVE_&lt;file&gt;.o filters out flags when compiling a particularobject, but there is no convenient way to do that for every object ina directory.Add ccflags-remove-y and asflags-remove-y to make it easily.Use ccflags-remove-y to clean up some Makefiles.The add/remove order works as follows: [1] KBUILD_CFLAGS specifies compiler flags used globally [2] ccflags-y adds compiler flags for all objects in the     current Makefile [3] ccflags-remove-y removes compiler flags for all objects in the     current Makefile (New feature) [4] CFLAGS_&lt;file&gt; adds compiler flags per file. [5] CFLAGS_REMOVE_&lt;file&gt; removes compiler flags per file.Having [3] before [4] allows us to remove flags from most (but not all)objects in the current Makefile.For example, kernel/trace/Makefile removes $(CC_FLAGS_FTRACE)from all objects in the directory, then adds it back totrace_selftest_dynamic.o and CFLAGS_trace_kprobe_selftest.oThe same applies to lib/livepatch/Makefile.Please note ccflags-remove-y has no effect to the sub-directories.In contrast, the previous notation got rid of compiler flags also fromall the sub-directories.The following are not affected because they have no sub-directories:  arch/arm/boot/compressed/  arch/powerpc/xmon/  arch/sh/  kernel/trace/However, lib/ has several sub-directories.To keep the behavior, I added ccflags-remove-y to all Makefilesin subdirectories of lib/, except the following:  lib/vdso/Makefile        - Kbuild does not descend into this Makefile  lib/raid/test/Makefile   - This is not used for the kernel buildI think commit 2464a609ded0 (&quot;ftrace: do not trace library functions&quot;)excluded too much. In the next commit, I will remove ccflags-remove-yfrom the sub-directories of lib/.Suggested-by: Sami Tolvanen &lt;samitolvanen@google.com&gt;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Acked-by: Steven Rostedt (VMware) &lt;rostedt@goodmis.org&gt;Acked-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt; (powerpc)Acked-by: Brendan Higgins &lt;brendanhiggins@google.com&gt; (KUnit)Tested-by: Anders Roxell &lt;anders.roxell@linaro.org&gt;

            List of files:
            /linux-6.15/lib/dim/Makefile</description>
        <pubDate>Tue, 07 Jul 2020 09:21:16 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f4915455 - linux/dim: Implement RDMA adaptive moderation (DIM)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/lib/dim/Makefile#f4915455</link>
        <description>linux/dim: Implement RDMA adaptive moderation (DIM)RDMA DIM implements a different algorithm from net DIM and is based oncompletions which is how we can implement interrupt moderation in RDMA.The algorithm optimizes for number of completions and ratio betweencompletions and events. In order to avoid long latencies, theimplementation performs fast reduction of moderation level when thetraffic changes.Signed-off-by: Yamin Friedman &lt;yaminf@mellanox.com&gt;Reviewed-by: Max Gurtovoy &lt;maxg@mellanox.com&gt;Reviewed-by: Sagi Grimberg &lt;sagi@grimberg.me&gt;Signed-off-by: Saeed Mahameed &lt;saeedm@mellanox.com&gt;Signed-off-by: Leon Romanovsky &lt;leonro@mellanox.com&gt;Signed-off-by: Jason Gunthorpe &lt;jgg@mellanox.com&gt;

            List of files:
            /linux-6.15/lib/dim/Makefile</description>
        <pubDate>Mon, 08 Jul 2019 10:59:02 +0000</pubDate>
        <dc:creator>Yamin Friedman &lt;yaminf@mellanox.com&gt;</dc:creator>
    </item>
<item>
        <title>4f75da36 - linux/dim: Move implementation to .c files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/lib/dim/Makefile#4f75da36</link>
        <description>linux/dim: Move implementation to .c filesMoved all logic from dim.h and net_dim.h to dim.c and net_dim.c.This is both more structurally appealing and would allow to onlyexpose externally used functions.Signed-off-by: Tal Gilboa &lt;talgi@mellanox.com&gt;Signed-off-by: Saeed Mahameed &lt;saeedm@mellanox.com&gt;

            List of files:
            /linux-6.15/lib/dim/Makefile</description>
        <pubDate>Thu, 10 Jan 2019 15:33:17 +0000</pubDate>
        <dc:creator>Tal Gilboa &lt;talgi@mellanox.com&gt;</dc:creator>
    </item>
</channel>
</rss>
