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

            List of files:
            /freebsd-14.2/lib/libprocstat/zfs/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9e5787d2 - Merge OpenZFS support in to HEAD.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libprocstat/zfs/Makefile#9e5787d2</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-14.2/lib/libprocstat/zfs/Makefile</description>
        <pubDate>Tue, 25 Aug 2020 02:21:27 +0000</pubDate>
        <dc:creator>Matt Macy &lt;mmacy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8a719b0c - libprocstat: fix ZFS support</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libprocstat/zfs/Makefile#8a719b0c</link>
        <description>libprocstat: fix ZFS supportFirst of all, znode_phys_t hasn&apos;t been used for storing file attributesfor a long time now.  Modern ZFS versions use a System Attribute tablewith a flexible layout.  But more importantly all the requiredinformation is available in znode_t itself.It&apos;s not easy to include zfs_znode.h in userland without breaking codebecause the most interesting parts of the header are kernel-only. Andhardcoding field offsets is too fragile.  So, I created a newcompilation unit that includes zfs_znode.h using some mild kludges toget it and its dependencies to compile in userland.  The compilationunit exports interesting field offsets and does not have any other code.PR:		194117Reviewed by:	markjMFC after:	2 weeksSponsored by:	PanzuraDifferential Revision: https://reviews.freebsd.org/D24941

            List of files:
            /freebsd-14.2/lib/libprocstat/zfs/Makefile</description>
        <pubDate>Fri, 22 May 2020 11:20:23 +0000</pubDate>
        <dc:creator>Andriy Gapon &lt;avg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7fca1b93 - Do not blindly include illumos kernel headers instead of user-space.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libprocstat/zfs/Makefile#7fca1b93</link>
        <description>Do not blindly include illumos kernel headers instead of user-space.It is not needed now, and I doubt it much helped at all, creating moreconfusions then good.

            List of files:
            /freebsd-14.2/lib/libprocstat/zfs/Makefile</description>
        <pubDate>Thu, 02 Aug 2018 18:55:55 +0000</pubDate>
        <dc:creator>Alexander Motin &lt;mav@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bc77d8f4 - Use SRCTOP-relative paths and .CURDIR with :H instead of &quot;..&quot; specified paths</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libprocstat/zfs/Makefile#bc77d8f4</link>
        <description>Use SRCTOP-relative paths and .CURDIR with :H instead of &quot;..&quot; specified pathsThis implifies pathing in make/displayed outputMFC after:    3 weeksSponsored by: Dell EMC Isilon

            List of files:
            /freebsd-14.2/lib/libprocstat/zfs/Makefile</description>
        <pubDate>Fri, 20 Jan 2017 04:38:54 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0daf62d9 - - Commit work from libprocstat project.  These patches add support for runtime</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libprocstat/zfs/Makefile#0daf62d9</link>
        <description>- Commit work from libprocstat project.  These patches add support for runtime  file and processes information retrieval from the running kernel via sysctl  in the form of new library, libprocstat.  The library also supports KVM backend  for analyzing memory crash dumps.  Both procstat(1) and fstat(1) utilities have  been modified to take advantage of the library (as the bonus point the fstat(1)  utility no longer need superuser privileges to operate), and the procstat(1)  utility is now able to display information from memory dumps as well.  The newly introduced fuser(1) utility also uses this library and able to operate  via sysctl and kvm backends.  The library is by no means complete (e.g. KVM backend is missing vnode name  resolution routines, and there&apos;re no manpages for the library itself) so I  plan to improve it further.  I&apos;m commiting it so it will get wider exposure  and review.  We won&apos;t be able to MFC this work as it relies on changes in HEAD, which  was introduced some time ago, that break kernel ABI.  OTOH we may be able  to merge the library with KVM backend if we really need it there.Discussed with:	rwatson

            List of files:
            /freebsd-14.2/lib/libprocstat/zfs/Makefile</description>
        <pubDate>Thu, 12 May 2011 10:11:39 +0000</pubDate>
        <dc:creator>Stanislav Sedov &lt;stas@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
