From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 86349A0598; Tue, 21 Apr 2020 18:16:56 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 160821D404; Tue, 21 Apr 2020 18:16:56 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 6D2091D182 for ; Tue, 21 Apr 2020 18:16:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1587485814; 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: in-reply-to:in-reply-to:references:references; bh=DJFLIZzuOZfTajT0dZV4CCVxf3aicd41zuJcuxn8ye8=; b=LW4bktTULDi1A9VPIfUh7FVvPC/9sYQVHpYZeNaYWdrLxQEWb79KZscDfCd0jkX3/cy4VH H/oyUgxBMIpBBeOFfye3u1Cdp3NE3XnPbYSl4OuVvXk463J5gvbKl8R1NGp5TBE2+dKwjK H98AqcB4zdUV9p+yaDyzBH65HMu3r+8= Received: from mail-vk1-f198.google.com (mail-vk1-f198.google.com [209.85.221.198]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-367-g_EbBJOzMlapLZsgTD6fvA-1; Tue, 21 Apr 2020 12:16:51 -0400 X-MC-Unique: g_EbBJOzMlapLZsgTD6fvA-1 Received: by mail-vk1-f198.google.com with SMTP id u190so5549951vke.0 for ; Tue, 21 Apr 2020 09:16:51 -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=Q2hs4D+JcVorS6Twdp4qPMnNcpH9WH/ZkdbpQBeMVog=; b=b6ZSSi8vfJEOKC7ZjDYy2aLzLdVPfnWZJWsqgQpg1L3VsKIUzZjvrpXxrHNbYanZ3q aB+QPgyAmNK1EqwoxTubFAtzcIyRieF0ZMH9cU5Oibuk7o+z8UKKz2XiR4cYaQ4aIxQa ABDegxxjdl2khgYUBqN0yWe2e/UA9rp8NFYi5KkGv/gAZuEXt8vXY/S97gosRslsPZHP vl78WmamEsxaICoiPA1B4Xq76kkVmDxiu+hFVRLTbYybVSi035KBcv4pJCPJaODXLT3+ ChiE7lZtcX/LBo2ZfQHkZvrzIM2jrXqXsEU9M+w2gX+EN/2w/U6maG50yoKY2Ry8W3X4 KQxQ== X-Gm-Message-State: AGi0PuZHJz3BukymvIkJcY48vepDrjGv8z0ctAYP0FJBUlJvWowlBCSk FnuO3yXBkLlHiKBh+nkbsjcKRNEfI3SqvBDAdZcrbphH5k/0Sv/ih4BPXYLpqBHtJybD5euWhRm LsAYol2wuKFVUSZZzHgA= X-Received: by 2002:a05:6102:1043:: with SMTP id h3mr16671814vsq.39.1587485811041; Tue, 21 Apr 2020 09:16:51 -0700 (PDT) X-Google-Smtp-Source: APiQypJoxlHJOtUHS+gDmIL3W3vg6xXiunxRvN7E/U48GVv6OBazIZTywIRa7aQ/MND7pD4C741/p/q7OqTcITr3z8U= X-Received: by 2002:a05:6102:1043:: with SMTP id h3mr16671790vsq.39.1587485810781; Tue, 21 Apr 2020 09:16:50 -0700 (PDT) MIME-Version: 1.0 References: <156a0627fb472087aad43d9279ab0f684a2367ce.1585746650.git.anatoly.burakov@intel.com> <793d4b3c1828fc5a6f4f0f2bfc5f93b7fd95556f.1585818128.git.anatoly.burakov@intel.com> In-Reply-To: From: David Marchand Date: Tue, 21 Apr 2020 18:16:39 +0200 Message-ID: To: Anatoly Burakov Cc: dev , David Christensen X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v2 1/2] test/malloc: run realloc tests on external heap X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Thu, Apr 2, 2020 at 9:55 PM David Christensen w= rote: > On 4/2/20 2:02 AM, Anatoly Burakov wrote: > > Due to the fact that the rte_realloc() test depends on the layout of > > underlying memory, it can sometimes fail due to fragmentation of the > > memory. To address this, make it so that the realloc autotests are run > > using a newly created external memory heap instead of main memory. > > > > Bugzilla ID: 424 > > > > Signed-off-by: Anatoly Burakov > ... > > Tested-by: David Christensen Series applied, thanks. --=20 David Marchand