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 B289442E3A; Mon, 10 Jul 2023 11:30:00 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3E38140C35; Mon, 10 Jul 2023 11:30:00 +0200 (CEST) Received: from mail-ua1-f51.google.com (mail-ua1-f51.google.com [209.85.222.51]) by mails.dpdk.org (Postfix) with ESMTP id 4FFD540698 for ; Mon, 10 Jul 2023 11:29:58 +0200 (CEST) Received: by mail-ua1-f51.google.com with SMTP id a1e0cc1a2514c-78f32e233a0so1339029241.0 for ; Mon, 10 Jul 2023 02:29:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1688981397; x=1691573397; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=vRdSRUZavIpbxoXmqydHU3YpYBODEV/13jN1HH017As=; b=MO0NO4PV5X2lpU3qTpy7TkvTOp1ZIrKE/IO5oObZ1xqRrweZ/NoibLm83KtUcvZESr ou3+0z6qphpEJHje/MtIfxXEpNU8ZLbKrX1eJnRaJ4LIeLBXAZBjFU09Skdt5YRvPStg 4nmIGzWhxG1sqeyzZT+VAUn/0nB4E3auzzlKfM0Q32FXRcxFiScLnV++h6Zf0391w7KP gSTpy4fYrqxFe0rALAVWxychV3qWwGg693VDMl+ZVm/98Ap4StMOrNFG+8rDPtqJwPDG gl1BmW0TlFbfbEjjS+ZWg5LbuLyi6U9LYQKp+NNZ0VZZYNxiRXiijCNoJzDCVe6OS3ys tq4A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1688981397; x=1691573397; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=vRdSRUZavIpbxoXmqydHU3YpYBODEV/13jN1HH017As=; b=j/wPKC8dw9wn4Lc3nTm6kyUhEKTVs13Wyqw3q8Y5q1qErnsh7jJFm0V4If9DuVVMMj SxeHzuXs8LtvNCz9VKwSWs/XCoUWqsDFHmfDAn4bT4jSNJ20naBTSUE+KEN3U6Mf7CB7 YZnRK36XsIbdi+C2Dtqp3PGJsF16O8VnIpTpWJOmEsI09fRPO46p7yiWuXPtBeazaTd1 v/iva6VJ29cMzTiUghVEPP9J0LW6dK4ZL6lH3j3Nf+IEvanZ0MM6RmBRmD5SiqTrN3G4 7PWuw4iPD+LMYcjH+uGuD1SxNfKt480h/Rphxuy0ZyTovrzKwGYQ4S0LL2qgl2mIyycU mSTQ== X-Gm-Message-State: ABy/qLY5dwwygnRVxDjsDG89jEuAYcyM36Ny1d47OYq0HdwFD8LqdXhy w914YOL2wQNMYX9c5aPKSDYiQF0RGPT6/jVmdo8= X-Google-Smtp-Source: APBJJlEekB2BoCXD7FfVloK9FB/p3qePvelKPQ144sQH/BHMN78n2qu7dXcjbvQqcAgvtlO374qMllU3s3lpt4YnjmQ= X-Received: by 2002:a67:f312:0:b0:443:77be:9fc7 with SMTP id p18-20020a67f312000000b0044377be9fc7mr5823628vsf.25.1688981397517; Mon, 10 Jul 2023 02:29:57 -0700 (PDT) MIME-Version: 1.0 References: <20230705015633.1465235-1-zhirun.yan@intel.com> <20230710071515.3143533-1-zhirun.yan@intel.com> <20230710071515.3143533-3-zhirun.yan@intel.com> In-Reply-To: <20230710071515.3143533-3-zhirun.yan@intel.com> From: Jerin Jacob Date: Mon, 10 Jul 2023 14:59:31 +0530 Message-ID: Subject: Re: [PATCH v4 2/2] graph: fix graph model check in core binding To: Zhirun Yan Cc: dev@dpdk.org, jerinj@marvell.com, kirankumark@marvell.com, ndabilpuram@marvell.com, qi.fu@intel.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Mon, Jul 10, 2023 at 1:09=E2=80=AFPM Zhirun Yan w= rote: > > This function is used for mcore dispatch model only, correct the check to > make sure it is the expected model. And specific the model by > rte_graph_worker_model_set() before call it in test. Update release notes > for new mcore dispatch model. Fix missing worker model section by invoking rte_graph_worker_model_set(RTE_GRAPH_MODEL_MCORE_DISPATCH) in test_graph_model_mcore_dispatch_core_bind_unbind() routine. Also, Updated missing release notes for new mcore dispatch model addition and sample l3fwd-graph update. With above change, Acked-by: Jerin Jacob