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 B52D5A052B; Wed, 29 Jul 2020 23:25:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 920E44C98; Wed, 29 Jul 2020 23:25:17 +0200 (CEST) Received: from mail-oo1-f67.google.com (mail-oo1-f67.google.com [209.85.161.67]) by dpdk.org (Postfix) with ESMTP id DF34411A2 for ; Wed, 29 Jul 2020 23:25:15 +0200 (CEST) Received: by mail-oo1-f67.google.com with SMTP id g18so3976271ooa.0 for ; Wed, 29 Jul 2020 14:25:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=+0sKFkAvYVB06AX/RP0QeZXkCxSxSjID3lBTSiGUKRg=; b=HkwbYO96BSWYI7JS+bOSaF1apU+rqifeECZUSPZwXmChMP7rPX/BDmPxERW/CK9h/5 Qd36yCCW03jKcvtR7EZYJ68mzcohx/v1C2A1Nmuojxjh/woHfgOha40Hf+d3x/VZZQjL TcSScYDevjh8BFwRufPCxWDPtVmLfXwpuirxg= 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=+0sKFkAvYVB06AX/RP0QeZXkCxSxSjID3lBTSiGUKRg=; b=tUAG/b3N1EWpDQGJXK1zGZ3om8VqKbSzODt4qB1KQ+MtUlUlRZI+GJSyGJz/ZXEX+7 RTu5M/L+nYh5hPXH8xniVp5SJqJMudNSiEgxPFzRKpW5sMG6MxpWSMmQTBvImsap67d4 T6306hiMb/xwWmv47/bpf5fi3K5oLtLmR9k+LxuCNAUBq8Tj0lBe0SsW7yFY6WNhtYcC CjMfLuacVH7sntd6Q6+ivVqcAn/2cHzgCGyqk1Rf0E++Aa0F5GsoRxii9XxnQP8nuOE9 caYajKv2EhyDVnVsA6b8P+LurvF0o2j/8qWYK8oP0/7j9R3S2PWjBII3JkNTjdM7DJHH uhUw== X-Gm-Message-State: AOAM531fU/CJP8lmGRq814J4iJGuW0MyZhzImTGd9+9ers2xhJNe2sLM g1fGMcybd/2K0iswv0XweOxpl1TtoWL8oCob6GM9kg== X-Google-Smtp-Source: ABdhPJy7pm0E+kj7jCKKg7MF/AgKRb0V2T+VEGsaSiPG9QKX7iVScljfiF+f2EiCTmv+peHr6pupYWxBGlq6cezPG4Y= X-Received: by 2002:a4a:d44a:: with SMTP id p10mr164553oos.52.1596057914912; Wed, 29 Jul 2020 14:25:14 -0700 (PDT) MIME-Version: 1.0 References: <20200729004256.46924-1-ajit.khaparde@broadcom.com> In-Reply-To: From: Ajit Khaparde Date: Wed, 29 Jul 2020 14:24:58 -0700 Message-ID: To: Ferruh Yigit Cc: dpdk-dev , Randy Schacher , Peter Spreadborough , Farah Smith Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH] net/bnxt: remove EEM system memory support 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 Wed, Jul 29, 2020 at 9:25 AM Ferruh Yigit wrote: > On 7/29/2020 1:42 AM, Ajit Khaparde wrote: > > From: Randy Schacher > > > > Remove the memory management scheme for Extended Exact Match > > using system memory. Using host memory scheme instead which > > was the default anyway. > > > > Fixes: b2da02480cb7 ("net/bnxt: support EEM system memory") > > > > Signed-off-by: Randy Schacher > > Signed-off-by: Ajit Khaparde > > Reviewed-by: Peter Spreadborough > > Reviewed-by: Farah Smith > > <...> > > > @@ -29,7 +29,6 @@ sources = files('bnxt_cpr.c', > > 'tf_core/rand.c', > > 'tf_core/stack.c', > > 'tf_core/tf_em_common.c', > > - 'tf_core/tf_em_host.c', > > 'tf_core/tf_em_internal.c', > > 'tf_core/tf_rm.c', > > 'tf_core/tf_tbl.c', > > I was wondering why 'tf_em_host.c' removed from meson, while > 'tf_em_system.c' > file is removed and how this is working, > but it seems 'tf_em_host.c' was duplicate in meson and you are fixing it J > > Since duplication is created in this release, no need to backport it, and > it is > OK have it part of this patch. > Ferruh, Do you want me to respin the patch? Thanks