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 8B7C7430C1 for ; Mon, 21 Aug 2023 15:27:42 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 864E442FB2; Mon, 21 Aug 2023 15:27:42 +0200 (CEST) Received: from mail-vs1-f45.google.com (mail-vs1-f45.google.com [209.85.217.45]) by mails.dpdk.org (Postfix) with ESMTP id 1E58642BC9; Mon, 21 Aug 2023 15:27:41 +0200 (CEST) Received: by mail-vs1-f45.google.com with SMTP id ada2fe7eead31-44d38d91885so589161137.1; Mon, 21 Aug 2023 06:27:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1692624460; x=1693229260; 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=VkFQN02CwoFabFgLhY1ngYwXGWXhl8e5ZIdFQCbt2qM=; b=D7kAprvF50iQSgm7t8crqZR9SYDgnx5d4SXUqLT9w5gKJ3DhEqW1v4JN9JHU1vASCx ZgQVCG8958ctF+dR8DZK/IadtnzLPlfxIe515UY35RrNrZQgy+7Adv9M9yxiWlImcJae R816z+rjPPyUwRMT/TNkzcfmbhs548NIWnv/N6rIAFP2GhAgLXTHdb9Dh+F10iPZROJm jsnx5fhCME/bipkJNbY2NZqMMplGaB/bR+EvCgLswiaWqfRQpChLQDsPQgJk09VhM2Vp JBneW84BFCxubwS6kH1nCDnoGfF0hRD3pxtyqDSsk1q/o4bytL+fI+Lav/SWfam1dZTi qT3g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1692624460; x=1693229260; 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=VkFQN02CwoFabFgLhY1ngYwXGWXhl8e5ZIdFQCbt2qM=; b=lg7clcdq5kz1FGmriVg4z9cKm3mB8eYY2KAhpHryHk6YKRAuedoploSrS2+Ct8JigQ 1iIfGAq6IFd7gAvOaORa+BYVDh5HVrim5KQqXWM0vV1g6KgB/GRurW+oMNuwi8ym5lTx nHT86HNfTa/vLIx4ledfa+H529+EHfBJboWeF0crNsmpJjmclmRCwTalXr9KAJCPEKCL 7Kaltx4g+APHmxHCuWXCFzwM8iKz9mHDMpkGyvHgTDImi4QE38btzx5tVkwYxVRmr+Yc FF164oEcenFW1C/w8+r726J/amaOPVEdjw6KlO2a8FqtabqTdSBMsbPM1+Q7yl7pFHey 03iA== X-Gm-Message-State: AOJu0Yy0gEjK1yGIPZaSmj66BtytaSMT05PjK49Jt1+c03hCjmdQmD3k QabWU89Zzqi0LYM3XZoS0N9MMu0N3PsqscypEeY= X-Google-Smtp-Source: AGHT+IEsMABX7/Fv5V1K0jyz67UyNEK6KRMaxKZdqS6axeKedkIt4iuuSTMJ/H26OQDtW4h6mFUMe88yJ8tK256hSSM= X-Received: by 2002:a05:6102:2e8:b0:445:209:cac7 with SMTP id j8-20020a05610202e800b004450209cac7mr4818643vsj.27.1692624460349; Mon, 21 Aug 2023 06:27:40 -0700 (PDT) MIME-Version: 1.0 References: <20230731121225.1545318-1-amitprakashs@marvell.com> <20230818090159.2597468-1-amitprakashs@marvell.com> In-Reply-To: <20230818090159.2597468-1-amitprakashs@marvell.com> From: Jerin Jacob Date: Mon, 21 Aug 2023 18:57:14 +0530 Message-ID: Subject: Re: [PATCH v3 1/8] common/cnxk: use unique name for DPI memzone To: Amit Prakash Shukla Cc: Nithin Dabilpuram , Kiran Kumar K , Sunil Kumar Kori , Satha Rao , dev@dpdk.org, jerinj@marvell.com, stable@dpdk.org, Radha Mohan Chintakuntla Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable 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 On Fri, Aug 18, 2023 at 2:32=E2=80=AFPM Amit Prakash Shukla wrote: > > roc_dpi was using vfid as part of name for memzone allocation. > This led to memzone allocation failure in case of multiple > physical functions. vfid is not unique by itself since multiple > physical functions can have the same virtual function indices. > So use complete DBDF as part of memzone name to make it unique. > > Fixes: b6e395692b6d ("common/cnxk: add DPI DMA support") > Cc: stable@dpdk.org > > Signed-off-by: Radha Mohan Chintakuntla > --- > v2: > - Fix for bugs observed in v1. > - Squashed few commits. > > v3: > - Resolved review suggestions. > - Code improvement. Please fix below issues Missing 'Fixes' tag: dma/cnxk: fix last index return value Invalid patch(es) found - checked 8 patches check-git-log failed ### [PATCH] common/cnxk: use unique name for DPI memzone ERROR:NO_AUTHOR_SIGN_OFF: Missing Signed-off-by: line by nominal patch author 'Amit Prakash Shukla ' total: 1 errors, 0 warnings, 13 lines checked ### [PATCH] dma/cnxk: add DMA devops for all models of cn10xxx ERROR:NO_AUTHOR_SIGN_OFF: Missing Signed-off-by: line by nominal patch author 'Amit Prakash Shukla ' total: 1 errors, 0 warnings, 9 lines checked 6/8 valid patches