<?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 COPYRIGHT</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>26fd3d56 - ntp: import ntp-4.2.8p16</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#26fd3d56</link>
        <description>ntp: import ntp-4.2.8p16Security:	NtpBug3767, NtpBug3808, NtpBug3807 (CVE-2023-26555)

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Thu, 11 May 2023 18:17:53 +0000</pubDate>
        <dc:creator>Cy Schubert &lt;cy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>674627b9 - Happy New Year 2023!</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#674627b9</link>
        <description>Happy New Year 2023!Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Sun, 01 Jan 2023 05:44:43 +0000</pubDate>
        <dc:creator>Li-Wen Hsu &lt;lwhsu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3640e305 - Welcome 2022, update copyrights.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#3640e305</link>
        <description>Welcome 2022, update copyrights.Sponsored by:		Netflix

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Sat, 01 Jan 2022 16:49:49 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c3e89a30 - copyrights: Happy New Year 2021</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#c3e89a30</link>
        <description>copyrights: Happy New Year 2021Good riddance 2020.Sponsored by:	Rubicon Communications, LLC (netgate.com)

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Thu, 31 Dec 2020 15:23:36 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3b0ce0e2 - Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936b</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#3b0ce0e2</link>
        <description>Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936bSponsored by:	iX Systems, Inc.

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Mon, 24 Aug 2020 22:48:19 +0000</pubDate>
        <dc:creator>Matt Macy &lt;mmacy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>dd4bc569 - Fix typos</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#dd4bc569</link>
        <description>Fix typosCorrect various typos in the comments and tests.Reviewed-by: Ryan Moeller &lt;ryan@iXsystems.com&gt;Reviewed-by: Matthew Ahrens &lt;mahrens@delphix.com&gt;Reviewed-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;Signed-off-by: Andrea Gelmini &lt;andrea.gelmini@gelma.net&gt;Closes #10423

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Wed, 10 Jun 2020 04:24:09 +0000</pubDate>
        <dc:creator>Andrea Gelmini &lt;andrea.gelmini@gelma.net&gt;</dc:creator>
    </item>
<item>
        <title>6d9daf7d - Import lib9p 7ddb1164407da19b9b1afb83df83ae65a71a9a66.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#6d9daf7d</link>
        <description>Import lib9p 7ddb1164407da19b9b1afb83df83ae65a71a9a66.Approved by:	trasz (mentor)MFC after:	1 monthSponsored by:	Conclusive Engineering

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Wed, 29 Apr 2020 16:24:32 +0000</pubDate>
        <dc:creator>Jakub Wojciech Klama &lt;jceel@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5171bc9b - Import ntp-4.2.8p14.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#5171bc9b</link>
        <description>Import ntp-4.2.8p14.

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Wed, 04 Mar 2020 13:59:29 +0000</pubDate>
        <dc:creator>Cy Schubert &lt;cy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>31b160f0 - ICP: Improve AES-GCM performance</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#31b160f0</link>
        <description>ICP: Improve AES-GCM performanceCurrently SIMD accelerated AES-GCM performance is limited by twofactors:a. The need to disable preemption and interrupts and save the FPUstate before using it and to do the reverse when done. Due to theway the code is organized (see (b) below) we have to pay this pricetwice for each 16 byte GCM block processed.b. Most processing is done in C, operating on single GCM blocks.The use of SIMD instructions is limited to the AES encryption of thecounter block (AES-NI) and the Galois multiplication (PCLMULQDQ).This leads to the FPU not being fully utilized for cryptooperations.To solve (a) we do crypto processing in larger chunks while owningthe FPU. An `icp_gcm_avx_chunk_size` module parameter was introducedto make this chunk size tweakable. It defaults to 32 KiB. This stepalone roughly doubles performance. (b) is tackled by porting andusing the highly optimized openssl AES-GCM assembler routines, whichdo all the processing (CTR, AES, GMULT) in a single routine. Bothsteps together result in up to 32x reduction of the time spend inthe en/decryption routines, leading up to approximately 12xthroughput increase for large (128 KiB) blocks.Lastly, this commit changes the default encryption algorithm fromAES-CCM to AES-GCM when setting the `encryption=on` property.Reviewed-By: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;Reviewed-By: Jason King &lt;jason.king@joyent.com&gt;Reviewed-By: Tom Caputi &lt;tcaputi@datto.com&gt;Reviewed-By: Richard Laager &lt;rlaager@wiktel.com&gt;Signed-off-by: Attila F&#252;l&#246;p &lt;attila@fueloep.org&gt;Closes #9749

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Mon, 10 Feb 2020 20:59:50 +0000</pubDate>
        <dc:creator>Attila F&#252;l&#246;p &lt;attila@fueloep.org&gt;</dc:creator>
    </item>
