From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753156AbeBVJpf (ORCPT ); Thu, 22 Feb 2018 04:45:35 -0500 Received: from mail-lf0-f65.google.com ([209.85.215.65]:43268 "EHLO mail-lf0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753088AbeBVJpd (ORCPT ); Thu, 22 Feb 2018 04:45:33 -0500 X-Google-Smtp-Source: AH8x227WdyciNiwmB4uag8GSZYIlwnfVTFScoSJfHmBBu2nnc9GFgz0MRng1tSwOfq8YpOczV0pVuQ== Subject: Re: [PATCH 08/20] lightnvm: complete geo structure with maxoc* To: Javier Gonzalez Cc: "linux-block@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "linux-nvme@lists.infradead.org" References: <1519205218-26994-1-git-send-email-javier@cnexlabs.com> <1519205218-26994-9-git-send-email-javier@cnexlabs.com> <5e2948ed-19a8-7bd5-6c50-df37a1454d16@lightnvm.io> From: =?UTF-8?Q?Matias_Bj=c3=b8rling?= Message-ID: Date: Thu, 22 Feb 2018 10:45:30 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-GB Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 02/22/2018 08:55 AM, Javier Gonzalez wrote: >> On 22 Feb 2018, at 08.45, Matias Bjørling wrote: >> >> On 02/21/2018 10:26 AM, Javier González wrote: >>> Complete the generic geometry structure with the maxoc and maxocpu >>> felds, present in the 2.0 spec. >>> Signed-off-by: Javier González >>> --- >>> drivers/nvme/host/lightnvm.c | 4 ++++ >>> include/linux/lightnvm.h | 2 ++ >>> 2 files changed, 6 insertions(+) >>> diff --git a/drivers/nvme/host/lightnvm.c b/drivers/nvme/host/lightnvm.c >>> index cca32da05316..9c1f8225c4e1 100644 >>> --- a/drivers/nvme/host/lightnvm.c >>> +++ b/drivers/nvme/host/lightnvm.c >>> @@ -318,6 +318,8 @@ static int nvme_nvm_setup_12(struct nvme_nvm_id12 *id, >>> dev_geo->c.ws_min = sec_per_pg; >>> dev_geo->c.ws_opt = sec_per_pg; >>> dev_geo->c.mw_cunits = 8; /* default to MLC safe values */ >>> + dev_geo->c.maxoc = dev_geo->all_luns; /* default to 1 chunk per LUN */ >>> + dev_geo->c.maxocpu = 1; /* default to 1 chunk per LUN */ >> >> One can't assume that it is 1 open chunk per lun. If you need this for specific hardware, make a quirk for it. >> > > Which default you want for 1.2 if not specified then? I use 1 because it > has been the implicit default until now. INT_MAX, since it then allows the maximum of open chunks. It cannot be assumed that other 1.2 devices is limited to a single open chunk. > > Javier >