From patchwork Tue Nov 12 07:33:18 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: liulongfang X-Patchwork-Id: 13871793 Received: from szxga05-in.huawei.com (szxga05-in.huawei.com [45.249.212.191]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5CC641AA79A; Tue, 12 Nov 2024 07:34:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.191 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731396844; cv=none; b=mYq5Bz29oOtuza+qIZlNRYNH9jMk79xnRkt9IJuv83VJ4eOjfbIX4DpB8qedw7QhhvEny5xlAPL6MwrO6qltZJ9dqkhShIS0+8LJkuBhPIBy4s0T9zXFt8bKFJpIdE3fu9BGNJabJy8tUV/Lt8af+cygAtnkKGyGqfxQbEPS/Ns= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731396844; c=relaxed/simple; bh=sQH0ZSBGjmX4rDAP3wxFBKk+b0SCQ72CAlpaESZbm+M=; h=From:To:CC:Subject:Date:Message-ID:MIME-Version:Content-Type; b=nlhcTCL8VXtiIvIGZwnWPsZsUTA94oTcVSzkNkKzi1DRSNQzwDqZ0+DL2h4LGb3Km7MtZks6GexsYf2KYtcBPnTcRSEOMTS9HMp//A4hV/1e8DD117yW0vUWh5dc418v7rUuUiLgPzYZKZ/0AD+fmyb4Vu1ZJxv9ogrpDWIyEWE= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.191 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.19.88.214]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4XndMc51qYz28fQC; Tue, 12 Nov 2024 15:29:16 +0800 (CST) Received: from dggemv703-chm.china.huawei.com (unknown [10.3.19.46]) by mail.maildlp.com (Postfix) with ESMTPS id 337F11A016C; Tue, 12 Nov 2024 15:33:59 +0800 (CST) Received: from kwepemn100017.china.huawei.com (7.202.194.122) by dggemv703-chm.china.huawei.com (10.3.19.46) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Tue, 12 Nov 2024 15:33:58 +0800 Received: from huawei.com (10.50.165.33) by kwepemn100017.china.huawei.com (7.202.194.122) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Tue, 12 Nov 2024 15:33:58 +0800 From: Longfang Liu To: , , , CC: , , , Subject: [PATCH v15 0/4] debugfs to hisilicon migration driver Date: Tue, 12 Nov 2024 15:33:18 +0800 Message-ID: <20241112073322.54550-1-liulongfang@huawei.com> X-Mailer: git-send-email 2.24.0 Precedence: bulk X-Mailing-List: kvm@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To kwepemn100017.china.huawei.com (7.202.194.122) Add a debugfs function to the hisilicon migration driver in VFIO to provide intermediate state values and data during device migration. When the execution of live migration fails, the user can view the status and data during the migration process separately from the source and the destination, which is convenient for users to analyze and locate problems. Changes v14 -> v15 Correct variable declaration type Changes v13 -> v14 Bugfix the parameter problem of seq_puts() Changes v12 -> v13 Replace seq_printf() with seq_puts() Changes v11 -> v12 Update comments and delete unnecessary logs Changes v10 -> v11 Update conditions for debugfs registration Changes v9 -> v10 Optimize symmetry processing of mutex Changes v8 -> v9 Added device enable mutex Changes v7 -> v8 Delete unnecessary information Changes v6 -> v7 Remove redundant kernel error log printing and remove unrelated bugfix code Changes v5 -> v6 Modify log output calling error Changes v4 -> v5 Adjust the descriptioniptionbugfs file directory Changes v3 -> v4 Rebased on kernel6.9 Changes 2 -> v3 Solve debugfs serialization problem. Changes v1 -> v2 Solve the racy problem of io_base. Longfang Liu (4): hisi_acc_vfio_pci: extract public functions for container_of hisi_acc_vfio_pci: create subfunction for data reading hisi_acc_vfio_pci: register debugfs for hisilicon migration driver Documentation: add debugfs description for hisi migration .../ABI/testing/debugfs-hisi-migration | 25 ++ .../vfio/pci/hisilicon/hisi_acc_vfio_pci.c | 266 ++++++++++++++++-- .../vfio/pci/hisilicon/hisi_acc_vfio_pci.h | 19 ++ 3 files changed, 279 insertions(+), 31 deletions(-) create mode 100644 Documentation/ABI/testing/debugfs-hisi-migration