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 5EFE842CC6 for ; Thu, 15 Jun 2023 15:49:54 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 55DA24161A; Thu, 15 Jun 2023 15:49:54 +0200 (CEST) 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 139A240E0F for ; Thu, 15 Jun 2023 15:49:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1686836991; 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; bh=2qAKn6IfqBsv6CC39q8k6GFmWuGChezKYnYRKqkxqu0=; b=AKM46NwgmeKBn5wmj44CnqJoWXC7KpTNbRcAAHwwYNfUf9se0b08x2KfPXT459QyXtAHHh F9JE32aNwvHqvhs7DMMqiPpDCQ2zf1BBbZsjcomSa/xBpXmWh1sqJlgnNjBvWcaujpkV0X vFNbL+ujeavY9NMwJS75sLDpNuGJes4= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-523-qnlGgLXJPV2l1b1J1OGsyw-1; Thu, 15 Jun 2023 09:49:46 -0400 X-MC-Unique: qnlGgLXJPV2l1b1J1OGsyw-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 2A0B338035A8; Thu, 15 Jun 2023 13:49:46 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.225.83]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0A0B82166B25; Thu, 15 Jun 2023 13:49:44 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Olivier Matz , Dekel Peled , Andrew Rybchenko Subject: [PATCH] mbuf: fix doxygen for distributor metadata Date: Thu, 15 Jun 2023 15:49:42 +0200 Message-Id: <20230615134942.3393383-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 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 /**< is for post annotations. Fixes: 839b20be0e9b ("ethdev: support metadata as flow rule criteria") Cc: stable@dpdk.org Signed-off-by: David Marchand --- lib/mbuf/rte_mbuf_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mbuf/rte_mbuf_core.h b/lib/mbuf/rte_mbuf_core.h index c692c33ec4..2030b3bef9 100644 --- a/lib/mbuf/rte_mbuf_core.h +++ b/lib/mbuf/rte_mbuf_core.h @@ -584,8 +584,8 @@ struct rte_mbuf { * @see rte_event_eth_tx_adapter_txq_set() */ } txadapter; /**< Eventdev ethdev Tx adapter */ - /**< User defined tags. See rte_distributor_process() */ uint32_t usr; + /**< User defined tags. See rte_distributor_process() */ } hash; /**< hash information */ }; -- 2.40.1