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=-9.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT 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 4DD4AC388F9 for ; Sat, 31 Oct 2020 11:43:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 13CC520731 for ; Sat, 31 Oct 2020 11:43:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604144599; bh=e2Rk9PNlPqMnrxoDg8bwy03tmY6Hby9b57Vg85fF3OE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=wdJ575LvUAPB9q+lcaI+rU5sTRRJwO9tF2i0HrsJmTs/3ChVgHb+E3vHHCsDHW29+ NXNMwP7K6htSC4Ca95Z2jYlFkMM+9MXJFm7KOpkh+6qu9jJ773v0pGTp+mbedLf5b1 kahU01Sh9+uNbKbQd/6OVHx4S0aisCxBCjbv44zA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727990AbgJaLnR (ORCPT ); Sat, 31 Oct 2020 07:43:17 -0400 Received: from mail.kernel.org ([198.145.29.99]:43052 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727958AbgJaLnK (ORCPT ); Sat, 31 Oct 2020 07:43:10 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (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 BE26020739; Sat, 31 Oct 2020 11:43:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604144590; bh=e2Rk9PNlPqMnrxoDg8bwy03tmY6Hby9b57Vg85fF3OE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sqzkqO9IjVUc/Toa+ZBi+WkrJoDJ4+VZmxnLtQJDziGQuuC+Qxq45cl/k9a3Vf9vi vyUJZ//i0QdQfd4iKLoyHBwBJ3CvKG7xxbxdGeliO33vt/dw/BH3k8PVv8J2+RnunS V+WhUd6IXZAIW2zM2BXtq7WAd5tcxVyh7p3OixXI= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Frederic Barrat , Andrew Donnellan , Michael Ellerman Subject: [PATCH 5.8 59/70] cxl: Rework error message for incompatible slots Date: Sat, 31 Oct 2020 12:36:31 +0100 Message-Id: <20201031113502.327234671@linuxfoundation.org> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20201031113459.481803250@linuxfoundation.org> References: <20201031113459.481803250@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Frederic Barrat commit 40ac790d99c6dd16b367d5c2339e446a5f1b0593 upstream. Improve the error message shown if a capi adapter is plugged on a capi-incompatible slot directly under the PHB (no intermediate switch). Fixes: 5632874311db ("cxl: Add support for POWER9 DD2") Cc: stable@vger.kernel.org # 4.14+ Signed-off-by: Frederic Barrat Reviewed-by: Andrew Donnellan Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/20200407115601.25453-1-fbarrat@linux.ibm.com Signed-off-by: Greg Kroah-Hartman --- drivers/misc/cxl/pci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/misc/cxl/pci.c +++ b/drivers/misc/cxl/pci.c @@ -393,8 +393,8 @@ int cxl_calc_capp_routing(struct pci_dev *capp_unit_id = get_capp_unit_id(np, *phb_index); of_node_put(np); if (!*capp_unit_id) { - pr_err("cxl: invalid capp unit id (phb_index: %d)\n", - *phb_index); + pr_err("cxl: No capp unit found for PHB[%lld,%d]. Make sure the adapter is on a capi-compatible slot\n", + *chipid, *phb_index); return -ENODEV; }