]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/commit
MFC nv(3) and part of nv(9) to stable/10
authorngie <ngie@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Thu, 31 Dec 2015 03:28:14 +0000 (03:28 +0000)
committerngie <ngie@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Thu, 31 Dec 2015 03:28:14 +0000 (03:28 +0000)
commitaeb80faa2088c87515dc90277a8e956907cc5334
tree79e5e087d15a27e11e3f9e48838e32b3f307a80f
parent168188d16ec10f345cb3544a8816ba52bfb9b233
MFC nv(3) and part of nv(9) to stable/10

This includes the following revisions from head:

r258065,r258594,r259430,r260222,r261407,r261408,r263479,r264021,r266351,
r269603,r271026,r271027,r271028,r271241,r271578,r271579,r271847,r272102,
r272843,r273752,r277920,r277921,r277925,r277926,r277927,r279421,r279422,
r279423,r279424,r279425,r279426,r279427,r279428,r279429,r279430,r279431,
r279432,r279434,r279435,r279436,r279438,r279439,r279440,r279760,r282122,
r282254,r282257,r282304,r282312,r285339,r288340

This change reverts stable/10@r282122 and stable/10@r288340, and re-MFCs the
series again (r282122, r285339, and r288340).

More changes are pending to nv(9)/pci(4) after further review/work. Please see
the Phabricator review for more details (both https://reviews.freebsd.org/D4232
and https://reviews.freebsd.org/D4249 ).

- Tested with:
-- Booting VMware Fusion 8.1.0 running on a Haswell Apple Macbook Pro
-- Booting a Haswell machine with zfs and running some stress workloads with
   VirtualBox guests
-- make tinderbox
-- kyua test -k /usr/tests/lib/libnv

Differential Revision: https://reviews.freebsd.org/D4249 (part of a larger diff)
Relnotes: yes
Reviewed by: oshogbo (implicit), sbruno (implicit)
Submitted by: Kevin Bowling <kevin.bowling@kev009.com>
Sponsored by: EMC / Isilon Storage Division

git-svn-id: svn://svn.freebsd.org/base/stable/10@292973 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
32 files changed:
cddl/lib/libnvpair/Makefile
contrib/mdocml/lib.in
etc/mtree/BSD.tests.dist
lib/Makefile
lib/libnv/Makefile [new file with mode: 0644]
lib/libnv/common_impl.h [new file with mode: 0644]
lib/libnv/msgio.c [new file with mode: 0644]
lib/libnv/msgio.h [new file with mode: 0644]
lib/libnv/nv.3 [new file with mode: 0644]
lib/libnv/tests/Makefile [new file with mode: 0644]
lib/libnv/tests/dnv_tests.cc [new file with mode: 0644]
lib/libnv/tests/nv_tests.cc [new file with mode: 0644]
lib/libnv/tests/nvlist_add_test.c [new file with mode: 0644]
lib/libnv/tests/nvlist_exists_test.c [new file with mode: 0644]
lib/libnv/tests/nvlist_free_test.c [new file with mode: 0644]
lib/libnv/tests/nvlist_get_test.c [new file with mode: 0644]
lib/libnv/tests/nvlist_move_test.c [new file with mode: 0644]
lib/libnv/tests/nvlist_send_recv_test.c [new file with mode: 0644]
share/mk/bsd.libnames.mk
sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_fnvpair.c [moved from sys/cddl/contrib/opensolaris/common/nvpair/fnvpair.c with 100% similarity]
sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_nvpair.c [moved from sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c with 100% similarity]
sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_nvpair_alloc_fixed.c [moved from sys/cddl/contrib/opensolaris/common/nvpair/nvpair_alloc_fixed.c with 100% similarity]
sys/conf/files
sys/kern/subr_dnvlist.c [new file with mode: 0644]
sys/kern/subr_nvlist.c [new file with mode: 0644]
sys/kern/subr_nvpair.c [new file with mode: 0644]
sys/modules/zfs/Makefile
sys/sys/dnv.h [new file with mode: 0644]
sys/sys/nv.h [new file with mode: 0644]
sys/sys/nv_impl.h [new file with mode: 0644]
sys/sys/nvlist_impl.h [new file with mode: 0644]
sys/sys/nvpair_impl.h [new file with mode: 0644]