From patchwork Tue Jun 30 00:31:51 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dan Williams X-Patchwork-Id: 6692451 Return-Path: X-Original-To: patchwork-linux-nvdimm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 3EF20C05AD for ; Tue, 30 Jun 2015 00:37:37 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E358C2060A for ; Tue, 30 Jun 2015 00:37:35 +0000 (UTC) Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 117A8205F9 for ; Tue, 30 Jun 2015 00:37:35 +0000 (UTC) Received: from ml01.vlan14.01.org (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 038E31827FF; Mon, 29 Jun 2015 17:37:35 -0700 (PDT) X-Original-To: linux-nvdimm@lists.01.org Delivered-To: linux-nvdimm@lists.01.org Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by ml01.01.org (Postfix) with ESMTP id 2016318268A for ; Mon, 29 Jun 2015 17:37:34 -0700 (PDT) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP; 29 Jun 2015 17:37:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,373,1432623600"; d="scan'208";a="719946472" Received: from dwillia2-desk3.jf.intel.com ([10.54.39.11]) by orsmga001.jf.intel.com with ESMTP; 29 Jun 2015 17:37:33 -0700 Subject: [ndctl PATCH 4/4] ndctl: release v41 From: Dan Williams To: linux-nvdimm@lists.01.org Date: Mon, 29 Jun 2015 20:31:51 -0400 Message-ID: <20150630003151.7510.9773.stgit@dwillia2-desk3.jf.intel.com> In-Reply-To: <20150630002707.7510.11816.stgit@dwillia2-desk3.jf.intel.com> References: <20150630002707.7510.11816.stgit@dwillia2-desk3.jf.intel.com> User-Agent: StGit/0.17.1-8-g92dd MIME-Version: 1.0 X-BeenThere: linux-nvdimm@lists.01.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "Linux-nvdimm developer list." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linux-nvdimm-bounces@lists.01.org Sender: "Linux-nvdimm" X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This release is coincident with the initial merging of the libnvdimm subsystem [1]. The "current" field of the libtool version number is incremented for this event. New apis: ndctl_btt_get_namespace ndctl_btt_get_region ndctl_btt_is_valid ndctl_btt_set_namespace ndctl_dimm_disable ndctl_dimm_enable ndctl_dimm_failed_arm ndctl_dimm_failed_flush ndctl_dimm_failed_restore ndctl_dimm_failed_save ndctl_dimm_has_errors ndctl_dimm_smart_pending ndctl_namespace_get_btt ndctl_namespace_get_raw_mode ndctl_namespace_set_raw_mode ndctl_region_get_btt_seed ndctl_region_get_ro ndctl_region_set_ro Removed apis: ndctl_btt_set_backing_dev ndctl_btt_get_backing_dev ndctl_bus_get_btt_seed [1]: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=88793e5c774e Acked-by: Vishal Verma Signed-off-by: Dan Williams --- Makefile.am | 4 ++-- configure.ac | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 6c21f2d1b20f..cd6e1905040b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,9 +32,9 @@ SED_PROCESS = \ %.pc: %.pc.in Makefile $(SED_PROCESS) -LIBNDCTL_CURRENT=2 +LIBNDCTL_CURRENT=3 LIBNDCTL_REVISION=0 -LIBNDCTL_AGE=2 +LIBNDCTL_AGE=0 pkginclude_HEADERS = lib/ndctl/libndctl.h lib_LTLIBRARIES = lib/libndctl.la diff --git a/configure.ac b/configure.ac index 1e7e756ea348..daa6b3227c8e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ(2.60) AC_INIT([ndctl], - [40], + [41], [linux-nvdimm@lists.01.org], [ndctl], [https://github.com/pmem/ndctl])