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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 09EE3C77B7F for ; Sat, 6 May 2023 09:49:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230313AbjEFJtG (ORCPT ); Sat, 6 May 2023 05:49:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58556 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229872AbjEFJtE (ORCPT ); Sat, 6 May 2023 05:49:04 -0400 Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0480883ED; Sat, 6 May 2023 02:49:02 -0700 (PDT) Received: from dggpemm500012.china.huawei.com (unknown [172.30.72.55]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4QD2hD4bQqzTjxm; Sat, 6 May 2023 17:44:28 +0800 (CST) Received: from [10.67.101.126] (10.67.101.126) by dggpemm500012.china.huawei.com (7.185.36.89) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.23; Sat, 6 May 2023 17:49:00 +0800 Message-ID: <0b4dee69-347f-4a53-d41d-5a0de96d9b2f@huawei.com> Date: Sat, 6 May 2023 17:49:00 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.3.1 Subject: Re: [PATCH v2] ata: libata-scsi: Fix get identity data failed Content-Language: en-CA To: Jason Yan , John Garry , Damien Le Moal , , , CC: , , , , References: <20230505025712.19438-1-yangxingui@huawei.com> <291f1d97-9195-45ac-8e12-058f5c797277@kernel.org> <1b703656-e966-63f8-19dd-33e4e9914676@huawei.com> <4364409d-e63c-f87f-0484-f170e92d44c5@huawei.com> From: yangxingui In-Reply-To: <4364409d-e63c-f87f-0484-f170e92d44c5@huawei.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.101.126] X-ClientProxiedBy: dggpemm100015.china.huawei.com (7.185.36.61) To dggpemm500012.china.huawei.com (7.185.36.89) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/5/6 10:11, Jason Yan wrote: > On 2023/5/5 17:14, yangxingui wrote: >> >> >> On 2023/5/5 16:25, John Garry wrote: >>> On 05/05/2023 09:17, Damien Le Moal wrote: >>>>> --- a/drivers/ata/libata-scsi.c >>>>> +++ b/drivers/ata/libata-scsi.c >>>>> @@ -26,6 +26,7 @@ >>>>>   #include >>>>>   #include >>>>>   #include >>>>> +#include >>> >>> hmmm... is it really acceptable that libata is referencing libsas? I >>> didn't think that it would be. libsas uses libata, not the other way >>> around. >> Yeah, I didn't expect that either. Is there any other way? If so, is >> patch v1 OK? > > Hi Xingui, > > Libsas should follow the standard way of libata to manage the ata > structures. Not the opposite way. So what you should do is to find a way > for libsas to behave as a normal ata driver. It's not good to make > libata aware of libsas or referencing libsas. > > If you have detailed questions you can ask me internally(which will be > faster) or publicly through the maillist(which may have some delay). > ok Thanks, Xingui . > Thanks, > Jason > .