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 89B46A0C47 for ; Tue, 6 Jul 2021 16:42:28 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7CAF64120E; Tue, 6 Jul 2021 16:42:28 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 4E2B64120E for ; Tue, 6 Jul 2021 16:42:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1625582546; 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: in-reply-to:in-reply-to:references:references; bh=3q5WZ2UMvxKaE5JCN1HqkLQytHcUbhNORsFU3oBIVIQ=; b=JJ+Q1YfK84L9rWQyoM3Yw7nOuR6MOQ1zCvc0daON2AMexYaRXSzp1uOU1DJiTmuISAbYy7 keHeFBpDj70siqOmzQmZ2Uplxmi1h9zSi7+p3qYAcgfY4LskGhIoI0Iy8EbtYcJQpksABC 23o5Bkk+7GtzQCZN6lgI3CwWjVljpgA= Received: from mail-vk1-f199.google.com (mail-vk1-f199.google.com [209.85.221.199]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-300-wFoKkXgAMNiLKI325tUJZQ-1; Tue, 06 Jul 2021 10:42:25 -0400 X-MC-Unique: wFoKkXgAMNiLKI325tUJZQ-1 Received: by mail-vk1-f199.google.com with SMTP id t6-20020ac5c3c60000b029024f8f474366so5306887vkk.15 for ; Tue, 06 Jul 2021 07:42:25 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=3q5WZ2UMvxKaE5JCN1HqkLQytHcUbhNORsFU3oBIVIQ=; b=OtCBQb+1AMI/l97GxhHVQ66bgtCcmCer2bQCKyTCLldO3PxYolgtRCBYS5FZBjij8K x1KEe16KfoCDbzlFufg4k7hIlu73f1EKay4bI0RVFljdoANmuolauxTIHakpEvewAV3s Z/ieVUZ2Yija/YQy2Q6s5DfvusyzubXahbI14P1XDl6oGrT+pCXAHR2xCmJhuPbZpdAG guXK89Lg+oNxdPOOGiuXsfIkfurMLTc3fDCXRGjBDEoThZXujEbIavBG80oG1yNi4W7q cFp7xJFZ20Ym/CUTWHbEcIUgKYijb6KVR6jmRvR4InNKd4tteE9yPDpjSNGAEMfufR8J ZZag== X-Gm-Message-State: AOAM5322C4TfE6e2AHzbwl3eNdc/bVcnC6521Kc/gKW1lYs9XHvtot0C 2/xlj+ic6/u3Ogi16k+VZazCtQKFfjDlU9cY6EYSiiSusU6G53z+wnkSllZMIk9j+uiYpraGOiS fvbWQrrBzwPLXIOllWj3Naps= X-Received: by 2002:a1f:26cd:: with SMTP id m196mr13940407vkm.9.1625582545354; Tue, 06 Jul 2021 07:42:25 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzRXEcbBkVoljDdsihG4GhrFqz3kg/ARcL8dHG2AHHmOqZSIVVq82Pr9cKvnKagdJOlT7KQE/vhawkkzr44vuQ= X-Received: by 2002:a1f:26cd:: with SMTP id m196mr13940383vkm.9.1625582545152; Tue, 06 Jul 2021 07:42:25 -0700 (PDT) MIME-Version: 1.0 References: <20210705072734.22484-1-olivier.matz@6wind.com> In-Reply-To: From: David Marchand Date: Tue, 6 Jul 2021 16:42:14 +0200 Message-ID: To: Olivier Matz Cc: dev , Reshma Pattan , Lavanya Govindarajan , Zhihong Peng , dpdk stable Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] test/mbuf: fix virtual address conversion 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 Sender: "stable" On Tue, Jul 6, 2021 at 1:50 PM David Marchand wrote: > > On Mon, Jul 5, 2021 at 9:28 AM Olivier Matz wrote: > > > > Seen with address sanitizer. > > > > rte_mempool_virt2iova() can only be used on mempool elements. In this case, > > it is incorrect, and rte_mem_virt2iova() has to be used. > > > > Bugzilla ID: 737 > > Fixes: 7b295dceea07 ("test/mbuf: add unit test cases") > > Cc: stable@dpdk.org > > > > Reported-by: Zhihong Peng > > Signed-off-by: Olivier Matz > Reviewed-by: David Marchand Applied, thanks. -- David Marchand