From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f174.google.com (mail-wr0-f174.google.com [209.85.128.174]) by dpdk.org (Postfix) with ESMTP id 9F1C5FAFB for ; Mon, 27 Mar 2017 16:06:03 +0200 (CEST) Received: by mail-wr0-f174.google.com with SMTP id w43so46251487wrb.0 for ; Mon, 27 Mar 2017 07:06:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=tVZY04cYJ9kQZ9ICC3/mS2ZVY3fPV9iKHDSqWNVqMrc=; b=JWJin6/Ha/fC23D3j3JK0mVliTdd9S7XWbnFgqksfEX4chPNXiw8LdVxscnLfcBIiW MRS8s8JwN7Ji7EW7B1uQ19E0gSRG50/OUZL+pAUYSKWzJxesFBCK+E6IVccqpqkk48je H7S6H+b2H/kNpsHEqRhCGvGNw0naT5GZ6tlz4JcgyQcCU6j4SpfGakdOfkRRXYYxuiU5 Ro6E02aUoc0+nOkuvzpYjVXW4ueIOKEAYiLmWQvPiP0p0wwnHNlJU2IZ1EGSGsXHlzDQ 6ORvFWWPreTVqs6iVArnpjuyb25MxDTUG/ZV6fOs52+Q6USyz7K5/hMOY6LL13anh6fc DrQA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=tVZY04cYJ9kQZ9ICC3/mS2ZVY3fPV9iKHDSqWNVqMrc=; b=REMvjG9vXD4lVbA510XoQkntThC/fT41Q0RyrPSJYfxhkS+KT24hq/cFXsMzL4QNEx 9rzM9mwapK6QkBw5NPAiqo9IK1qIcy83I8Y4BaWLCO74t0xIrP50/AM8PD0kREx2XkGa TJ4Pd6Gx0vpOtEmf2Vp5yL3F2cRyE0zYlrnH4iCO4TQU9M7rAH4gyhGWCtbhUQBnBGZ/ 88QV97x5PMSAM4NnCBUmtOxIyZYSNdyRb6Fhn7HOYKim+6agsF4q9V1vE0uo2k5uY/e9 bHgt3ilulWqN3CN+o8ES/TZnNJp4+gY5XZJiCnVLqd6cfCnJ5pJqijZ7oA9pI88k/N0O nhZw== X-Gm-Message-State: AFeK/H1s7pWtrJCWyxxFvTKGzRbt+mq4GwwnQHhLqhVNWyRPKGUblDlCl7BIit+CxKFwljt8 X-Received: by 10.28.24.16 with SMTP id 16mr9664376wmy.1.1490623563048; Mon, 27 Mar 2017 07:06:03 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id q29sm844016wrc.49.2017.03.27.07.06.01 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 27 Mar 2017 07:06:02 -0700 (PDT) From: Thomas Monjalon To: Aaron Conole Cc: Bruce Richardson , dev@dpdk.org, Stephen Hemminger Date: Mon, 27 Mar 2017 16:06:01 +0200 Message-ID: <16753267.SotxTgSKUM@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20170323140431.GB8688@bricha3-MOBL3.ger.corp.intel.com> References: <20170322201940.24028-1-aconole@redhat.com> <20170323140431.GB8688@bricha3-MOBL3.ger.corp.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v7 00/14] eal: Remove most causes of panic on init 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: , X-List-Received-Date: Mon, 27 Mar 2017 14:06:03 -0000 2017-03-23 14:04, Bruce Richardson: > On Wed, Mar 22, 2017 at 04:19:26PM -0400, Aaron Conole wrote: > > In many cases, it's enough to simply let the application know that the > > call to initialize DPDK has failed. A complete halt can then be > > decided by the application based on error returned (and the app could > > even attempt a possible re-attempt after some corrective action by the > > user or application). > > > Ran a sanity test compiling with clang on FreeBSD 11 and had a quick > scan of the patches. All looks reasonably ok to me. Did not test on > linux. > > Acked-by: Bruce Richardson Applied, thank you so much for this work. Do you plan to continue hunting rte_panic in DPDK?