Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936239AbcKWMHC (ORCPT ); Wed, 23 Nov 2016 07:07:02 -0500 Received: from mail-wm0-f45.google.com ([74.125.82.45]:38567 "EHLO mail-wm0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934706AbcKWMHB (ORCPT ); Wed, 23 Nov 2016 07:07:01 -0500 Subject: Re: [PATCH 0/8] lightnvm: simplify media manager V2 To: =?UTF-8?Q?Javier_Gonz=c3=a1lez?= References: <1479730237-20797-1-git-send-email-javier@cnexlabs.com> Cc: linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, =?UTF-8?Q?Javier_Gonz=c3=a1lez?= From: =?UTF-8?Q?Matias_Bj=c3=b8rling?= Message-ID: Date: Wed, 23 Nov 2016 13:06:57 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <1479730237-20797-1-git-send-email-javier@cnexlabs.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1507 Lines: 34 On 11/21/2016 01:10 PM, Javier González wrote: > V2: > - Fix 2 bad memory free on error rrpc init error handling. Reported by > kbuild. > > This patchset simplifies the generic media manager interface and moves > lun and block functionality to lightnvm targets. This makes that > rrpc-specific functionality is not exposed on the media manager. This is > done in preparation for the pblk target. > > Javier González (8): > lightnvm: move block provisioning to targets > lightnvm: remove get_lun operation on gennvm > lightnvm: remove debug lun statistics from gennvm > lightnvm: eliminate nvm_block abstraction on mm > lightnvm: eliminate nvm_lun abstraction in mm > lightnvm: introduce helpers for generic ops in rrpc > lightnvm: introduce max_phys_sects helper function > lightnvm: use target nvm on target-specific ops. > > drivers/lightnvm/core.c | 154 ++++++----- > drivers/lightnvm/gennvm.c | 612 ++++++++++++++++++++----------------------- > drivers/lightnvm/gennvm.h | 20 +- > drivers/lightnvm/rrpc.c | 443 +++++++++++++++++++++---------- > drivers/lightnvm/rrpc.h | 62 ++++- > drivers/lightnvm/sysblk.c | 65 +++-- > drivers/nvme/host/lightnvm.c | 14 +- > include/linux/lightnvm.h | 217 +++++++-------- > 8 files changed, 885 insertions(+), 702 deletions(-) > Thanks Javier. Picked up for 4.10. Please note I fixed up an initialization bug with null_blk device in the "lightnvm: introduce helpers for generic ops in rrpc" patch.