From owner-svn-src-vendor@FreeBSD.ORG Sat Dec 6 00:17:26 2014 Return-Path: Delivered-To: svn-src-vendor@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4EBACA75; Sat, 6 Dec 2014 00:17:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B0A2DC8; Sat, 6 Dec 2014 00:17:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB60HQa1029675; Sat, 6 Dec 2014 00:17:26 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB60HQEb029674; Sat, 6 Dec 2014 00:17:26 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201412060017.sB60HQEb029674@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Sat, 6 Dec 2014 00:17:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r275541 - vendor/illumos/dist/lib/libzfs/common/sys X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Dec 2014 00:17:26 -0000 Author: delphij Date: Sat Dec 6 00:17:25 2014 New Revision: 275541 URL: https://svnweb.freebsd.org/changeset/base/275541 Log: 5312 libzfs should be decoupled from kernel's zfs_context.h Reviewed by: Matthew Ahrens Reviewed by: Will Andrews Reviewed by: Andriy Gapon Approved by: Dan McDonald Author: Justin T. Gibbs illumos/illumos-gate@587644a8567e6a9533f88401daa59cbd78c4632f Added: vendor/illumos/dist/lib/libzfs/common/sys/ vendor/illumos/dist/lib/libzfs/common/sys/zfs_context.h (contents, props changed) Added: vendor/illumos/dist/lib/libzfs/common/sys/zfs_context.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/illumos/dist/lib/libzfs/common/sys/zfs_context.h Sat Dec 6 00:17:25 2014 (r275541) @@ -0,0 +1,37 @@ +/* + * CDDL HEADER START + * + * This file and its contents are supplied under the terms of the + * Common Development and Distribution License ("CDDL"), version 1.0. + * You may only use this file in accordance with the terms of version + * 1.0 of the CDDL. + * + * A full copy of the text of the CDDL should have accompanied this + * source. A copy of the CDDL is also available via the Internet at + * http://www.illumos.org/license/CDDL. + * + * CDDL HEADER END + */ +/* + * Copyright 2014 Spectra Logic Corporation. All rights reserved. + */ + +#ifndef _SYS_ZFS_CONTEXT_H +#define _SYS_ZFS_CONTEXT_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include +#include +#include +#include + +#ifdef __cplusplus +} +#endif + +#endif /* _SYS_ZFS_CONTEXT_H */