Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Dec 2014 00:17:26 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
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
Message-ID:  <201412060017.sB60HQEb029674@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <mahrens@delphix.com>
  Reviewed by: Will Andrews <willa@spectralogic.com>
  Reviewed by: Andriy Gapon <avg@FreeBSD.org>
  Approved by: Dan McDonald <danmcd@omniti.com>
  Author: Justin T. Gibbs <justing@spectralogic.com>
  
  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 <sys/stat.h>
+#include <sys/taskq.h>
+#include <sys/taskq_impl.h>
+#include <sys/debug.h>
+#include <sys/list.h>
+#include <sys/zfs_debug.h>
+
+#ifdef	__cplusplus
+}
+#endif
+
+#endif	/* _SYS_ZFS_CONTEXT_H */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412060017.sB60HQEb029674>