From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3FDDAA00C2 for ; Wed, 23 Nov 2022 19:04:41 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3B7CB42DB1; Wed, 23 Nov 2022 19:04:41 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id F29C342DA3 for ; Wed, 23 Nov 2022 19:04:39 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1669226679; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=naPHUz3VesuZtCCVc7+FQFmP3EPYA582t5Krwzp7M28=; b=QBc63krsm+veOTIbQK9pV9RKZ3vdhJPeFyj8+FosBhqIqauiqBc0OCa1bJ9TOtn8TYQtjs IxsAYdNpXu2cvIiOWzaC+RSKoGydkCxeIxVL1foStzIAeJW0V2iRAb5BgmkKbonLdah80W YHLOxQ+SLtf9TCXDkvGk06X2xRsDkvs= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-73-Pn1GVEI8MaeGh8NEtFnn5w-1; Wed, 23 Nov 2022 13:04:35 -0500 X-MC-Unique: Pn1GVEI8MaeGh8NEtFnn5w-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id ADAED101A528; Wed, 23 Nov 2022 18:04:34 +0000 (UTC) Received: from rh.Home (unknown [10.39.195.16]) by smtp.corp.redhat.com (Postfix) with ESMTP id 10695492B07; Wed, 23 Nov 2022 18:04:33 +0000 (UTC) From: Kevin Traynor To: Jerin Jacob Cc: dpdk stable Subject: patch 'power: fix some doxygen comments' has been queued to stable release 21.11.3 Date: Wed, 23 Nov 2022 18:03:20 +0000 Message-Id: <20221123180413.733554-7-ktraynor@redhat.com> In-Reply-To: <20221123180413.733554-1-ktraynor@redhat.com> References: <20221123180413.733554-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi, FYI, your patch has been queued to stable release 21.11.3 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/28/22. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/5a4f6d16e87f274533ee1b2db1ae14b8e83e32b4 Thanks. Kevin --- >From 5a4f6d16e87f274533ee1b2db1ae14b8e83e32b4 Mon Sep 17 00:00:00 2001 From: Jerin Jacob Date: Wed, 9 Nov 2022 20:24:10 +0530 Subject: [PATCH] power: fix some doxygen comments [ upstream commit 58794bf8d2d577b18e8bd430fd6419274678b34e ] Fix following syntax error reported by doxygen 1.9.5 version. lib/power/rte_power.h:169: error: rte_power_freq_up has @param documentation sections but no arguments (warning treated as error, aborting now) Fixes: d7937e2e3d12 ("power: initial import") Signed-off-by: Jerin Jacob --- lib/power/rte_power.h | 55 ------------------------------------------- 1 file changed, 55 deletions(-) diff --git a/lib/power/rte_power.h b/lib/power/rte_power.h index c5759afa39..829a22380d 100644 --- a/lib/power/rte_power.h +++ b/lib/power/rte_power.h @@ -172,12 +172,4 @@ typedef int (*rte_power_freq_change_t)(unsigned int lcore_id); * frequencies. * Review each environments specific documentation for usage. - * - * @param lcore_id - * lcore id. - * - * @return - * - 1 on success with frequency changed. - * - 0 on success without frequency changed. - * - Negative on error. */ extern rte_power_freq_change_t rte_power_freq_up; @@ -187,14 +179,5 @@ extern rte_power_freq_change_t rte_power_freq_up; * frequencies. * Review each environments specific documentation for usage. - * - * @param lcore_id - * lcore id. - * - * @return - * - 1 on success with frequency changed. - * - 0 on success without frequency changed. - * - Negative on error. */ - extern rte_power_freq_change_t rte_power_freq_down; @@ -203,12 +186,4 @@ extern rte_power_freq_change_t rte_power_freq_down; * available frequencies. * Review each environments specific documentation for usage. - * - * @param lcore_id - * lcore id. - * - * @return - * - 1 on success with frequency changed. - * - 0 on success without frequency changed. - * - Negative on error. */ extern rte_power_freq_change_t rte_power_freq_max; @@ -218,12 +193,4 @@ extern rte_power_freq_change_t rte_power_freq_max; * available frequencies. * Review each environments specific documentation for usage.. - * - * @param lcore_id - * lcore id. - * - * @return - * - 1 on success with frequency changed. - * - 0 on success without frequency changed. - * - Negative on error. */ extern rte_power_freq_change_t rte_power_freq_min; @@ -232,12 +199,4 @@ extern rte_power_freq_change_t rte_power_freq_min; * Query the Turbo Boost status of a specific lcore. * Review each environments specific documentation for usage.. - * - * @param lcore_id - * lcore id. - * - * @return - * - 1 Turbo Boost is enabled for this lcore. - * - 0 Turbo Boost is disabled for this lcore. - * - Negative on error. */ extern rte_power_freq_change_t rte_power_turbo_status; @@ -246,11 +205,4 @@ extern rte_power_freq_change_t rte_power_turbo_status; * Enable Turbo Boost for this lcore. * Review each environments specific documentation for usage.. - * - * @param lcore_id - * lcore id. - * - * @return - * - 0 on success. - * - Negative on error. */ extern rte_power_freq_change_t rte_power_freq_enable_turbo; @@ -259,11 +211,4 @@ extern rte_power_freq_change_t rte_power_freq_enable_turbo; * Disable Turbo Boost for this lcore. * Review each environments specific documentation for usage.. - * - * @param lcore_id - * lcore id. - * - * @return - * - 0 on success. - * - Negative on error. */ extern rte_power_freq_change_t rte_power_freq_disable_turbo; -- 2.38.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2022-11-23 09:55:57.286441151 +0000 +++ 0007-power-fix-some-doxygen-comments.patch 2022-11-23 09:55:57.013149166 +0000 @@ -1 +1 @@ -From 58794bf8d2d577b18e8bd430fd6419274678b34e Mon Sep 17 00:00:00 2001 +From 5a4f6d16e87f274533ee1b2db1ae14b8e83e32b4 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 58794bf8d2d577b18e8bd430fd6419274678b34e ] + @@ -13 +14,0 @@ -Cc: stable@dpdk.org @@ -21 +22 @@ -index 47345e26df..7954299489 100644 +index c5759afa39..829a22380d 100644 @@ -24 +25 @@ -@@ -170,12 +170,4 @@ typedef int (*rte_power_freq_change_t)(unsigned int lcore_id); +@@ -172,12 +172,4 @@ typedef int (*rte_power_freq_change_t)(unsigned int lcore_id); @@ -37 +38 @@ -@@ -185,14 +177,5 @@ extern rte_power_freq_change_t rte_power_freq_up; +@@ -187,14 +179,5 @@ extern rte_power_freq_change_t rte_power_freq_up; @@ -52 +53 @@ -@@ -201,12 +184,4 @@ extern rte_power_freq_change_t rte_power_freq_down; +@@ -203,12 +186,4 @@ extern rte_power_freq_change_t rte_power_freq_down; @@ -65 +66 @@ -@@ -216,12 +191,4 @@ extern rte_power_freq_change_t rte_power_freq_max; +@@ -218,12 +193,4 @@ extern rte_power_freq_change_t rte_power_freq_max; @@ -78 +79 @@ -@@ -230,12 +197,4 @@ extern rte_power_freq_change_t rte_power_freq_min; +@@ -232,12 +199,4 @@ extern rte_power_freq_change_t rte_power_freq_min; @@ -91 +92 @@ -@@ -244,11 +203,4 @@ extern rte_power_freq_change_t rte_power_turbo_status; +@@ -246,11 +205,4 @@ extern rte_power_freq_change_t rte_power_turbo_status; @@ -103 +104 @@ -@@ -257,11 +209,4 @@ extern rte_power_freq_change_t rte_power_freq_enable_turbo; +@@ -259,11 +211,4 @@ extern rte_power_freq_change_t rte_power_freq_enable_turbo;