From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <stable-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id EED38A00C4
	for <public@inbox.dpdk.org>; Sun,  1 May 2022 16:59:47 +0200 (CEST)
Received: from [217.70.189.124] (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id E6F6640F35;
	Sun,  1 May 2022 16:59:47 +0200 (CEST)
Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com
 [67.231.148.174])
 by mails.dpdk.org (Postfix) with ESMTP id F12C04003F;
 Sun,  1 May 2022 16:59:44 +0200 (CEST)
Received: from pps.filterd (m0045849.ppops.net [127.0.0.1])
 by mx0a-0016f401.pphosted.com (8.17.1.5/8.16.1.2) with ESMTP id 2416SBIW004789;
 Sun, 1 May 2022 07:57:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com;
 h=from : to : cc :
 subject : date : message-id : mime-version : content-transfer-encoding :
 content-type; s=pfpt0220; bh=976HxP3NB8oKPUPnPql85quvtP9TjwB4fNJKRb59DO0=;
 b=bo9KxHGQCC5IAniciLLxhifKyba+aKg5cdWAoqb3h7qJHjTaBBsUH0hPp7u2Hf7+RzOn
 IgW0Z655Es3OKP/v+YDzwsjHjFX6m3icBLUUckSod3zK4R7nzqHjh+NStj7lMrFHixcl
 04ZT0lrPvbRHI1fPuYf30CsiEjjvdZYwZmxqy6eHoZiNNw5wa838YcwMAfWlhNVxlTyU
 kxNgxflWwsxJCa1GwBlZgaChMppnNBZyZRSWYqKfqGjovfGUpBYCS9RZYBXCi3ftKq6V
 26iijlBdYYEMP00QdXIcIzyDFLLGeKJP3TXe+5es1cHjy8YmEEYE2SPhX4sLydvXvG2F Kg== 
Received: from dc5-exch02.marvell.com ([199.233.59.182])
 by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3fs2fmtx4s-1
 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT);
 Sun, 01 May 2022 07:57:41 -0700
Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com
 (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18;
 Sun, 1 May 2022 07:57:39 -0700
Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com
 (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend
 Transport; Sun, 1 May 2022 07:57:39 -0700
Received: from jerin-lab.marvell.com (jerin-lab.marvell.com [10.28.34.14])
 by maili.marvell.com (Postfix) with ESMTP id 3B2593F703F;
 Sun,  1 May 2022 07:57:36 -0700 (PDT)
From: <jerinj@marvell.com>
To: <dev@dpdk.org>, Jay Jayatheerthan <jay.jayatheerthan@intel.com>, "Jerin
 Jacob" <jerinj@marvell.com>, Ray Kinsella <mdr@ashroe.eu>, Pavan Nikhilesh
 <pbhagavatula@marvell.com>
CC: <thomas@monjalon.net>, <david.marchand@redhat.com>, <stable@dpdk.org>
Subject: [dpdk-dev] [PATCH] doc: fix build error with sphinx 4.5.0
Date: Sun, 1 May 2022 20:27:21 +0530
Message-ID: <20220501145721.3776509-1-jerinj@marvell.com>
X-Mailer: git-send-email 2.36.0
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/plain
X-Proofpoint-GUID: CdnUyVVzmMnUUSM9ZmMIGt-6dM6rDhKL
X-Proofpoint-ORIG-GUID: CdnUyVVzmMnUUSM9ZmMIGt-6dM6rDhKL
X-Proofpoint-Virus-Version: vendor=baseguard
 engine=ICAP:2.0.205,Aquarius:18.0.858,Hydra:6.0.486,FMLib:17.11.64.514
 definitions=2022-05-01_05,2022-04-28_01,2022-02-23_01
X-BeenThere: stable@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: patches for DPDK stable branches <stable.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
Errors-To: stable-bounces@dpdk.org

From: Jerin Jacob <jerinj@marvell.com>

Latest sphinx checks c language syntax more aggressively.
Fix the following warning by correcting c language syntax.

doc/guides/prog_guide/event_ethernet_rx_adapter.rst:243:
WARNING: Could not lex literal_block as "c". Highlighting skipped.

Fixes: 3c838062b91f ("eventdev: introduce event vector Rx capability")
Cc: Pavan Nikhilesh <pbhagavatula@marvell.com>
Cc: stable@dpdk.org

Signed-off-by: Jerin Jacob <jerinj@marvell.com>
---
 doc/guides/prog_guide/event_ethernet_rx_adapter.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/guides/prog_guide/event_ethernet_rx_adapter.rst b/doc/guides/prog_guide/event_ethernet_rx_adapter.rst
index 67b11e1563..3b4ef502b2 100644
--- a/doc/guides/prog_guide/event_ethernet_rx_adapter.rst
+++ b/doc/guides/prog_guide/event_ethernet_rx_adapter.rst
@@ -257,8 +257,8 @@ A loop processing ``rte_event_vector`` containing mbufs is shown below.
                         /* Process each mbuf. */
                 }
         break;
-        case ...
-        ...
+        case default:
+                /* Handle other event_types. */
         }
 
 Rx event vectorization for SW Rx adapter
-- 
2.36.0