From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.6 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 211E7C47404 for ; Wed, 9 Oct 2019 22:18:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E920D218AC for ; Wed, 9 Oct 2019 22:18:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570659515; bh=Z8opOSsiiw6yi2V6o/VkdYx7/ZpiJj4Zuueg28GFZeg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=K+P5KJtTe/bYi0Rkucn1hEQMorINi+ea6z3YGR4i2yFaEnMmiMbCj3qCpGufEkufB 9ALbpqs15drqb0lIuIO7u4kCobNe/kLaN6PQyOCsd/RB27V4XZUm8DSbuizBjI027X jIX+bS36Nw4NzBKge4bUYohR0DoZ+BUib+vSiLI8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731134AbfJIWSb (ORCPT ); Wed, 9 Oct 2019 18:18:31 -0400 Received: from mail.kernel.org ([198.145.29.99]:54106 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730675AbfJIWSb (ORCPT ); Wed, 9 Oct 2019 18:18:31 -0400 Received: from washi1.fujisawa.hgst.com (unknown [199.255.47.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id A9EAB206BB; Wed, 9 Oct 2019 22:18:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570659511; bh=Z8opOSsiiw6yi2V6o/VkdYx7/ZpiJj4Zuueg28GFZeg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YRNllptcmVIvwmzccQrTA6O74wQUuBcbg5Ai42vUf1gYunJt7APnYaj2z/LEx+S/Y rGmYKw1yv0uzptGkgxQnFk44EfFaOX3ILHTY/TOiz0UZmeTifFAgptYzGRLKwRgQgJ ZwtMmo9coQUWEz5OsQ51E85otiNnf1pQJUOXt9oY= Date: Thu, 10 Oct 2019 07:18:27 +0900 From: Keith Busch To: Logan Gunthorpe Cc: linux-kernel@vger.kernel.org, linux-nvme@lists.infradead.org, linux-block@vger.kernel.org, linux-fsdevel@vger.kernel.org, Christoph Hellwig , Sagi Grimberg , Jens Axboe , Chaitanya Kulkarni , Max Gurtovoy , Stephen Bates Subject: Re: [PATCH v9 04/12] nvmet: make nvmet_copy_ns_identifier() non-static Message-ID: <20191009221827.GE3009@washi1.fujisawa.hgst.com> References: <20191009192530.13079-1-logang@deltatee.com> <20191009192530.13079-5-logang@deltatee.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191009192530.13079-5-logang@deltatee.com> User-Agent: Mutt/1.12.1 (2019-06-15) Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On Wed, Oct 09, 2019 at 01:25:21PM -0600, Logan Gunthorpe wrote: > This function will be needed by the upcoming passthru code. > > Passthru will need an emulated version of identify_desclist which > copies the eui64, uuid and nguid from the passed-thru controller into > the request SGL. > > [chaitanya.kulkarni@wdc.com: this was factored out of a patch > originally authored by Chaitanya] > Signed-off-by: Chaitanya Kulkarni > Signed-off-by: Logan Gunthorpe > Reviewed-by: Sagi Grimberg > --- Looks fine Reviewed-by: Keith Busch