From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id CBB5DA0096 for ; Wed, 5 Jun 2019 08:51:40 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 83A79271; Wed, 5 Jun 2019 08:51:40 +0200 (CEST) Received: from mail-vs1-f66.google.com (mail-vs1-f66.google.com [209.85.217.66]) by dpdk.org (Postfix) with ESMTP id 82F38271 for ; Wed, 5 Jun 2019 08:51:39 +0200 (CEST) Received: by mail-vs1-f66.google.com with SMTP id c24so15094259vsp.7 for ; Tue, 04 Jun 2019 23:51:39 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=H9iMQBgdxHPHfv1mITozqYkSbxHJ93g3FIHEKQ4LfIs=; b=pT3T+cLGZcGSDVt7z91dbBMhslbC08eokPxPqKMqWrhVj/BqtckZ9SrpL2ufd8WDMO g9T1uNH/2zU2p1FEez+l1U9RF7O0m0Oe2+7mEhbuQptEFMboCU7Zw9EAW9/J/NSemHGo 7R0zsY1uCNjsHEhOPZu+kElQCVjQBZfrGEY+HK5es0H8D9GLH8ad0kvxtwz6f4PPjNRh 2E7mV5tnFXUIATr/sPte0Fu7Lx/4eV/35xcy4h0lZTcYf0mxWncFybPwaggjQR6MltF9 VoWUEdng2w8iB1xbAsI0eBMaRDnyRDyd2fx+Csp4IqGt9/XfzUPjLLOAchtVDip0E+6S f+kg== X-Gm-Message-State: APjAAAV1J3Ge5iNgJXplK++FCmRBiqiEvQkOi0eQTae46N1iwFuz5FZL kWDvcN80uoI8H9KRtRUZuDvJbs5Kw1UWTQ0r0TLvUA== X-Google-Smtp-Source: APXvYqyL8sejj9jPr8b96+ZaqVSwtt7JRqU9f3tE2NI8v2LNuLWJAqgBbvw0UzlIzVLuMCcvx+2TKjcI6P1hdgjfqcU= X-Received: by 2002:a67:688f:: with SMTP id d137mr10451251vsc.198.1559717498910; Tue, 04 Jun 2019 23:51:38 -0700 (PDT) MIME-Version: 1.0 References: <20190604163147.105791-1-xiaolong.ye@intel.com> In-Reply-To: <20190604163147.105791-1-xiaolong.ye@intel.com> From: David Marchand Date: Wed, 5 Jun 2019 08:51:27 +0200 Message-ID: To: Xiaolong Ye Cc: Ferruh Yigit , dev , dpdk stable Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-stable] [PATCH] eal: correct error log for alarm 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" Hello, On Tue, Jun 4, 2019 at 6:41 PM Xiaolong Ye wrote: > Fixes: af75078fece3 ("first public release") > Cc: stable@dpdk.org > > Signed-off-by: Xiaolong Ye > --- > lib/librte_eal/linux/eal/eal.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/librte_eal/linux/eal/eal.c > b/lib/librte_eal/linux/eal/eal.c > index 161399619..10e2887ca 100644 > --- a/lib/librte_eal/linux/eal/eal.c > +++ b/lib/librte_eal/linux/eal/eal.c > @@ -1006,7 +1006,7 @@ rte_eal_init(int argc, char **argv) > } > > if (rte_eal_alarm_init() < 0) { > - rte_eal_init_alert("Cannot init interrupt-handling > thread"); > + rte_eal_init_alert("Cannot init alarm"); > /* rte_eal_alarm_init sets rte_errno on failure. */ > return -1; > } > -- > 2.17.1 > > The same applies to freebsd eal. lib/librte_eal/freebsd/eal/eal.c: if (rte_eal_alarm_init() < 0) { lib/librte_eal/freebsd/eal/eal.c- rte_eal_init_alert("Cannot init interrupt-handling thread"); -- David Marchand