<item>
        <title>29e12bc7 - Happy New Year 2020!</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#29e12bc7</link>
        <description>Happy New Year 2020!MFC after:	1 minuteSponsored by:	Rubicon Communications, LLC (netgate.com)

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Tue, 31 Dec 2019 16:01:36 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bced7e3a - OpenZFS restructuring - move platform specific sources</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#bced7e3a</link>
        <description>OpenZFS restructuring - move platform specific sourcesMove platform specific Linux source under module/os/linux/and update the build system accordingly.  Additional coderestructuring will follow to make the common code fullyportable.    Reviewed-by: Jorgen Lundman &lt;lundman@lundman.net&gt;Reviewed-by: Igor Kozhukhov &lt;igor@dilos.org&gt;Reviewed-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;Signed-off-by: Matthew Macy &lt;mmacy@FreeBSD.org&gt;Closes #9206

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Fri, 06 Sep 2019 18:26:26 +0000</pubDate>
        <dc:creator>Matthew Macy &lt;mmacy@mattmacy.io&gt;</dc:creator>
    </item>
<item>
        <title>360c0146 - Import 4.2.8p13.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#360c0146</link>
        <description>Import 4.2.8p13.

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Thu, 07 Mar 2019 13:01:16 +0000</pubDate>
        <dc:creator>Cy Schubert &lt;cy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6af306e6 - Happy New Year 2019!</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#6af306e6</link>
        <description>Happy New Year 2019!

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Tue, 01 Jan 2019 00:25:25 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>93ce2b4c - Update build system and packaging</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#93ce2b4c</link>
        <description>Update build system and packagingMinimal changes required to integrate the SPL sources in to theZFS repository build infrastructure and packaging.Build system and packaging:  * Renamed SPL_* autoconf m4 macros to ZFS_*.  * Removed redundant SPL_* autoconf m4 macros.  * Updated the RPM spec files to remove SPL package dependency.  * The zfs package obsoletes the spl package, and the zfs-kmod    package obsoletes the spl-kmod package.  * The zfs-kmod-devel* packages were updated to add compatibility    symlinks under /usr/src/spl-x.y.z until all dependent packages    can be updated.  They will be removed in a future release.  * Updated copy-builtin script for in-kernel builds.  * Updated DKMS package to include the spl.ko.  * Updated stale AUTHORS file to include all contributors.  * Updated stale COPYRIGHT and included the SPL as an exception.  * Renamed README.markdown to README.md  * Renamed OPENSOLARIS.LICENSE to LICENSE.  * Renamed DISCLAIMER to NOTICE.Required code changes:  * Removed redundant HAVE_SPL macro.  * Removed _BOOT from nvpairs since it doesn&apos;t apply for Linux.  * Initial header cleanup (removal of empty headers, refactoring).  * Remove SPL repository clone/build from zimport.sh.  * Use of DEFINE_RATELIMIT_STATE and DEFINE_SPINLOCK removed due    to build issues when forcing C99 compilation.  * Replaced legacy ACCESS_ONCE with READ_ONCE.  * Include needed headers for `current` and `EXPORT_SYMBOL`.Reviewed-by: Tony Hutter &lt;hutter2@llnl.gov&gt;Reviewed-by: Olaf Faaland &lt;faaland1@llnl.gov&gt;Reviewed-by: Matthew Ahrens &lt;mahrens@delphix.com&gt;Reviewed-by: Pavel Zakharov &lt;pavel.zakharov@delphix.com&gt;Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;TEST_ZIMPORT_SKIP=&quot;yes&quot;Closes #7556

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Fri, 16 Feb 2018 01:53:18 +0000</pubDate>
        <dc:creator>Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;</dc:creator>
    </item>
