<?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>aba2af99 - examples/multi_process: add SPDX license tag to makefiles</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#aba2af99</link>
        <description>examples/multi_process: add SPDX license tag to makefilesThe makefiles for some of the multi_process example files were missingSPDX license headers, so add them. These Makefiles completely replacedthe older makefiles and were written from scratch, not based on previousversions, so add a new copyright year on them.Fixes: 13abe17c3cd4 (&quot;examples/multi_process: convert to pkg-config-based build&quot;)Suggested-by: Stephen Hemminger &lt;stephen@networkplumber.org&gt;Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Mon, 16 Nov 2020 09:33:37 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>13abe17c - examples/multi_process: convert to pkg-config-based build</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#13abe17c</link>
        <description>examples/multi_process: convert to pkg-config-based buildRemove references to the old make build system and use pkg-config forbuilding these examples.Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Thu, 03 Sep 2020 15:26:42 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>e9c65942 - examples: detect default build directory</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#e9c65942</link>
        <description>examples: detect default build directoryMost examples have in their makefiles a default RTE_TARGET directory to beused in case RTE_TARGET is not set. Rather than just using a hard-codeddefault, we can instead detect what the build directory is relative toRTE_SDK directory.This fixes a potential issue for anyone who continues to build using&quot;make install T=x86_64-native-linuxapp-gcc&quot; and skips setting RTE_TARGETexplicitly, instead relying on the fact that they were building in adirectory which corresponded to the example default path - which waschanged to &quot;x86_64-native-linux-gcc&quot; by commit 218c4e68c1d9 (&quot;mk: uselinux and freebsd in config names&quot;).Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;Acked-by: Ferruh Yigit &lt;ferruh.yigit@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Wed, 27 Mar 2019 13:58:05 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>218c4e68 - mk: use linux and freebsd in config names</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#218c4e68</link>
        <description>mk: use linux and freebsd in config namesRather than using linuxapp and bsdapp everywhere, we can change things touse the, more readable, terms &quot;linux&quot; and &quot;freebsd&quot; in our build configs.Rather than renaming the configs we can just duplicate the existing oneswith the new names using symlinks, and use the new names exclusivelyinternally. [&quot;make showconfigs&quot; also only shows the new names to keep thelist short] The result is that backward compatibility is kept fully but anynew builds or development can be done using the newer names, i.e.  both&quot;make config T=x86_64-native-linuxapp-gcc&quot; and &quot;T=x86_64-native-linux-gcc&quot;work.Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Wed, 06 Mar 2019 16:22:42 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>742bde12 - build/linux: rename macro from LINUXAPP to LINUX</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#742bde12</link>
        <description>build/linux: rename macro from LINUXAPP to LINUXRename the macro to make things shorter and more comprehensible. Forboth meson and make builds, keep the old macro around for backwardcompatibility.Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Wed, 06 Mar 2019 16:22:39 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>05f1d684 - examples/multi_process: add hotplug sample</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#05f1d684</link>
        <description>examples/multi_process: add hotplug sampleThe sample code demonstrates device (ethdev only) managementat a multi-process environment. The user can attach/detach adevice on primary process and see it is synced on secondaryprocess automatically.How to start?./hotplug_mp --proc-type=autoCommand Line Example:&gt;help&gt;list/* attach a pci device */&gt; attach 0000:81:00.0/* detach the pci device */&gt; detach 0000:81:00.0/* attach a vdev af_packet device */&gt; attach net_af_packet,iface=eth0/* detach the vdev af_packet device */&gt; detach net_af_packetSigned-off-by: Qi Zhang &lt;qi.z.zhang@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Tue, 16 Oct 2018 00:16:32 +0000</pubDate>
        <dc:creator>Qi Zhang &lt;qi.z.zhang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3504db92 - examples/multi_process: remove l2fwd fork example</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#3504db92</link>
        <description>examples/multi_process: remove l2fwd fork examplel2fwd_fork relies on a multiprocess model that DPDK does not support(calling rte_eal_init() before fork()), in particular in light of recentEAL changes like the multiproess communication channel.This example can mislead users into thinking this is a supportedmultiprocess model; hence, this commit removes this example and thecorresponding user guide documentation as well.This patch was made following this mailing list discussion:http://mails.dpdk.org/archives/dev/2018-July/108106.htmlSigned-off-by: Gage Eads &lt;gage.eads@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Mon, 30 Jul 2018 15:10:00 +0000</pubDate>
        <dc:creator>Gage Eads &lt;gage.eads@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>26fd4b73 - examples/multi_process: build l2fwd_fork app</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#26fd4b73</link>
        <description>examples/multi_process: build l2fwd_fork appl2fwd_fork is not complied by default, this will make it compileFixes: 95e8005a56e8 (&quot;examples/l2fwd_fork: new app&quot;)Signed-off-by: Emma Kenny &lt;emma.kenny@intel.com&gt;Acked-by: Ferruh Yigit &lt;ferruh.yigit@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Tue, 03 Jul 2018 16:16:45 +0000</pubDate>
        <dc:creator>Emma Kenny &lt;emma.kenny@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3998e2a0 - examples: use SPDX tag for Intel copyright files</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#3998e2a0</link>
        <description>examples: use SPDX tag for Intel copyright filesReplace the BSD license header with the SPDX tag for fileswith only an Intel copyright on them.Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Tue, 19 Dec 2017 15:49:02 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>98a7ea33 - fix typos using codespell utility</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#98a7ea33</link>
        <description>fix typos using codespell utilityFixing typos across dpdk source code using codespell utility.Skipped the ethdev driver&apos;s base code fixes to keep the basecode intact.Signed-off-by: Jerin Jacob &lt;jerin.jacob@caviumnetworks.com&gt;Acked-by: John McNamara &lt;john.mcnamara@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Wed, 07 Jun 2017 05:05:06 +0000</pubDate>
        <dc:creator>Jerin Jacob &lt;jerin.jacob@caviumnetworks.com&gt;</dc:creator>
    </item>
