]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
MFC r304910, r304912, r304915, r304952, r325019, r328164, r331094, r332664,
authorkevans <kevans@FreeBSD.org>
Mon, 16 Jul 2018 15:02:21 +0000 (15:02 +0000)
committerkevans <kevans@FreeBSD.org>
Mon, 16 Jul 2018 15:02:21 +0000 (15:02 +0000)
commit7f147f6a08ab6f389f9055d02639e57a64265fff
treee8519b83714fce9e70e6eb2798950fb1cf5f2909
parentad417829ff983f731ff9845388bbdada8309b9d9
MFC r304910, r304912, r304915, r304952, r325019, r328164, r331094, r332664,
r335341-r335345, r335347, r335379-r335380, r335382

r304910:
Introduce cnv man page.

r304912:
Add missed header file for cnv.h .

r304915:
Bump date in the man page.

r304952:
Remove duplicated declaration.

r325019:
Introduce cnvlist_name() and cnvlist_type() functions.

Those function can be used when we are iterating over nvlist to reduce
amount of extra variables we need to declare.

r328164:
libnv: Use mallocarray(9) for the nv_calloc.

r331094:
Fix formatting errors that resulted in apropos(1) output looking weird.

r332664:
Add missing argument in the cnv man page.

r335341:
libnv: change name of cookie from cookiep to cookie.

The name was inconsistent with rest of the library.
No functional change intended.

r335342:
libnv: add const to cookies arguments

r335343:
libnv: Remove nvlist argument from cnvlist_{take,free}_* functions.

All information which are need for those operations is already stored in
the cookie.

We decided not to bump libnv version because this API is not used yet in the
base system.

r335344:
libnv: clean parent in nvlist_array when removing it.

When we are removing element form the nvlist we should also clean parent,
because the array is not a part of the nvlist anymore.

r335345:
libnv: add regression test for r335344.

r335347:
libnv: Add nvlist_append_*_array() family of functions.

The nvlist_append_{bool,number,string,nvlist,descriptor}_array() functions
allows to dynamically extend array stored in the nvlist.

r335379:
Set prev to NULL so its garaunteed to have a value of some kind and
gcc doesn't explode.  Feel free to fix this correctly or whatever for
gcc builds.

This *should* quiesce tinderbox after r335347 for the gcc builds.

r335380:
style(9) fix, I was also going to silence gcc.

r335382:
Really fix the style.
17 files changed:
lib/libmd/sha512.3
lib/libnv/tests/Makefile
lib/libnv/tests/cnv_tests.cc
lib/libnv/tests/nv_array_tests.cc
lib/libnv/tests/nvlist_append_test.c [new file with mode: 0644]
share/man/man9/Makefile
share/man/man9/cnv.9 [new file with mode: 0644]
share/man/man9/nv.9
share/man/man9/owll.9
share/man/man9/rwlock.9
share/man/man9/zone.9
sys/contrib/libnv/cnvlist.c
sys/contrib/libnv/nv_impl.h
sys/contrib/libnv/nvlist.c
sys/contrib/libnv/nvpair.c
sys/sys/cnv.h [new file with mode: 0644]
sys/sys/nv.h