From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id DD43C23C for ; Wed, 2 May 2018 11:29:54 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 70CF420F66; Wed, 2 May 2018 05:29:54 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Wed, 02 May 2018 05:29:54 -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=bsgYId4myoFzwCyaLFV4hJvcz8 kw5oL21CmGo9hn5Vw=; b=mcPbgq4r5md78aE01LakLy26nDpaO17KlnOIM1j4VW QW0iMvPxy+tFQwhUMyRBavvuCjFksQXUqI5r4eRAlIK1yOC/8hKr4Ib6ujtGnHWy VOsdZb87IKbbmWjb7u6YEgdr74YcTvnYyMu4m3ZkKv5EHotdOXqmfpzamS2asT+f M= 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=bsgYId 4myoFzwCyaLFV4hJvcz8kw5oL21CmGo9hn5Vw=; b=LxfMi8DwBqBZRMOfE2Y46U wc/rqbvmqfXfSwIlSJ2CwzxKu26Ph1z9PvH+t8g1rzm11QaEeambAxERTQtLYnwx 0i0FySoQ4b1UW8qWSmapUdKcbthe+6oO2I1lFZmSCPsdV3n/nEXKDSfm6prJjmBl XaPyeI+iRrml3Kt6K4Ea07am9Daq9rUroDG/h6nGrx4r08QixYiq3FZF22BrIpwm 9b5TR36+LlHlHiUYZaBKyRTvzZebHfxnSvXMiB7pey43vExh/Yej1PQc0GwW5EF3 ZjZf5CPszzWJ/ElyooFOgfDeGenBvlE6P0fDna2A3ieARnCoD1QXyKm1YyAqAXYQ == 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 CFACFE50A2; Wed, 2 May 2018 05:29:53 -0400 (EDT) From: Thomas Monjalon To: "Burakov, Anatoly" Cc: dev@dpdk.org Date: Wed, 02 May 2018 11:29:52 +0200 Message-ID: <2043802.HLVq96Dyq6@xps> In-Reply-To: References: <20180501193852.1728-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] mem: fix typo in local function name 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, 02 May 2018 09:29:55 -0000 02/05/2018 11:28, Burakov, Anatoly: > On 01-May-18 8:38 PM, Thomas Monjalon wrote: > > --- a/lib/librte_eal/linuxapp/eal/eal_memalloc.c > > +++ b/lib/librte_eal/linuxapp/eal/eal_memalloc.c > > @@ -143,7 +143,7 @@ prepare_numa(int *oldpolicy, struct bitmask *oldmask, int socket_id) > > } > > > > static void > > -resotre_numa(int *oldpolicy, struct bitmask *oldmask) > > +restore_numa(int *oldpolicy, struct bitmask *oldmask) > > { > > RTE_LOG(DEBUG, EAL, > > "Restoring previous memory policy: %d\n", *oldpolicy); > > @@ -889,7 +889,7 @@ eal_memalloc_alloc_seg_bulk(struct rte_memseg **ms, int n_segs, size_t page_sz, > > > > #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES > > if (have_numa) > > - resotre_numa(&oldpolicy, oldmask); > > + restore_numa(&oldpolicy, oldmask); > > #endif > > return ret; > > } > > > > Acked-by: Anatoly Burakov > > (tempted to say "Akced"...) Thnak you :)