<?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>a2fe35df - net: intel: Use *-y instead of *-objs in Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#a2fe35df</link>
        <description>net: intel: 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 worksfor that purpose for now).Let&apos;s correct the old usages of *-objs in Makefiles.Reviewed-by: Aleksandr Loktionov &lt;aleksandr.loktionov@intel.com&gt;Reviewed-by: Alexander Lobakin &lt;aleksander.lobakin@intel.com&gt;Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Reviewed-by: Jacob Keller &lt;jacob.e.keller@intel.com&gt;Tested-by: Pucha Himasekhar Reddy &lt;himasekharx.reddy.pucha@intel.com&gt;Signed-off-by: Jacob Keller &lt;jacob.e.keller@intel.com&gt;Link: https://lore.kernel.org/r/20240607-next-2024-06-03-intel-next-batch-v3-1-d1470cee3347@intel.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Fri, 07 Jun 2024 21:22:32 +0000</pubDate>
        <dc:creator>Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>9e479d64 - i40e: Add initial devlink support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#9e479d64</link>
        <description>i40e: Add initial devlink supportAdd an initial support for devlink interface to i40e driver.Similarly to ice driver the implementation doe not enable devlinkto manage device-wide configuration and devlink instance is createdfor each physical function of PCIe device.Signed-off-by: Ivan Vecera &lt;ivecera@redhat.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Fri, 13 Oct 2023 17:07:51 +0000</pubDate>
        <dc:creator>Ivan Vecera &lt;ivecera@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>cdc594e0 - i40e: Implement DDP support in i40e driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#cdc594e0</link>
        <description>i40e: Implement DDP support in i40e driverThis patch introduces DDP (Dynamic Device Personalization) which allowsloading profiles that change the way internal parser interprets processedframes. To load DDP profiles it utilizes ethtool flash feature. The fileswith recipes must be located in /var/lib/firmware directory. Afterwardsthe recipe can be loaded by invoking:    ethtool -f &lt;if_name&gt; &lt;file_name&gt; 100    ethtool -f &lt;if_name&gt; - 100See further details of this feature in the i40e documentation, orvisithttps://www.intel.com/content/www/us/en/architecture-and-technology/ethernet/dynamic-device-personalization-brief.htmlThe driver shall verify DDP profile can be loaded in accordance withthe rules:* Package with Group ID 0 are exclusive and can only be loaded the first.* Packages with Group ID 0x01-0xFE can only be loaded simultaneously   with the packages from the same group.* Packages with Group ID 0xFF are compatible with all other packages.Signed-off-by: Aleksandr Loktionov &lt;aleksandr.loktionov@intel.com&gt;Tested-by: Andrew Bowers &lt;andrewx.bowers@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Wed, 06 Feb 2019 23:08:16 +0000</pubDate>
        <dc:creator>Aleksandr Loktionov &lt;aleksandr.loktionov@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>0a714186 - i40e: add AF_XDP zero-copy Rx support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#0a714186</link>
        <description>i40e: add AF_XDP zero-copy Rx supportThis patch adds zero-copy Rx support for AF_XDP sockets. Instead ofallocating buffers of type MEM_TYPE_PAGE_SHARED, the Rx frames areallocated as MEM_TYPE_ZERO_COPY when AF_XDP is enabled for a certainqueue.All AF_XDP specific functions are added to a new file, i40e_xsk.c.Note that when AF_XDP zero-copy is enabled, the XDP action XDP_PASSwill allocate a new buffer and copy the zero-copy frame prior passingit to the kernel stack.Signed-off-by: Bj&#246;rn T&#246;pel &lt;bjorn.topel@intel.com&gt;Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Tue, 28 Aug 2018 12:44:32 +0000</pubDate>
        <dc:creator>Bj&#246;rn T&#246;pel &lt;bjorn.topel@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>51dce24b - net: intel: Cleanup the copyright/license headers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#51dce24b</link>
        <description>net: intel: Cleanup the copyright/license headersAfter many years of having a ~30 line copyright and license header to oursource files, we are finally able to reduce that to one line with theadvent of the SPDX identifier.Also caught a few files missing the SPDX license identifier, so fixedthem up.Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;Acked-by: Shannon Nelson &lt;shannon.nelson@oracle.com&gt;Acked-by: Richard Cochran &lt;richardcochran@gmail.com&gt;Tested-by: Andrew Bowers &lt;andrewx.bowers@intel.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Thu, 26 Apr 2018 15:08:09 +0000</pubDate>
        <dc:creator>Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ae06c70b - intel: add SPDX identifiers to all the Intel drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#ae06c70b</link>
        <description>intel: add SPDX identifiers to all the Intel driversAdd the SPDX identifiers to all the Intel wired LAN driver files, asoutlined in Documentation/process/license-rules.rst.Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;Tested-by: Aaron Brown &lt;aaron.f.brown@intel.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Thu, 22 Mar 2018 17:08:48 +0000</pubDate>
        <dc:creator>Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ed0980c4 - i40e/i40evf: Add tracepoints</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#ed0980c4</link>
        <description>i40e/i40evf: Add tracepointsThis patch adds tracepoints to the i40e and i40evf drivers to whichBPF programs can be attached for feature testing and verification.It&apos;s expected that an attached BPF program will identify and count orlog some interesting subset of traffic. The bcc-tools package ishelpful there for containing all the BPF arcana in a handy Pythonwrapper. Though you can make these tracepoints log trace messages, themessages themselves probably won&apos;t be very useful (other to verify thetracepoint is being called while you&apos;re debugging your BPF program).The idea here is that tracepoints have such low performance cost whendisabled that we can leave these in the upstream drivers. This mayeventually enable the instrumentation of unmodified customer systemsshould the need arise to verify a NIC feature is working as expected.In general this enables one set of feature verification tools to beused on these drivers whether they&apos;re built with the kernel orseparately.Users are advised against using these tracepoints for anything otherthan a diagnostic tool. They have a performance impact when enabled,and their exact placement and form may change as we see how well theywork in practice for the purposes above.Change-ID: Id6014a7322c0e6d08068114dd20bd156f2f6435eSigned-off-by: Scott Peterson &lt;scott.d.peterson@intel.com&gt;Tested-by: Andrew Bowers &lt;andrewx.bowers@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Thu, 13 Apr 2017 08:45:44 +0000</pubDate>
        <dc:creator>Scott Peterson &lt;scott.d.peterson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>9eed69a9 - i40e: Drop FCoE code from core driver files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#9eed69a9</link>
        <description>i40e: Drop FCoE code from core driver filesLooking over the code for FCoE it looks like the Rx path has been broken atleast since the last major Rx refactor almost a year ago.  It seems likeFCoE isn&apos;t supported for any of the Fortville/Fortpark hardware so thereisn&apos;t much point in carrying the code around, especially if it is brokenand untested.Change-ID: I892de8fa551cb129ce2361e738ff82ce55fa229eSigned-off-by: Alexander Duyck &lt;alexander.h.duyck@intel.com&gt;Tested-by: Andrew Bowers &lt;andrewx.bowers@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Tue, 21 Feb 2017 23:55:47 +0000</pubDate>
        <dc:creator>Alexander Duyck &lt;alexander.h.duyck@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>e3219ce6 - i40e: Add support for client interface for IWARP driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#e3219ce6</link>
        <description>i40e: Add support for client interface for IWARP driverThis patch adds a Client interface for i40iw driversupport. Also expands the Virtchannel to support messagesfrom i40evf driver on behalf of i40iwvf driver.This client API is used by the i40iw and i40iwvf driverto access the core driver resources brokered by the i40e driver.Signed-off-by: Anjali Singhai Jain &lt;anjali.singhai@intel.com&gt;Signed-off-by: Doug Ledford &lt;dledford@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Wed, 20 Jan 2016 19:40:01 +0000</pubDate>
        <dc:creator>Anjali Singhai Jain &lt;anjali.singhai@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>cd77f5e1 - i40e: Strip configfs code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#cd77f5e1</link>
        <description>i40e: Strip configfs codeThe use of configfs is not allowed in network drivers.  Strip the code thatuses it.Signed-off-by: Greg Rose &lt;gregory.v.rose@intel.com&gt;Tested-by: Jim Young &lt;james.m.young@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Fri, 06 Mar 2015 01:41:07 +0000</pubDate>
        <dc:creator>Greg Rose &lt;gregory.v.rose@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>96664483 - i40e: Implement configfs for NPAR BW configuration</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#96664483</link>
        <description>i40e: Implement configfs for NPAR BW configurationAdd configfs controls to get, set and commit NPAR BW configurations.We export three controls:	min_bw - Can take a value from 0 to 100 inclusive	max_bw - Can take a value from 1 to 100 inclusive	commit - A write-only control that accepts only a value of 1 and will		cause the BW settings to be permanently committed to NVM so		that they are persistent across power cycles and system		resetsThe BW values are relative and are expressed as percentages.  For moreinformation on the interpretation of the BW settings see the Dellspecifications for NPAR.Also update the copyright year.Change-ID: Id7496ca65630b5037e32ba6a5a748fbc1632881bSigned-off-by: Greg Rose &lt;gregory.v.rose@intel.com&gt;Tested-By: Jim Young &lt;james.m.young@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Fri, 06 Feb 2015 08:52:13 +0000</pubDate>
        <dc:creator>Greg Rose &lt;gregory.v.rose@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>776d4e9f - i40e: adds FCoE configure option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#776d4e9f</link>
        <description>i40e: adds FCoE configure optionAdds FCoE config option I40E_FCOE, so that FCoE can be enabledas needed but otherwise have it disabled by default.This also eliminate multiple FCoE config checks, instead now justone config check for CONFIG_I40E_FCOE.The I40E FCoE was added with 3.17 kernel and therefore this patchshall be applied to stable 3.17 kernel also.CC: &lt;stable@vger.kernel.org&gt;Signed-off-by: Vasu Dev &lt;vasu.dev@intel.com&gt;Tested-by: Jim Young &lt;jamesx.m.young@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Wed, 14 Jan 2015 13:14:07 +0000</pubDate>
        <dc:creator>Vasu Dev &lt;vasu.dev@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>38758f55 - i40e: adds FCoE to build and updates its documentation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#38758f55</link>
        <description>i40e: adds FCoE to build and updates its documentationAdds newly added FCoE files to the build but only if FCoE module is configured.Also, updates i40e document for added FCoE support.Signed-off-by: Vasu Dev &lt;vasu.dev@intel.com&gt;Tested-by: Jack Morgan&lt;jack.morgan@intel.com&gt;Signed-off-by: Aaron Brown &lt;aaron.f.brown@intel.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Fri, 01 Aug 2014 20:27:04 +0000</pubDate>
        <dc:creator>Vasu Dev &lt;vasu.dev@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>9d488727 - i40e: add DCB option to Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#9d488727</link>
        <description>i40e: add DCB option to KconfigAllow compiling DCB related files if I40E_DCB optionis supported in the kernel configuration.DCB is disabled by default.Signed-off-by: Neerav Parikh &lt;Neerav.Parikh@intel.com&gt;Signed-off-by: Jesse Brandeburg &lt;jesse.brandeburg@intel.com&gt;Tested-by: Kavindya Deegala &lt;kavindya.s.deegala@intel.com&gt;Tested-By: Jack Morgan&lt;jack.morgan@intel.com&gt;Signed-off-by: Aaron Brown &lt;aaron.f.brown@intel.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Fri, 17 Jan 2014 23:36:38 +0000</pubDate>
        <dc:creator>Neerav Parikh &lt;Neerav.Parikh@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>beb0dff1 - i40e: enable PTP</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#beb0dff1</link>
        <description>i40e: enable PTPNew feature: Enable PTP support in the i40e driver.Change-ID: I6a8e799f582705191f9583afb1b9231a8db96cc8Cc: Richard Cochran &lt;richardcochran@gmail.com&gt;Cc: Ben Hutchings &lt;bhutchings@solarflare.com&gt;Signed-off-by: Matthew Vick &lt;matthew.vick@intel.com&gt;Signed-off-by: Jacob Keller &lt;jacob.e.keller@intel.com&gt;Signed-off-by: Jesse Brandeburg &lt;jesse.brandeburg@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Sat, 11 Jan 2014 05:43:19 +0000</pubDate>
        <dc:creator>Jacob Keller &lt;jacob.e.keller@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>dc641b73 - i40e: Fix GPL header</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#dc641b73</link>
        <description>i40e: Fix GPL headerThe GPL header included in each file in the i40e driver doesn&apos;tneed to include the &quot;this program&quot; text since this driveris already part of the larger kernel.Signed-off-by: Greg Rose &lt;gregory.v.rose@intel.com&gt;Signed-off-by: Jesse Brandeburg &lt;jesse.brandeburg@intel.com&gt;Tested-by: Kavindya Deegala &lt;kavindya.s.deegala@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Wed, 18 Dec 2013 13:45:51 +0000</pubDate>
        <dc:creator>Greg Rose &lt;gregory.v.rose@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1bff6529 - i40e: include i40e in kernel proper</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/intel/i40e/Makefile#1bff6529</link>
        <description>i40e: include i40e in kernel properThis patch adds the changes for Kconfig, i40e.txt, MAINTAINERS, Kbuildand new i40e/Makefile to build i40e with the kernel.New driver build option is CONFIG_I40ESigned-off-by: Jesse Brandeburg &lt;jesse.brandeburg@intel.com&gt;Signed-off-by: Shannon Nelson &lt;shannon.nelson@intel.com&gt;CC: PJ Waskiewicz &lt;peter.p.waskiewicz.jr@intel.com&gt;CC: e1000-devel@lists.sourceforge.netTested-by: Kavindya Deegala &lt;kavindya.s.deegala@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/intel/i40e/Makefile</description>
        <pubDate>Wed, 11 Sep 2013 08:40:23 +0000</pubDate>
        <dc:creator>Jesse Brandeburg &lt;jesse.brandeburg@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
