<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 06:46:32 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>031beb4e239bfce798af17f5fe8dba8bcaf13d99 - sys: Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#031beb4e239bfce798af17f5fe8dba8bcaf13d99</link>
        <description>sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 19:54:58 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>dddb1aec4d54ba949201f4a2e3146cfab4a5870f - sys: Retire OPENZFS_CWARNFLAGS now that it is empty.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#dddb1aec4d54ba949201f4a2e3146cfab4a5870f</link>
        <description>sys: Retire OPENZFS_CWARNFLAGS now that it is empty.Reviewed by:	markj, emasteDifferential Revision:	https://reviews.freebsd.org/D39217

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Wed, 22 Mar 2023 20:35:30 +0100</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d021434a796008efbb93616f5297ed2f55a1a230 - openzfs: fix gcc kernel module builds</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#d021434a796008efbb93616f5297ed2f55a1a230</link>
        <description>openzfs: fix gcc kernel module builds - Suppress -Wredundant-decls.  Ultimately this warning is harmless in   any case, and it does not look like there is a simple way to avoid   redundant declarations in this case without a lot of header pollution   (e.g. having openzfs&apos;s shim param.h pulling in sys/kernel.h for hz). - Suppress -Wnested-externs, which is useless anyway.Unfortunately it was not sufficient just to modify OPENZFS_CFLAGS,because the warning suppressions need to appear on the command lineafter they are explicitly enabled by CWARNFLAGS from sys/conf/kern.mk,but OPENZFS_CFLAGS get added before due to use of -I for the shims.Reviewed by:	markjSponsored by:	Dell EMC IsilonDifferential Revision:	https://reviews.freebsd.org/D27685

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Sun, 27 Dec 2020 23:33:13 +0100</pubDate>
        <dc:creator>Ryan Libby &lt;rlibby@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e25152834cdf3b353892835a4f3b157e066a8ed4 - MFH</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#e25152834cdf3b353892835a4f3b157e066a8ed4</link>
        <description>MFHSponsored by:	Rubicon Communications, LLC (netgate.com)

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Thu, 27 Aug 2020 22:25:33 +0200</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9e5787d2284e187abb5b654d924394a65772e004 - Merge OpenZFS support in to HEAD.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#9e5787d2284e187abb5b654d924394a65772e004</link>
        <description>Merge OpenZFS support in to HEAD.The primary benefit is maintaining a completely sharedcode base with the community allowing FreeBSD to receivenew features sooner and with less effort.I would advise against doing &apos;zpool upgrade&apos;or creating indispensable pools using newfeatures until this change has had a month+to soak.Work on merging FreeBSD support in to what wasat the time &quot;ZFS on Linux&quot; began in August 2018.I first publicly proposed transitioning FreeBSDto (new) OpenZFS on December 18th, 2018. FreeBSDsupport in OpenZFS was finally completed in December2019. A CFT for downstreaming OpenZFS support into FreeBSD was first issued on July 8th. All issuesthat were reported have been addressed or, fora couple of less critical matters there arepull requests in progress with OpenZFS. iXsystemshas tested and dogfooded extensively internally.The TrueNAS 12 release is based on OpenZFS withsome additional features that have not yet madeit upstream.Improvements include:  project quotas, encrypted datasets,  allocation classes, vectorized raidz,  vectorized checksums, various command line  improvements, zstd compression.Thanks to those who have helped along the way:Ryan Moeller, Allan Jude, Zack Welch, and manyothers.Sponsored by:	iXsystems, Inc.Differential Revision:	https://reviews.freebsd.org/D25872

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Tue, 25 Aug 2020 04:21:27 +0200</pubDate>
        <dc:creator>Matt Macy &lt;mmacy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>193d9e768ba63fcfb187cfd17f461f7d41345048 - sys/modules: normalize .CURDIR-relative paths to SRCTOP</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#193d9e768ba63fcfb187cfd17f461f7d41345048</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/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 11:10:17 +0100</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6cec9cad762b6476313fb1f8e931a1647822db6b - MFC @ r266724</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#6cec9cad762b6476313fb1f8e931a1647822db6b</link>
        <description>MFC @ r266724An SVM update will follow this.

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Tue, 03 Jun 2014 04:34:21 +0200</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3b8f08459569bf0faa21473e5cec2491e95c9349 - Merge head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#3b8f08459569bf0faa21473e5cec2491e95c9349</link>
        <description>Merge head

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Mon, 28 Apr 2014 09:50:45 +0200</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>84e51a1b679bececc13cbe3cd3cb9b7d461b9fe7 - IFC @264767</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#84e51a1b679bececc13cbe3cd3cb9b7d461b9fe7</link>
        <description>IFC @264767

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Wed, 23 Apr 2014 23:52:43 +0200</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1709ccf9d38a5753192420ce5fccd93b04ce4d07 - Merge head up to r263906.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#1709ccf9d38a5753192420ce5fccd93b04ce4d07</link>
        <description>Merge head up to r263906.

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Sat, 29 Mar 2014 09:39:53 +0100</pubDate>
        <dc:creator>Martin Matuska &lt;mm@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>50dd852b28257f33e7858588f0f5c25b353cb45e - Use SYSDIR to reference to the top of the sys hierarchy. Define SYSDIR</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#50dd852b28257f33e7858588f0f5c25b353cb45e</link>
        <description>Use SYSDIR to reference to the top of the sys hierarchy. Define SYSDIRrelative to .CURDIR if not already defined. This makes the makefilesmore readable but also more re-usable and adaptable.Obtained from:	Juniper Networks, Inc.

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Thu, 06 Mar 2014 02:59:13 +0100</pubDate>
        <dc:creator>Marcel Moolenaar &lt;marcel@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0bfd163f522701b486e066fa2e56624c02f5081a - Merge head r233826 through r256722.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#0bfd163f522701b486e066fa2e56624c02f5081a</link>
        <description>Merge head r233826 through r256722.

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Fri, 18 Oct 2013 11:32:02 +0200</pubDate>
        <dc:creator>Gleb Smirnoff &lt;glebius@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1ccca3b5e8e31290b0932dbead89e6e31af184c7 - IFC @256277</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#1ccca3b5e8e31290b0932dbead89e6e31af184c7</link>
        <description>IFC @256277Approved by:	ken (mentor)

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Thu, 10 Oct 2013 23:46:43 +0200</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d1d015864103b253b3fcb2f72a0da5b0cfeb31b6 - Merge from head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#d1d015864103b253b3fcb2f72a0da5b0cfeb31b6</link>
        <description>Merge from head

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Thu, 05 Sep 2013 22:18:59 +0200</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>46ed9e4908161615c2e754a3ea63388c74aad8c3 - IFC @ r255209</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#46ed9e4908161615c2e754a3ea63388c74aad8c3</link>
        <description>IFC @ r255209

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Wed, 04 Sep 2013 22:55:56 +0200</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>40f65a4df509c6b29b9e72407c7afefe28838844 - IFC @ r254014</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#40f65a4df509c6b29b9e72407c7afefe28838844</link>
        <description>IFC @ r254014

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Wed, 07 Aug 2013 02:09:49 +0200</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c319ea15f4eea35e673769f77cceaeeae5c87e00 - opensolaris code: translate INVARIANTS to DEBUG and ZFS_DEBUG</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#c319ea15f4eea35e673769f77cceaeeae5c87e00</link>
        <description>opensolaris code: translate INVARIANTS to DEBUG and ZFS_DEBUGDo this by forcing inclusion ofsys/cddl/compat/opensolaris/sys/debug_compat.hvia -include option into all source files from OpenSolaris.Note that this -include option must always be after -include opt_global.h.Additionally, remove forced definition of DEBUG for some modules and fixtheir build without DEBUG.Also, meaning of DEBUG was overloaded to enable WITNESS support for someOpenSolaris (primarily ZFS) locks.  Now this overloading is removed andthat use of DEBUG is replaced with a new option OPENSOLARIS_WITNESS.MFC after:	17 days

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Tue, 06 Aug 2013 17:51:56 +0200</pubDate>
        <dc:creator>Andriy Gapon &lt;avg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b8915e90a27946bcfdbe54971a748ff966bbbf14 - Add the DTrace kernel module makefiles.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#b8915e90a27946bcfdbe54971a748ff966bbbf14</link>
        <description>Add the DTrace kernel module makefiles.

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Sat, 17 May 2008 04:31:19 +0200</pubDate>
        <dc:creator>John Birrell &lt;jb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b8915e90a27946bcfdbe54971a748ff966bbbf14 - Add the DTrace kernel module makefiles.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/dtrace/dtmalloc/Makefile#b8915e90a27946bcfdbe54971a748ff966bbbf14</link>
        <description>Add the DTrace kernel module makefiles.

            List of files:
            /freebsd/sys/modules/dtrace/dtmalloc/Makefile</description>
        <pubDate>Sat, 17 May 2008 04:31:19 +0200</pubDate>
        <dc:creator>John Birrell &lt;jb@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
