From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 83DB7A69 for ; Wed, 25 Apr 2018 02:02:22 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 0857821880; Tue, 24 Apr 2018 20:02:22 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Tue, 24 Apr 2018 20:02:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=crbLhz92PLdEOHBvsxcQuJfape DOUpTxJDYeEr9sQX4=; b=M2oZKvL98BSG8ST/igMgHF2EaiM4qVYkIUmAdqcyL1 j/aVrZJuqgoKrcUeppzDwx5xl5+5BDXS+Giadp9mXI1vimPjq1JSO3819Rsw4rAB 0TA4mWaPseUKFL41SOQgWEu2wau//Dq9K3+qOvtMYUNRR7yHsnSXlLa+qiDzoZav Y= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=crbLhz 92PLdEOHBvsxcQuJfapeDOUpTxJDYeEr9sQX4=; b=JeBsWGqA1lQ899IYHsP3bW u4HekHdGrFtrhmrZXaophGtpx9csQqDDBCMBck6kI6s0BM2iOMr8ZKYkxHFgt9bu ISui2gisw13SSVQOIyUIHsXHHyekccw5Dszyel5xPWT4+Xz8AO6G9p9mmxDanckJ 0I5ddCVqSzSH6pr0G9TwULmZ/THN/uaGib/XNa8+P/gs8RkkasbAwroUFVNF5riN 1A6tYW8Qg9ja/WVN+k14DvGbUkplDJmTGPQhvh0kOCb96doexa5IxrIalc2meMJD oMinjcOBHSvCtDA8cxjt2cLjbVPFuMOk6mhtxRpO0e+QkjLcCPg2nupJ8VVc+6ww == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 684F2E47A0; Tue, 24 Apr 2018 20:02:21 -0400 (EDT) From: Thomas Monjalon To: Stephen Hemminger Cc: dev@dpdk.org Date: Wed, 25 Apr 2018 02:02:20 +0200 Message-ID: <2897485.iSYBI3UIWR@xps> In-Reply-To: <20180424165808.23292-5-stephen@networkplumber.org> References: <20180424165808.23292-1-stephen@networkplumber.org> <20180424165808.23292-5-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 4/5] log: add ability to match dynamic log based on shell pattern 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: Wed, 25 Apr 2018 00:02:22 -0000 24/04/2018 18:58, Stephen Hemminger: > /* enable all PMD logs (whose identifier string starts with "pmd") */ > - rte_log_set_level_regexp("pmd.*", RTE_LOG_DEBUG); > + rte_log_set_level_match("pmd.*", RTE_LOG_DEBUG); The function name in the doc above does not match (sic) the new function name below. [...] > +int rte_log_set_level_pattern(const char *pattern, uint32_t level);