From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f174.google.com (mail-wi0-f174.google.com [209.85.212.174]) by dpdk.org (Postfix) with ESMTP id 7BC2E8E6C for ; Tue, 15 Sep 2015 15:11:52 +0200 (CEST) Received: by wicfx3 with SMTP id fx3so28019989wic.1 for ; Tue, 15 Sep 2015 06:11:52 -0700 (PDT) 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=P+AqXRfffljuDYyyK9P1GbEbFHn3wH25X5bj52CD5/8=; b=TeyF4OOepiX4fVDvTxxFNLrknIdErKYZt27K0J7h2mXouXvMLrQ72xE5e6IG1u4bLJ P94BDdFKHTB0S11Qn6hXagXMVrUNAtDRNDqzCkrcgzDs/xbbv3cmJkUYHHKt6BISl4Rk OIXgqhhCnNF+tURROjdS+gl8eIZoCLmwpdmR07HO1Digo71wsfZo0XSknRFfmfp4Z317 jaBIFYhkq8diqipD1DDwwslEyVLraBUHySjx2yO53LopzToHIidYaxXngnHMvPc/EtBp stk66WNjzmL30muVXQomf2bA5mwkuSpeKB8B0wcQdQBcn/JonsHROhle7iDpQiMXZ5p5 ahQg== X-Gm-Message-State: ALoCoQn9VJnSRptrhEnaI/VVBngK427EtkSWV7U1da7hLikK1L2rm6yqCrILmrCd5iyezbRzD3uF X-Received: by 10.194.84.238 with SMTP id c14mr38586084wjz.33.1442322712332; Tue, 15 Sep 2015 06:11:52 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id gv1sm19881220wib.15.2015.09.15.06.11.51 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 15 Sep 2015 06:11:51 -0700 (PDT) From: Thomas Monjalon To: Remy Horton Date: Tue, 15 Sep 2015 15:10:44 +0200 Message-ID: <4778653.jvL6ac5tEo@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1442319413-3614-1-git-send-email-remy.horton@intel.com> References: <1442319413-3614-1-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] [RFC PATCH v1] rte: LCore heartbeat example 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: Tue, 15 Sep 2015 13:11:52 -0000 Hi, 2015-09-15 13:16, Remy Horton: > Provides a basic framework for detecting and reporting 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. As an example l2fwd with random failures is used. No it's not a framework, it's a sample application. If the feature is interesting, it must be integrated in a library. Then you need some doc, unit tests and an example to demonstrate its usage. Please try to use an existing example instead of creating a new one. Thanks