<?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>031beb4e - sys: Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#031beb4e</link>
        <description>sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:54:58 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>514fb387 - LinuxKPI: define LINUXKPI_INCLUDES for module builds as well</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#514fb387</link>
        <description>LinuxKPI: define LINUXKPI_INCLUDES for module builds as wellWhile for in-kernel we already have LINUXKPI_INCLUDES in kern.pre.mkfor kmod builds we&apos;ve not had a common define to use leading to variousspellings of include paths.In order for the include list to be expanded more easily in the future,e.g., adding the &quot;dummy&quot; includes (for all) and to harmonize code,duplicate LINUXKPI_INCLUDES to kmod.mk and use it for all module Makefiles.MFC after:	1 weekReviewed by:	hselaskyDifferential Revision: https://reviews.freebsd.org/D36683

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Fri, 23 Sep 2022 21:18:45 +0000</pubDate>
        <dc:creator>Bjoern A. Zeeb &lt;bz@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>15fe2513 - Introduce LINUXKPI_GENSRCS.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#15fe2513</link>
        <description>Introduce LINUXKPI_GENSRCS.Centralize the list of generated files required by linuxkpi consumers,into the common variable.  This way, consumers that use the variableare insulated from possible changes in the list.Reviewed by:	hselasky, impSponsored by:	Mellanox TechnologiesMFC after:	1 weekDifferential revision:	https://reviews.freebsd.org/D24137

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Fri, 20 Mar 2020 21:06:58 +0000</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>84b3c454 - Add pci_iov_if.h header as a dependency for Linuxkpi consumers.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#84b3c454</link>
        <description>Add pci_iov_if.h header as a dependency for Linuxkpi consumers.Sponsored by:	Mellanox TechnologiesMFC after:	2 weeks

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Wed, 18 Mar 2020 22:09:16 +0000</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8cc48704 - Update mlx4ib(4) to Linux 4.9.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#8cc48704</link>
        <description>Update mlx4ib(4) to Linux 4.9.Sponsored by:	Mellanox Technologies

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Mon, 13 Nov 2017 10:49:18 +0000</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>193d9e76 - sys/modules: normalize .CURDIR-relative paths to SRCTOP</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#193d9e76</link>
        <description>sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with:	`cd sys/modules; make ALL_MODULES=` on amd64MFC after:	1 monthSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 10:10:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>97549c34 - Move the ConnectX-3 and ConnectX-2 driver from sys/ofed into sys/dev/mlx4</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#97549c34</link>
        <description>Move the ConnectX-3 and ConnectX-2 driver from sys/ofed into sys/dev/mlx4like other PCI network drivers. The sys/ofed directory is now mainlyreserved for generic infiniband code, with exception of the mthca driver.- Add new manual page, mlx4en(4), describing how to configure and loadmlx4en.- All relevant driver C-files are now prefixed mlx4, mlx4_en andmlx4_ib respectivly to avoid object filename collisions when compilingthe kernel. This also fixes an issue with proper dependency filegeneration for the C-files in question.- Device mlxen is now device mlx4en and depends on device mlx4, seemlx4en(4). Only the network device name remains unchanged.- The mlx4 and mlx4en modules are now built by default on i386 andamd64 targets. Only building the mlx4ib module depends onWITH_OFED=YES .Sponsored by:	Mellanox Technologies

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Fri, 30 Sep 2016 08:23:06 +0000</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8d59ecb2 - Finish process of moving the LinuxKPI module into the default kernel build.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#8d59ecb2</link>
        <description>Finish process of moving the LinuxKPI module into the default kernel build.- Move all files related to the LinuxKPI into sys/compat/linuxkpi and  its subfolders.- Update sys/conf/files and some Makefiles to use new file locations.- Added description of COMPAT_LINUXKPI to sys/conf/NOTES which in turn  adds the LinuxKPI to all LINT builds.- The LinuxKPI can be added to the kernel by setting the  COMPAT_LINUXKPI option. The OFED kernel option no longer builds the  LinuxKPI into the kernel. This was done to keep the build rules for  the LinuxKPI in sys/conf/files simple.- Extend the LinuxKPI module to include support for USB by moving the  Linux USB compat from usb.ko to linuxkpi.ko.- Bump the FreeBSD_version.- A universe kernel build has been done.Reviewed by:	np @ (cxgb and cxgbe related changes only)Sponsored by:	Mellanox Technologies

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Thu, 29 Oct 2015 08:28:39 +0000</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cc4a90c4 - Globally enable -fms-extensions when building kernel with gcc, and remove</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#cc4a90c4</link>
        <description>Globally enable -fms-extensions when building kernel with gcc, and removethis option from all modules that enable it theirselves.  In C mode -fms-extensions option enables anonymous structs and unions,allowing us to use this C11 feature in kernel. Of course, clang supportsit without any extra options.Reviewed by:	dim

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Tue, 17 Feb 2015 19:27:14 +0000</pubDate>
        <dc:creator>Gleb Smirnoff &lt;glebius@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b5c1e0cb - Update the infiniband stack to Mellanox&apos;s OFED version 2.1.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#b5c1e0cb</link>
        <description>Update the infiniband stack to Mellanox&apos;s OFED version 2.1.Highlights: - Multiple verbs API updates - Support for RoCE, RDMA over ethernetAll hardware drivers depending on the common infiniband stack has beenupdated aswell.Discussed with:	np @Sponsored by:	Mellanox TechnologiesMFC after:	1 month

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Tue, 17 Feb 2015 08:40:27 +0000</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e982e5c5 - Start importing the basic OFED linux compatibility layer changes made</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#e982e5c5</link>
        <description>Start importing the basic OFED linux compatibility layer changes madeby dumbbell@ to be able to compile this layer as a dependency module.Clean up some Makefiles and remove the no longer used OFED define.Currently only i386 and amd64 targets are supported.MFC after:		1 monthSponsored by:		Mellanox Technologies

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Sat, 17 Jan 2015 16:36:39 +0000</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c7818b48 - - Update the OFED Linux Emulation layer as a preparation for a</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#c7818b48</link>
        <description>- Update the OFED Linux Emulation layer as a preparation for ahardware driver update from Mellanox Technologies.- Remove empty files from the OFED Linux Emulation layer.- Fix compile warnings related to printf() and the &quot;%lld&quot; and &quot;%llx&quot;format specifiers.- Add some missing 2-clause BSD copyrights.- Add &quot;Mellanox Technologies, Ltd.&quot; to list of copyright holders.- Add some new compatibility files.- Fix order of uninit in the mlx4ib module to avoid crash at unloadusing the new module_exit_order() function.MFC after:	1 weekSponsored by:	Mellanox Technologies

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Wed, 27 Aug 2014 13:21:53 +0000</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aeaed508 - Move most of the 15 variations on generating opt_inet.h and</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#aeaed508</link>
        <description>Move most of the 15 variations on generating opt_inet.h andopt_inet6.h into kmod.mk by forcing almost everybody to eat the samedogfood. While at it, consolidate the opt_bpf.h and opt_mroute.htargets here too.

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Mon, 04 Aug 2014 22:37:02 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c6063d0d - Use src.opts.mk in preference to bsd.own.mk except where we need stuff</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#c6063d0d</link>
        <description>Use src.opts.mk in preference to bsd.own.mk except where we need stufffrom the latter.

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Tue, 06 May 2014 04:22:01 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>86390f94 - Similar to r260020, only use -fms-extensions with gcc, for all other</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#86390f94</link>
        <description>Similar to r260020, only use -fms-extensions with gcc, for all othermodules which require this flag to compile.  Use a GCC_MS_EXTENSIONSvariable, defined in kern.pre.mk, which can be used to easily supply theflag (or not), depending on the compiler type.MFC after:	3 days

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Mon, 30 Dec 2013 20:34:53 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c9f432b7 - Update OFED to Linux 3.7 and update Mellanox drivers.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#c9f432b7</link>
        <description>Update OFED to Linux 3.7 and update Mellanox drivers.Update the OFED Infiniband core to the version supplied in Linuxversion 3.7.The update to OFED is nearly all additional defines and functionswith the exception of the addition of additional parameters toib_register_device() and the reg_user_mr callback.In addition the ibcore (Infiniband core) and ipoib (IP over Infiniband)have both been made into completely loadable modules to facilitatetesting of the OFED stack in FreeBSD.Finally the Mellanox Infiniband drivers are now updated to thelatest version shipping with Linux 3.7.Submitted by: Mellanox FreeBSD driver team:                Oded Shanoon (odeds mellanox.com),                Meny Yossefi (menyy mellanox.com),                Orit Moskovich (oritm mellanox.com)Approved by: re

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Sun, 29 Sep 2013 00:35:03 +0000</pubDate>
        <dc:creator>Alfred Perlstein &lt;alfred@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ed5a2b61 - Add OFED and the associated options and drivers to x86 LINT builds:</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#ed5a2b61</link>
        <description>Add OFED and the associated options and drivers to x86 LINT builds:- Mark &apos;sdp&apos; as requiring &apos;inet&apos;.- Always include &quot;opt_inet.h&quot; and &quot;opt_inet6.h&quot; and modify the IB  driver Makefiles to honor WITH/WITHOUT_INET/INET6/_SUPPORT options  to determine what should be enabled during a module build.- Fix the mlxen(4) driver and the core IB code to compile without  if INET is disabled (including when both INET and INET6 are disabled).Reviewed by:	bzMFC after:	2 weeks

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Thu, 12 Apr 2012 14:01:06 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aa0a1e58 - - Merge in OFED 1.5.3 from projects/ofed/head</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/mlx4ib/Makefile#aa0a1e58</link>
        <description>- Merge in OFED 1.5.3 from projects/ofed/head

            List of files:
            /freebsd-14.2/sys/modules/mlx4ib/Makefile</description>
        <pubDate>Mon, 21 Mar 2011 09:58:24 +0000</pubDate>
        <dc:creator>Jeff Roberson &lt;jeff@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
