From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751835AbbDRIGt (ORCPT ); Sat, 18 Apr 2015 04:06:49 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:45267 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751039AbbDRIGl (ORCPT ); Sat, 18 Apr 2015 04:06:41 -0400 Date: Sat, 18 Apr 2015 10:06:35 +0200 From: Greg KH To: Dan Williams Cc: linux-nvdimm@ml01.01.org, Neil Brown , linux-kernel@vger.kernel.org Subject: Re: [PATCH 07/21] nd: dimm devices (nfit "memory-devices") Message-ID: <20150418080635.GA28706@kroah.com> References: <20150418013256.25237.96403.stgit@dwillia2-desk3.amr.corp.intel.com> <20150418013551.25237.76215.stgit@dwillia2-desk3.amr.corp.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150418013551.25237.76215.stgit@dwillia2-desk3.amr.corp.intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Apr 17, 2015 at 09:35:52PM -0400, Dan Williams wrote: > Register the dimms described in the nfit as devices on a nd_bus, named > "dimmN" where N is a global ida index. The dimm numbering per-bus may > appear contiguous, since we only allow a single nd_bus to be registered > at at a time. However, eventually, dimm-hotplug invalidates this > property and dimms should be addressed via NFIT-handle. > > Cc: Greg KH > Cc: Neil Brown > Signed-off-by: Dan Williams > --- > drivers/block/nd/Makefile | 1 > drivers/block/nd/bus.c | 62 +++++++++- > drivers/block/nd/core.c | 55 +++++++++ > drivers/block/nd/dimm_devs.c | 243 +++++++++++++++++++++++++++++++++++++++++ > drivers/block/nd/nd-private.h | 19 +++ > 5 files changed, 373 insertions(+), 7 deletions(-) > create mode 100644 drivers/block/nd/dimm_devs.c > > diff --git a/drivers/block/nd/Makefile b/drivers/block/nd/Makefile > index 7772fb599809..6b34dd4d4df8 100644 > --- a/drivers/block/nd/Makefile > +++ b/drivers/block/nd/Makefile > @@ -21,3 +21,4 @@ nd_acpi-y := acpi.o > > nd-y := core.o > nd-y += bus.o > +nd-y += dimm_devs.o > diff --git a/drivers/block/nd/bus.c b/drivers/block/nd/bus.c > index c27db50511f2..e24db67001d0 100644 > --- a/drivers/block/nd/bus.c > +++ b/drivers/block/nd/bus.c > @@ -13,18 +13,59 @@ > #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt > #include > #include > +#include > #include > #include > #include > #include "nd-private.h" > #include "nfit.h" > > -static int nd_major; > +static int nd_bus_major; Call it nd_bus_major in the previous patch, and avoid the unneeded churn in this patch. thanks, greg k-h