<item>
        <title>226a9d16 - Remove &apos;All Rights Reserved&apos; from the collection copyright and templates.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#226a9d16</link>
        <description>Remove &apos;All Rights Reserved&apos; from the collection copyright and templates.The original Berkeley Software Distributions were made in the 1980&apos;sand 1990&apos;s. At that time, the Buenos Ares Convention of 1910 was inforce in most of the countries in the Americas. It required anaffirmative statement of rights reservation, typically using &apos;AllRights Reserved.&apos; The Regents included this phrase in their copyrightnotices to invoke this treaty to ensure maximal copyright protection.In the 1990&apos;s, Latin America coutries ratifeid the Berne Convention oncopyrights which prohibited them from requiring an affirmativestatement to reserve the rights. When Nicaragua ratified in 2000, theBuenos Ares Convention of 1910 was effectively repealed. This made allthe &apos;All Rights Reserved&apos; phrases obsolete and legal deadweight mostof the time, and certainly in the cases removed here.Since it&apos;s no longer required, and is in fact meaningless, core hasdecided to dropped it from the project&apos;s collection copyright andsample templates. It encourages other rights holders to do the sameafter consultation with their legal department.More see https://en.wikipedia.org/wiki/Buenos_Aires_Convention formore information.Approved by: core@ (emaste@, jhb@)Differential Review:  https://reviews.freebsd.org/D15264

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Wed, 09 May 2018 02:02:49 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c3001093 - Happy New Year 2018 my friends!</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#c3001093</link>
        <description>Happy New Year 2018 my friends!

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Sun, 31 Dec 2017 16:48:04 +0000</pubDate>
        <dc:creator>Bjoern A. Zeeb &lt;bz@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4807c0ba - Encryption patch follow-up</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#4807c0ba</link>
        <description>Encryption patch follow-up* PBKDF2 implementation changed to OpenSSL implementation.* HKDF implementation moved to its own file and tests  added to ensure correctness.* Removed libzfs&apos;s now unnecessary dependency on libzpool  and libicp.* Ztest can now create and test encrypted datasets. This is  currently disabled until issue #6526 is resolved, but  otherwise functions as advertised.* Several small bug fixes discovered after enabling ztest  to run on encrypted datasets.* Fixed coverity defects added by the encryption patch.* Updated man pages for encrypted send / receive behavior.* Fixed a bug where encrypted datasets could receive  DRR_WRITE_EMBEDDED records.* Minor code cleanups / consolidation.Signed-off-by: Tom Caputi &lt;tcaputi@datto.com&gt;

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Tue, 12 Sep 2017 20:15:11 +0000</pubDate>
        <dc:creator>Tom Caputi &lt;tcaputi@datto.com&gt;</dc:creator>
    </item>
<item>
        <title>c8f9061f - Retire legacy test infrastructure</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#c8f9061f</link>
        <description>Retire legacy test infrastructure* Removed zpios kmod, utility, headers and man page.* Removed unused scripts zpios-profile/*, zpios-test/*,  zpool-config/*, smb.sh, zpios-sanity.sh, zpios-survey.sh,  zpios.sh, and zpool-create.sh.* Removed zfs-script-config.sh.in.  When building &apos;make&apos; generates  a common.sh with in-tree path information from the common.sh.in  template.  This file and sourced by the test scripts and used  for in-tree testing, it is not included in the packages.  When  building packages &apos;make install&apos; uses the same template to  create a new common.sh which is appropriate for the packaging.* Removed unused functions/variables from scripts/common.sh.in.  Only minimal path information and configuration environment  variables remain.* Removed unused scripts from scripts/ directory.* Remaining shell scripts in the scripts directory updated to  cleanly pass shellcheck and added to checked scripts.* Renamed tests/test-runner/cmd/ to tests/test-runner/bin/ to  match install location name.* Removed last traces of the --enable-debug-dmu-tx configure  options which was retired some time ago.Reviewed-by: Giuseppe Di Natale &lt;dinatale2@llnl.gov&gt;Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;Closes #6509

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Wed, 16 Aug 2017 00:26:38 +0000</pubDate>
        <dc:creator>Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;</dc:creator>
    </item>
<item>
        <title>07ac48c3 - Vendor import of ntp-4.2.8p10.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#07ac48c3</link>
        <description>Vendor import of ntp-4.2.8p10.

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Thu, 23 Mar 2017 05:19:00 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>492b1d2e - Update ZED copyright boilerplate</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/COPYRIGHT#492b1d2e</link>
        <description>Update ZED copyright boilerplateThis commit updates the copyright boilerplate within the ZED subtree.The instructions for appending a contributor copyright line havebeen removed.  Manually maintaining copyright notices in thismanner is error-prone, imprecise at a file-scope granularity, andoftentimes inaccurate.  These lines can become a pernicious source ofmerge conflicts.  A commit log is better suited to maintaining thisinformation.  Consequently, a line has been added to the boilerplateto refer to the git commit log for authoritative copyright attribution.To account for the scenario where a file may become separated fromthe codebase and commit history (i.e., it is copied somewhere else),a line has been added to identify the file&apos;s origin.http://softwarefreedom.org/resources/2012/ManagingCopyrightInformation.htmlSigned-off-by: Chris Dunlap &lt;cdunlap@llnl.gov&gt;Signed-off-by: Brian Behlendorf &lt;behlendorf1@llnl.gov&gt;Closes #3384

            List of files:
            /freebsd-14.2/COPYRIGHT</description>
        <pubDate>Wed, 06 May 2015 22:56:03 +0000</pubDate>
        <dc:creator>Chris Dunlap &lt;cdunlap@llnl.gov&gt;</dc:creator>
    </item>
</channel>
</rss>
