Module Name: src Committed By: sevan Date: Wed Jul 24 11:34:55 UTC 2019
Modified Files: src/sys/external/bsd/libnv/dist: nvpair.c Log Message: need sys/kmem.h for kmem_free() To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/external/bsd/libnv/dist/nvpair.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/external/bsd/libnv/dist/nvpair.c diff -u src/sys/external/bsd/libnv/dist/nvpair.c:1.8 src/sys/external/bsd/libnv/dist/nvpair.c:1.9 --- src/sys/external/bsd/libnv/dist/nvpair.c:1.8 Wed Jul 24 11:12:30 2019 +++ src/sys/external/bsd/libnv/dist/nvpair.c Wed Jul 24 11:34:55 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: nvpair.c,v 1.8 2019/07/24 11:12:30 martin Exp $ */ +/* $NetBSD: nvpair.c,v 1.9 2019/07/24 11:34:55 sevan Exp $ */ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD @@ -36,7 +36,7 @@ #ifdef __FreeBSD__ __FBSDID("$FreeBSD: head/sys/contrib/libnv/nvpair.c 335382 2018-06-19 18:43:02Z lwhsu $"); #else -__RCSID("$NetBSD: nvpair.c,v 1.8 2019/07/24 11:12:30 martin Exp $"); +__RCSID("$NetBSD: nvpair.c,v 1.9 2019/07/24 11:34:55 sevan Exp $"); #endif #include <sys/param.h> @@ -49,6 +49,7 @@ __RCSID("$NetBSD: nvpair.c,v 1.8 2019/07 #include <sys/lock.h> #include <sys/malloc.h> #include <sys/systm.h> +#include <sys/kmem.h> #ifdef __FreeBSD__ #include <machine/stdarg.h>