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 54C77A0548; Tue, 17 Aug 2021 05:53:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 333AE40143; Tue, 17 Aug 2021 05:53:51 +0200 (CEST) Received: from mail-pl1-f171.google.com (mail-pl1-f171.google.com [209.85.214.171]) by mails.dpdk.org (Postfix) with ESMTP id A3F9F40142 for ; Tue, 17 Aug 2021 05:53:49 +0200 (CEST) Received: by mail-pl1-f171.google.com with SMTP id u15so7812755plg.13 for ; Mon, 16 Aug 2021 20:53:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=M2akC2R9b5Y5R0fSF8Q5Kobp3mhJiOMxFHXhG5p3gpw=; b=qp850A+L+CNw/3ahPaw61DKcLDiSkNJzsunX4z0yRwZLo+Bp9G3flG0/89+YmMGBFg 2a1oEfr6+yXwaNVWaDixIgNCWwuRdUmEnC9jGzHtoJAJBX4Ha4Eal6AhRWgeKwXOR63V PZ5M5/SenbM7CiUbcHFTNyI9j258ZQqIh1vJ9YPRYYo8o2ZPNfr3CTkOi2BgBTsdkCeH Ic25K7+78TS/7F9L9LHSQJVOtcACzwnGokmf8ohlxBymGV8IXwmvMB01WoFEBJrwFimt lPeCJ5JHgyGD4AO8ATWVIYuRDQtboy355ofi74NmPuVYVuUfWVShikQ7B/8epp3liBrY 7e1Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=M2akC2R9b5Y5R0fSF8Q5Kobp3mhJiOMxFHXhG5p3gpw=; b=VPf94M7dxVlh08CNgRlhVbLf03E+8bSsXEnq5omWBjGf7syRf3Bfdptl4VfoTG9OsJ Hzmy3Rqi03MZ8uc5omrtjAsNCJyga5Y9+BpoMEEwhPAoT+m3wp3co1kUZxBWsrx8dg+m DmniSLWnUSKuL7ylrSazGk67WaTNijOl44J6CZunkjdiIfqiDczed9zOt8MfObQ/6FpF WWHS95tKVXDnBq2DujcKg5wFDlxRZYPuT8SESkZpO/oaodIV4qbmQEiJS/0hdGAe7NUV y5su2fEGa8rcIe4S33Wpc6S2EuMB2iZSzFn7XFUEplRLB2zlqmE6ibkyQd0UXxZS9SIj v7Mg== X-Gm-Message-State: AOAM530GXnyC3eSX4Q/k9JDvuA30EnIgR9/bXqwz4yF5tK86Tql+qXLx NKQfbjWMZ38AVpgpR4AAI6870w== X-Google-Smtp-Source: ABdhPJz9oyOkscuXENE9dUthEw98ZfBQtGWjTejE01P4nC1vk/4s3zBWmPQjIlAQL0q9WZbrNUwG9A== X-Received: by 2002:a05:6a00:2aa:b0:3e1:367:a8b0 with SMTP id q10-20020a056a0002aa00b003e10367a8b0mr1552725pfs.37.1629172428879; Mon, 16 Aug 2021 20:53:48 -0700 (PDT) Received: from hermes.local (204-195-33-123.wavecable.com. [204.195.33.123]) by smtp.gmail.com with ESMTPSA id gz23sm528163pjb.0.2021.08.16.20.53.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 16 Aug 2021 20:53:48 -0700 (PDT) Date: Mon, 16 Aug 2021 20:53:45 -0700 From: Stephen Hemminger To: Cc: , Bruce Richardson , "Ray Kinsella" , , , , , , , , , , Message-ID: <20210816205345.6d686c7d@hermes.local> In-Reply-To: <20210817032723.3997054-2-jerinj@marvell.com> References: <20210730084938.2426128-2-jerinj@marvell.com> <20210817032723.3997054-1-jerinj@marvell.com> <20210817032723.3997054-2-jerinj@marvell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 1/6] eal: introduce oops handling API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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 Tue, 17 Aug 2021 08:57:18 +0530 wrote: > From: Jerin Jacob > > Introducing oops handling API with following specification > and enable stub implementation for Linux and FreeBSD. > > On rte_eal_init() invocation, the EAL library installs the > oops handler for the essential signals. > The rte_oops_signals_enabled() API provides the list > of signals the library installed by the EAL. This is a big change, and many applications already handle these signals themselves. Therefore adding this needs to be opt-in and not enabled by default.