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 14A61A052F for ; Wed, 29 Jan 2020 14:45:54 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B15CF1BFE5; Wed, 29 Jan 2020 14:45:53 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id C043C1BFE5 for ; Wed, 29 Jan 2020 14:45:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1580305551; 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; bh=T3IKX9aXLufhlbMKUNe4nqRFQPY2G4ENnNCfcpyzEd4=; b=DRxRIDz7jYPPokWmsuYEuxcRVLuZDKfTRPnigFLTuFGaLMvlafaS1J3+j9KJT6DEZVUgQi dKMTcmOIGS5kaEeL1x4s/Ihyh9Cuy+UyIixIAsjWt27N8GP/HJRZfpmQD83DSuJUEaA7xX hPUgb5nWfDZM+mk2jS1CWmDfe/kqpco= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-360-428wSasvPHWr7xj8KdSSmg-1; Wed, 29 Jan 2020 08:45:45 -0500 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 27E96107ACC7; Wed, 29 Jan 2020 13:45:44 +0000 (UTC) Received: from rh.redhat.com (unknown [10.33.36.137]) by smtp.corp.redhat.com (Postfix) with ESMTP id 21C2638C; Wed, 29 Jan 2020 13:45:42 +0000 (UTC) From: Kevin Traynor To: stable@dpdk.org Cc: Kevin Traynor , Anatoly Burakov Date: Wed, 29 Jan 2020 13:45:03 +0000 Message-Id: <20200129134503.10897-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-MC-Unique: 428wSasvPHWr7xj8KdSSmg-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-stable] [PATCH 18.11] Revert "eal/freebsd: fix config creation" X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 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" This reverts commit 0d39a496a6be090f3f3288080c66cd04c566b185. Reverted commit is a fix for dpdk master commit: b149a7064261 ("eal/freebsd: add config reattach in secondary process") which is not backported to DPDK 18.11 stable branch at this time. Reverted commit can be re-applied if the fixed commit is backported to the stable branch. Signed-off-by: Kevin Traynor Cc: Anatoly Burakov --- lib/librte_eal/bsdapp/eal/eal.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/librte_eal/bsdapp/eal/eal.c b/lib/librte_eal/bsdapp/eal/ea= l.c index e85c26ae64..30b4cf7bf0 100644 --- a/lib/librte_eal/bsdapp/eal/eal.c +++ b/lib/librte_eal/bsdapp/eal/eal.c @@ -254,9 +254,4 @@ rte_eal_config_create(void) =09memcpy(rte_mem_cfg_addr, &early_mem_config, sizeof(early_mem_config)); =09rte_config.mem_config =3D rte_mem_cfg_addr; - -=09/* store address of the config in the config itself so that secondary -=09 * processes could later map the config into this exact location -=09 */ -=09rte_config.mem_config->mem_cfg_addr =3D (uintptr_t) rte_mem_cfg_addr; } =20 --=20 2.21.1