From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755970AbdDRO37 (ORCPT ); Tue, 18 Apr 2017 10:29:59 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:23729 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753052AbdDRO3u (ORCPT ); Tue, 18 Apr 2017 10:29:50 -0400 Date: Tue, 18 Apr 2017 10:27:23 -0400 From: Konrad Rzeszutek Wilk To: David Laight , xen-devel@lists.xensource.com Cc: "'Logan Gunthorpe'" , Christoph Hellwig , "Martin K. Petersen" , Sagi Grimberg , Jens Axboe , Tejun Heo , Greg Kroah-Hartman , Dan Williams , Ross Zwisler , Matthew Wilcox , Sumit Semwal , Ming Lin , "linux-kernel@vger.kernel.org" , "linux-crypto@vger.kernel.org" , "linux-media@vger.kernel.org" , "dri-devel@lists.freedesktop.org" , "linaro-mm-sig@lists.linaro.org" , "intel-gfx@lists.freedesktop.org" , "linux-raid@vger.kernel.org" , "linux-mmc@vger.kernel.org" , "linux-nvme@lists.infradead.org" , "linux-nvdimm@lists.01.org" , "linux-scsi@vger.kernel.org" , "fcoe-devel@open-fcoe.org" , "open-iscsi@googlegroups.com" , "megaraidlinux.pdl@broadcom.com" , "sparmaintainer@unisys.com" , "devel@driverdev.osuosl.org" , "target-devel@vger.kernel.org" , "netdev@vger.kernel.org" , "linux-rdma@vger.kernel.org" , "rds-devel@oss.oracle.com" , Steve Wise Subject: Re: [PATCH 16/22] xen-blkfront: Make use of the new sg_map helper function Message-ID: <20170418142723.GA27133@char.us.oracle.com> References: <1492121135-4437-1-git-send-email-logang@deltatee.com> <1492121135-4437-17-git-send-email-logang@deltatee.com> <063D6719AE5E284EB5DD2968C1650D6DCFFD3CD7@AcuExch.aculab.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <063D6719AE5E284EB5DD2968C1650D6DCFFD3CD7@AcuExch.aculab.com> User-Agent: Mutt/1.8.0 (2017-02-23) X-Source-IP: aserv0022.oracle.com [141.146.126.234] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Apr 18, 2017 at 02:13:59PM +0000, David Laight wrote: > From: Logan Gunthorpe > > Sent: 13 April 2017 23:05 > > Straightforward conversion to the new helper, except due to > > the lack of error path, we have to warn if unmapable memory > > is ever present in the sgl. Interesting that you didn't CC any of the maintainers. Could you do that in the future please? > > > > Signed-off-by: Logan Gunthorpe > > --- > > drivers/block/xen-blkfront.c | 33 +++++++++++++++++++++++++++------ > > 1 file changed, 27 insertions(+), 6 deletions(-) > > > > diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c > > index 5067a0a..7dcf41d 100644 > > --- a/drivers/block/xen-blkfront.c > > +++ b/drivers/block/xen-blkfront.c > > @@ -807,8 +807,19 @@ static int blkif_queue_rw_req(struct request *req, struct blkfront_ring_info *ri > > BUG_ON(sg->offset + sg->length > PAGE_SIZE); > > > > if (setup.need_copy) { > > - setup.bvec_off = sg->offset; > > - setup.bvec_data = kmap_atomic(sg_page(sg)); > > + setup.bvec_off = 0; > > + setup.bvec_data = sg_map(sg, SG_KMAP_ATOMIC); > > + if (IS_ERR(setup.bvec_data)) { > > + /* > > + * This should really never happen unless > > + * the code is changed to use memory that is > > + * not mappable in the sg. Seeing there is a > > + * questionable error path out of here, > > + * we WARN. > > + */ > > + WARN(1, "Non-mappable memory used in sg!"); > > + return 1; > > + } > ... > > Perhaps add a flag to mark failure as 'unexpected' and trace (and panic?) > inside sg_map(). > > David > > > _______________________________________________ > Linux-nvdimm mailing list > Linux-nvdimm@lists.01.org > https://lists.01.org/mailman/listinfo/linux-nvdimm