Received: by 2002:a25:31c3:0:0:0:0:0 with SMTP id x186csp917172ybx; Thu, 31 Oct 2019 03:00:54 -0700 (PDT) X-Google-Smtp-Source: APXvYqxbi+b3SkTYstNgwfEYnjJP/pEW6d4nrRWvWKN8G3xdZdowpmho7qu9XCPALxQYIWaU+ObW X-Received: by 2002:a05:6402:75a:: with SMTP id p26mr4887245edy.221.1572516054128; Thu, 31 Oct 2019 03:00:54 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1572516054; cv=none; d=google.com; s=arc-20160816; b=J/1tgDAjM5gBN9fjv/+WeTs/JYrmkNfp4pPEjwsZLG6nTKtDt0KMUmIRpMTsPTB5M/ aNoKPu6DdlfST7xmE4KrjEPJEcK30ihAiPu/bY7ne3r6g90qLWuI2cLDqAgZZFG+7430 CWvpF4KhssSEcm+hHdQvKK86pff4288+B2mFm7DVsQyXFxCaEO+c3LvYsfUMWfENFoVo lYH2cs6qE/thW1vNcU7/CxqTP7IfE38YeTNv3WcL5VWdRNMomTsv+nTazNznQvmsaJFZ SpSnJ2dH3ZiV/PZqBG33FNnl3+N+AksRKvKupY9uZd4dqySkw1ESmblYaseuexU/2K1l 4vNw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=7tu9KCCEwse9XwBzb0j4KOpREp4NGmlE7xFDrTMm/6c=; b=ae/EBwr13Z2Vtz5ZyGbeXUW7Iv0iVbkX3Lkl+/jixgLy2m7sWA8wxNOdD8gcugEWvf jStcMjgBt3eIImt8ifWHgMY4FMwZzRZSBgXkl149ZTMINL440ySnKZZK2H5PJ/I9TLRE iquKPJarqNpF2E87PV4PD2XEjh/YM3br5+meYcVcFUKkHQ30l7UZoRloQ1zMR9SaxZ2C P5rAEcZNLS1Vl3niePfo/nZyJP/5D9PmSjdn3SQrn2SXzIOAbXX/CtV3+2KrOTOhaMjH cuQdV/r82qIklRCcrzbdxfCQDnb3QuMRwda38CPdBZUW8JvBA3qo53JTNvxMWvN11+F/ UxlA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id qc9si3011026ejb.265.2019.10.31.03.00.30; Thu, 31 Oct 2019 03:00:54 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727249AbfJaJ7x (ORCPT + 99 others); Thu, 31 Oct 2019 05:59:53 -0400 Received: from mx2.suse.de ([195.135.220.15]:34214 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727130AbfJaJ7u (ORCPT ); Thu, 31 Oct 2019 05:59:50 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 50999B181; Thu, 31 Oct 2019 09:59:48 +0000 (UTC) From: Jiri Slaby To: axboe@kernel.dk Cc: linux-kernel@vger.kernel.org, Jiri Slaby , linux-ide@vger.kernel.org, Sergei Shtylyov Subject: [PATCH v2 -resend 4/4] ata: sata_mv, avoid trigerrable BUG_ON Date: Thu, 31 Oct 2019 10:59:46 +0100 Message-Id: <20191031095946.7070-4-jslaby@suse.cz> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20191031095946.7070-1-jslaby@suse.cz> References: <20191031095946.7070-1-jslaby@suse.cz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org There are several reports that the BUG_ON on unsupported command in mv_qc_prep can be triggered under some circumstances: https://bugzilla.suse.com/show_bug.cgi?id=1110252 https://serverfault.com/questions/888897/raid-problems-after-power-outage https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1652185 https://bugs.centos.org/view.php?id=14998 Let sata_mv handle the failure gracefully: warn about that incl. the failed command number and return an AC_ERR_INVALID error. We can do that now thanks to the previous patch. Remove also the long-standing FIXME. [v2] use %.2x as commands are defined as hexa. Signed-off-by: Jiri Slaby Cc: Jens Axboe Cc: linux-ide@vger.kernel.org Cc: Sergei Shtylyov --- drivers/ata/sata_mv.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c index 5d5c8936a590..277f11909fc1 100644 --- a/drivers/ata/sata_mv.c +++ b/drivers/ata/sata_mv.c @@ -2098,12 +2098,10 @@ static enum ata_completion_errors mv_qc_prep(struct ata_queued_cmd *qc) * non-NCQ mode are: [RW] STREAM DMA and W DMA FUA EXT, none * of which are defined/used by Linux. If we get here, this * driver needs work. - * - * FIXME: modify libata to give qc_prep a return value and - * return error here. */ - BUG_ON(tf->command); - break; + ata_port_err(ap, "%s: unsupported command: %.2x\n", __func__, + tf->command); + return AC_ERR_INVALID; } mv_crqb_pack_cmd(cw++, tf->nsect, ATA_REG_NSECT, 0); mv_crqb_pack_cmd(cw++, tf->hob_lbal, ATA_REG_LBAL, 0); -- 2.23.0