From owner-svn-src-head@FreeBSD.ORG Mon Jun 15 10:48:49 2015 Return-Path: Delivered-To: svn-src-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 934F87FF; Mon, 15 Jun 2015 10:48:49 +0000 (UTC) (envelope-from bapt@FreeBSD.org) 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 7FAC26EC; Mon, 15 Jun 2015 10:48:49 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5FAmnMD039080; Mon, 15 Jun 2015 10:48:49 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5FAmnF0039077; Mon, 15 Jun 2015 10:48:49 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201506151048.t5FAmnF0039077@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 15 Jun 2015 10:48:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284409 - in head/cddl/lib: libzfs libzfs_core X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 10:48:49 -0000 Author: bapt Date: Mon Jun 15 10:48:48 2015 New Revision: 284409 URL: https://svnweb.freebsd.org/changeset/base/284409 Log: Fix circular dependency between libzfs and libzfs_core libzfs_core is the wrapper around kernel ioctls, the ioctl compat code belongs to it Modified: head/cddl/lib/libzfs/Makefile head/cddl/lib/libzfs_core/Makefile Modified: head/cddl/lib/libzfs/Makefile ============================================================================== --- head/cddl/lib/libzfs/Makefile Mon Jun 15 07:13:23 2015 (r284408) +++ head/cddl/lib/libzfs/Makefile Mon Jun 15 10:48:48 2015 (r284409) @@ -37,7 +37,6 @@ SRCS+= libzfs_changelist.c \ zfs_comutil.c \ zfs_deleg.c \ zfs_fletcher.c \ - zfs_ioctl_compat.c \ zfs_namecheck.c \ zfs_prop.c \ zpool_prop.c \ Modified: head/cddl/lib/libzfs_core/Makefile ============================================================================== --- head/cddl/lib/libzfs_core/Makefile Mon Jun 15 07:13:23 2015 (r284408) +++ head/cddl/lib/libzfs_core/Makefile Mon Jun 15 10:48:48 2015 (r284409) @@ -11,7 +11,8 @@ DPADD= ${LIBNVPAIR} LDADD= -lnvpair SRCS= libzfs_core.c \ - libzfs_core_compat.c + libzfs_core_compat.c \ + zfs_ioctl_compat.c SRCS+= libzfs_compat.c