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 DC794C38142 for ; Wed, 1 Feb 2023 03:27:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231420AbjBAD1A (ORCPT ); Tue, 31 Jan 2023 22:27:00 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50268 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229972AbjBAD04 (ORCPT ); Tue, 31 Jan 2023 22:26:56 -0500 Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BD25842BF1 for ; Tue, 31 Jan 2023 19:26:54 -0800 (PST) Received: from kwepemm600005.china.huawei.com (unknown [172.30.72.57]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4P66jZ0T3QznVm3; Wed, 1 Feb 2023 11:24:50 +0800 (CST) Received: from [10.67.103.158] (10.67.103.158) by kwepemm600005.china.huawei.com (7.193.23.191) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.34; Wed, 1 Feb 2023 11:26:52 +0800 Subject: Re: [PATCH v7 4/5] Documentation: add debugfs description for hisi_acc_vfio_pci To: Alex Williamson CC: , , , , , References: <20230120032930.43608-1-liulongfang@huawei.com> <20230120032930.43608-5-liulongfang@huawei.com> <20230126122805.1e17d08b.alex.williamson@redhat.com> From: liulongfang Message-ID: <4df2026a-51b4-f9a9-463b-0ad9e38d054a@huawei.com> Date: Wed, 1 Feb 2023 11:26:51 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: <20230126122805.1e17d08b.alex.williamson@redhat.com> Content-Type: text/plain; charset="gbk" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.103.158] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To kwepemm600005.china.huawei.com (7.193.23.191) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/1/27 3:28, Alex Williamson wrote: > On Fri, 20 Jan 2023 11:29:29 +0800 > Longfang Liu wrote: > >> Add a debugfs document description file to help users understand >> how to use the accelerator live migration driver's debugfs. >> >> Signed-off-by: Longfang Liu >> --- >> .../ABI/testing/debugfs-hisi-migration | 32 +++++++++++++++++++ >> 1 file changed, 32 insertions(+) >> create mode 100644 Documentation/ABI/testing/debugfs-hisi-migration >> >> diff --git a/Documentation/ABI/testing/debugfs-hisi-migration b/Documentation/ABI/testing/debugfs-hisi-migration >> new file mode 100644 >> index 000000000000..d644a497c464 >> --- /dev/null >> +++ b/Documentation/ABI/testing/debugfs-hisi-migration >> @@ -0,0 +1,32 @@ >> +What: /sys/kernel/debug/vfio_mig//state >> +Date: Jan 2023 >> +Contact: linux-kernel@vger.kernel.org >> +Description: Read the live migration status of the VF device. >> + The status of these live migrations includes: >> + ERROR, RUNNING, STOP, STOP_COPY, RESUMING. > > state is added by vfio-pci-core in this series, so the documentation > can't be limited to hisi_acc. > >> + >> +What: /sys/kernel/debug/vfio_mig//mig_data >> +Date: Jan 2023 >> +Contact: linux-kernel@vger.kernel.org >> +Description: Read the live migration data of the VF device. >> + The output format of the data is defined by the live >> + migration driver. >> + >> +What: /sys/kernel/debug/vfio_mig//mig_attr >> +Date: Jan 2023 >> +Contact: linux-kernel@vger.kernel.org >> +Description: Read the live migration attributes of the VF device. >> + The output format of the attributes is defined by the live >> + migration driver. >> + >> +What: /sys/kernel/debug/vfio_mig//debug >> +Date: Jan 2023 >> +Contact: linux-kernel@vger.kernel.org >> +Description: This debug file supports "echo" command write operations. >> + The command is actually represented by an integer number, and the >> + specific meaning is defined by the corresponding device driver. >> + For example, three commands are defined in the HiSilicon accelerator >> + live migration driver: >> + 0: State save >> + 1: State resume >> + 2: IO test > > I think the goal here is to create some sort of standard interface for > migration, so these should also be documented for all devices, and any > device specific behavior noted. Otherwise these should all be prefixed > hisi_acc_ to denote them as device specific implementations. Thanks, > Ok, the ABI file name needs to be changed, and the internal description needs to be updated, not limited to hisi_acc. > Alex > Thansk, Longfang. > . >