<item>
        <title>3031749c - remove trailing whitespaces</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#3031749c</link>
        <description>remove trailing whitespacesThis commit removes trailing whitespace from lines in files. Almost allfiles are affected, as the BSD license copyright header had trailingwhitespace on 4 lines in it [hence the number of files reporting 8 lineschanged in the diffstat].Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;Acked-by: Neil Horman &lt;nhorman@tuxdriver.com&gt;[Thomas: remove spaces before tabs in libs][Thomas: remove more trailing spaces in non-C files]Signed-off-by: Thomas Monjalon &lt;thomas.monjalon@6wind.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Tue, 03 Jun 2014 23:42:50 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>519f3227 - config: rename &quot;default&quot; configurations as &quot;native&quot;</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#519f3227</link>
        <description>config: rename &quot;default&quot; configurations as &quot;native&quot;The &quot;default&quot; part in configuration filenames is misleading.Rename this as &quot;native&quot;, as this is the RTE_MACHINE that is set in these files.This should make it clearer for people who build DPDK on a system then run it onanother one.Signed-off-by: David Marchand &lt;david.marchand@6wind.com&gt;Acked-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Wed, 14 May 2014 14:58:08 +0000</pubDate>
        <dc:creator>David Marchand &lt;david.marchand@6wind.com&gt;</dc:creator>
    </item>
<item>
        <title>f71d637c - examples: use rte.extsubdir.mk to build examples with subdirectories</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#f71d637c</link>
        <description>examples: use rte.extsubdir.mk to build examples with subdirectoriesSigned-off-by: Olivier Matz &lt;olivier.matz@6wind.com&gt;Acked-by: Thomas Monjalon &lt;thomas.monjalon@6wind.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Fri, 16 May 2014 08:18:57 +0000</pubDate>
        <dc:creator>Olivier Matz &lt;olivier.matz@6wind.com&gt;</dc:creator>
    </item>
<item>
        <title>e9d48c00 - update Intel copyright years to 2014</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#e9d48c00</link>
        <description>update Intel copyright years to 2014Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Mon, 10 Feb 2014 11:46:50 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1c1d4d7a - doc: whitespace changes in licenses</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#1c1d4d7a</link>
        <description>doc: whitespace changes in licensesSigned-off-by: Intel

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Wed, 18 Sep 2013 10:00:00 +0000</pubDate>
        <dc:creator>Intel &lt;intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b6df9fc8 - update copyright date to 2013</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#b6df9fc8</link>
        <description>update copyright date to 2013Signed-off-by: Intel

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Tue, 12 Mar 2013 11:03:00 +0000</pubDate>
        <dc:creator>Intel &lt;intel.com&gt;</dc:creator>
    </item>
<item>
        <title>dada9ef6 - remove version in all files</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#dada9ef6</link>
        <description>remove version in all filesSigned-off-by: Intel

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Wed, 19 Dec 2012 23:00:00 +0000</pubDate>
        <dc:creator>Intel &lt;intel.com&gt;</dc:creator>
    </item>
<item>
        <title>af75078f - first public release</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/multi_process/Makefile#af75078f</link>
        <description>first public releaseversion 1.2.3Signed-off-by: Intel

            List of files:
            /dpdk/examples/multi_process/Makefile</description>
        <pubDate>Tue, 04 Sep 2012 12:54:00 +0000</pubDate>
        <dc:creator>Intel &lt;intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
