From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id E152C5A57 for ; Wed, 4 Nov 2015 02:55:26 +0100 (CET) Received: by wmeg8 with SMTP id g8so29688453wme.1 for ; Tue, 03 Nov 2015 17:55:26 -0800 (PST) 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:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=NMOWGLEoTCr7Vo6O3nnlwKGxYIPQs0GN+8zLrMUaZYE=; b=RRPqcBy/oK3EBYFMMqC3nlzmhRkwMH8ttMxQxD74o87qptSILLte24zpUEKz7s14bA gvhM36YR+5yIF07xtL6dgLG4w/4wtR/bNOrbSHc8A1ER3BJR4rb+00FS9KHK26h/Wq4U JMIcvxnsiBUH1Ju6MZEb1CBq3CdjHs2yJpogJUBpx2CZj4uhMXv1sEaC4GOr+hDWXR12 7ydBkPQe/K8fjRGFWsbvV0wFmtbPAfS4bSsCQ/WUlylyFafF+XKfRPW68rCDu79FNPI9 6xIEyGRk3YdW4jN1TpO8NBcD4+gHX9MUMFPGDRSbAgfR3Urd//5fPhGZ6VgsaEB623k7 b4xQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=NMOWGLEoTCr7Vo6O3nnlwKGxYIPQs0GN+8zLrMUaZYE=; b=K01CsCK5o/0GDQptquf1TbtqKgqcp2sokB27sPy84DCNnZUtdl2/9HEwKbV01uw5W+ OWZHhmJmVetprwPV2eMapfLhpr2VoyoEDdK84VYDKo2DMvRrTBmTCbmrPyzvgl4gvqVB dzrPivqJuP5RPHVVClruNNzFFXbOU634+J5vawEiJIzt1VfIUiNkKHYJEDpIvVs5PRJZ HKQw8A0jjLt+bomc3ExcnRJV/sNjbpGUXxvW64NsdqcS4CBKUQWsjVvpcQj1zK15DjYQ a8MdGjKyAS3zNeflkeFL+Ai1WDYCYnNlE0E500CEkfdU1om9CQBZn4/xs9UyVtMw9K5n 2Hbg== X-Gm-Message-State: ALoCoQm0AqM+RShzXFXixeUKIhDMXhL1fZ7p4s8IZR4lX8eHi4GMcTcOMJVrRmAJDx557Cz8qxM6 X-Received: by 10.28.144.143 with SMTP id s137mr24155326wmd.26.1446602126800; Tue, 03 Nov 2015 17:55:26 -0800 (PST) Received: from xps13.localnet ([93.158.41.25]) by smtp.gmail.com with ESMTPSA id 71sm391956wmt.15.2015.11.03.17.55.26 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 03 Nov 2015 17:55:26 -0800 (PST) From: Thomas Monjalon To: Remy Horton Date: Wed, 04 Nov 2015 02:54:14 +0100 Message-ID: <4554046.sjryCeOnpk@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1446022328-28675-2-git-send-email-remy.horton@intel.com> References: <1446022328-28675-1-git-send-email-remy.horton@intel.com> <1446022328-28675-2-git-send-email-remy.horton@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v3 1/3] rte: add keep alive functionality X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Nov 2015 01:55:27 -0000 2015-10-28 08:52, Remy Horton: > Adds functions for detecting and reporting the live-ness of LCores, > the primary requirement of which is minimal overheads for the > core(s) being checked. Core failures are notified via an application > defined callback. > > Signed-off-by: Remy Horton > --- > lib/librte_eal/bsdapp/eal/Makefile | 1 + > lib/librte_eal/common/Makefile | 2 +- > lib/librte_eal/common/include/rte_keepalive.h | 146 ++++++++++++++++++++++++++ > lib/librte_eal/common/rte_keepalive.c | 124 ++++++++++++++++++++++ > lib/librte_eal/linuxapp/eal/Makefile | 1 + > 5 files changed, 273 insertions(+), 1 deletion(-) Why there is no update in the release notes, MAINTAINERS and .map file?