svn commit: r275541 - vendor/illumos/dist/lib/libzfs/common/sys

Xin LI delphij at FreeBSD.org
Sat Dec 6 00:17:26 UTC 2014


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 at delphix.com>
  Reviewed by: Will Andrews <willa at spectralogic.com>
  Reviewed by: Andriy Gapon <avg at FreeBSD.org>
  Approved by: Dan McDonald <danmcd at omniti.com>
  Author: Justin T. Gibbs <justing at spectralogic.com>
  
  illumos/illumos-gate at 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 */


More information about the svn-src-vendor mailing list