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 lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 5DC6BC433EF for ; Thu, 3 Mar 2022 14:15:19 +0000 (UTC) Received: from localhost ([::1]:59602 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nPmEg-0005Cj-Ct for qemu-devel@archiver.kernel.org; Thu, 03 Mar 2022 09:15:18 -0500 Received: from eggs.gnu.org ([209.51.188.92]:54612) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nPmDM-0003rv-Ry for qemu-devel@nongnu.org; Thu, 03 Mar 2022 09:13:56 -0500 Received: from lizzy.crudebyte.com ([91.194.90.13]:36157) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nPmDL-0005Jo-I4 for qemu-devel@nongnu.org; Thu, 03 Mar 2022 09:13:56 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=crudebyte.com; s=lizzy; h=Cc:To:Subject:Date:From:References:In-Reply-To: Message-Id:Content-Type:Content-Transfer-Encoding:MIME-Version:Content-ID: Content-Description; bh=suW9pBmjvp1z756BBcy07wILv6z1XFsPjCtDDGte0lA=; b=DnuKs I9lG6rPeEDP3daHcol8Uj3dVbLMIVEuZAMSf5CFqzTg1uWuwaxqqQ5YV5UiaRJMrfLFWFhykNRash +j3tiw9Z98T054If2Hyo8Ilv3/sq+vPMnZjYY038+pQLMeqsvBmCkL/BlWbP8/BvV2+sme1EGhU0F 7j5pfaMU/VBTOG78gnL+VoDATrCSDOKsZiW+GttCi8+wPpyQoMmC/Ui37J4h+7B1odJzD6HrlmivX qW9uqQ9wj8McG7fl8Ao2Ix1aU6g+hGqkePPxCY0ErDZqyf1rbgo8cCumgvOOBTItx6S/G2fwUX/U2 sqLmKcyppe3iDTzGPHFd2x+G7czIA==; Message-Id: In-Reply-To: References: From: Christian Schoenebeck Date: Thu, 3 Mar 2022 14:22:45 +0100 Subject: [PATCH 5/6] 9pfs/coth.h: drop Doxygen format on v9fs_co_run_in_worker() To: qemu-devel@nongnu.org Cc: Greg Kurz Received-SPF: none client-ip=91.194.90.13; envelope-from=a8fdf0290d1e40a68f5577f29aeae12298b70733@lizzy.crudebyte.com; helo=lizzy.crudebyte.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" API doc comments in QEMU are supposed to be in kerneldoc format, so drop Doxygen format used on v9fs_co_run_in_worker() macro. Signed-off-by: Christian Schoenebeck --- hw/9pfs/coth.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/9pfs/coth.h b/hw/9pfs/coth.h index f83c7dda7b..1a1edbdc2a 100644 --- a/hw/9pfs/coth.h +++ b/hw/9pfs/coth.h @@ -19,7 +19,7 @@ #include "qemu/coroutine.h" #include "9p.h" -/** +/* * we want to use bottom half because we want to make sure the below * sequence of events. * @@ -29,7 +29,7 @@ * we cannot swap step 1 and 2, because that would imply worker thread * can enter coroutine while step1 is still running * - * @b PERFORMANCE @b CONSIDERATIONS: As a rule of thumb, keep in mind + * PERFORMANCE CONSIDERATIONS: As a rule of thumb, keep in mind * that hopping between threads adds @b latency! So when handling a * 9pfs request, avoid calling v9fs_co_run_in_worker() too often, because * this might otherwise sum up to a significant, huge overall latency for -- 2.30.2