Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752832AbdLDB1E (ORCPT ); Sun, 3 Dec 2017 20:27:04 -0500 Received: from mail-vk0-f65.google.com ([209.85.213.65]:45926 "EHLO mail-vk0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750872AbdLDB1B (ORCPT ); Sun, 3 Dec 2017 20:27:01 -0500 X-Google-Smtp-Source: AGs4zMaC5/ejro+locqdB+o6KZeCpg85va/Xz0qmxoZ+oilfqy7a6pTSaOmMSckgevDh0GYqnYgLfyEhMuC5aDvGo+s= MIME-Version: 1.0 In-Reply-To: <20171130041907.4417-1-bjorn.andersson@linaro.org> References: <20171130041907.4417-1-bjorn.andersson@linaro.org> From: Kyuho Choi Date: Mon, 4 Dec 2017 10:26:59 +0900 Message-ID: Subject: Re: [PATCH] scsi: ufs: ufshcd: Enable no_write_same for scsi host To: Bjorn Andersson Cc: Vinayak Holikatti , "James E.J. Bottomley" , "Martin K. Petersen" , linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, Subhash Jadavani , Vivek Gautam , Yaniv Gardi , stable@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1434 Lines: 48 Hi Anderson, Could you please check about below thread? https://patchwork.kernel.org/patch/6357751/ Your patch is same as my old one. On 11/30/17, Bjorn Andersson wrote: > Occasionally the following error message can be seen in the logs of > Qualcomm devices using UFS: > > EXT4-fs (sda9): Delayed block allocation failed for inode 685600 at logical > offset 1086 with max blocks 3 with error 121 > EXT4-fs (sda9): This should not happen!! Data will be lost > > This is caused by a failing WRITE_SAME command, which per the JEDEC UFS > specification is not a supported. Set the no_write_same flag on the > ufshcd SCSI host to let the SCSI layer know this. > > Fixes: 7a3e97b0dc4b ("[SCSI] ufshcd: UFS Host controller driver") > Cc: stable@vger.kernel.org > Signed-off-by: Bjorn Andersson > --- > drivers/scsi/ufs/ufshcd.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c > index 88c086f5c4e3..e5b1efd1dafd 100644 > --- a/drivers/scsi/ufs/ufshcd.c > +++ b/drivers/scsi/ufs/ufshcd.c > @@ -6515,6 +6515,7 @@ static struct scsi_host_template > ufshcd_driver_template = { > .can_queue = UFSHCD_CAN_QUEUE, > .max_host_blocked = 1, > .track_queue_depth = 1, > + .no_write_same = 1, > }; > > static int ufshcd_config_vreg_load(struct device *dev, struct ufs_vreg > *vreg, > -- > 2.15.0 > > WBR, Kyuho Choi