From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f66.google.com (mail-wm0-f66.google.com [74.125.82.66]) by dpdk.org (Postfix) with ESMTP id 5F2511B249 for ; Mon, 30 Oct 2017 16:37:59 +0100 (CET) Received: by mail-wm0-f66.google.com with SMTP id b189so16646313wmd.4 for ; Mon, 30 Oct 2017 08:37:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=T7LfJ7T1JYUw5BtbIXM19+so40/hEDP9htp7V+T58nk=; b=WN2sOhW3A/WSkworwhsCs19fwwmd59yEhhM9nKXHnAqpwiDtVgqMIKyrr4Mp0yfpO8 zJQNVb8ltuOJExI9Gcdgntt/HxDVFaUT5vEfhYpTJEKVbP+It6aIwhhFPex1keUxfVst c+IaEGxjl4ucWFEUsSTl4yUAZ+Stdzw4iezovzt1n48OotMLzTIW2vW9ZYgoHtoDLH1I JlwQ8sT7s2ty+gDf7rgCjjNGJyEUnakyoQCpwwF+vxPuiMSmpO7ZjN3NrdcyC1lJDf/2 vENgDlaTemkGHWkREpHL5hsORl8x191AoEaYOCfCnFolFIe3xBe4bku11A6g6zgzmxFs XmRw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=T7LfJ7T1JYUw5BtbIXM19+so40/hEDP9htp7V+T58nk=; b=h9oeF7G+5E4kkXBFoCOTQL3FO56ssCtA9RSI98eEgBMoEwiYE7wMgcl12xHfbi/lcz lVBTusZ2FJUmftTDHK4VsTC9WRHOf36+cBsTIc6cXosH4HCTEl5a3Uw/rgev2t011NqB S4ViFRI12T/hDUeLQhP8pDaiE7e10/8r7Rii1Ns9iE+85XKZHiGR20J9H0EuZG0XHiB7 rzECYTwmWisaUcWEe/d09ROP4IRbspzncmzDJWUTkFqwCRiv3xVnGBfSB9yfw6ZlI5R0 do1azUXLWhVIvECy2r5kPYP70eeE69/4iW9IK2wUJC0u2WJmMNOhve2jITYsr6abdOMm lXWw== X-Gm-Message-State: AMCzsaVguuPD4iVePx2LTfFAbet3vwBsN9J+9HkxkpUXgdjT48fBxs+h DXDABaLAGLbgxRPBzx5SWG4= X-Google-Smtp-Source: ABhQp+ROt1a0RsqW8mcuiiY2OCu4NXCs71X8ZdJp+9yPPAmSwMzwcqp2F9PncTQS3H19aljQ6HfFDg== X-Received: by 10.28.28.138 with SMTP id c132mr3952888wmc.48.1509377879154; Mon, 30 Oct 2017 08:37:59 -0700 (PDT) Received: from localhost ([2a00:23c5:bef3:400:4a51:b7ff:fe0b:4749]) by smtp.gmail.com with ESMTPSA id r29sm20502796wra.71.2017.10.30.08.37.58 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 30 Oct 2017 08:37:58 -0700 (PDT) From: luca.boccassi@gmail.com To: Jerin Jacob Cc: dpdk stable Date: Mon, 30 Oct 2017 15:34:48 +0000 Message-Id: <20171030153511.13322-45-luca.boccassi@gmail.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20171030153511.13322-1-luca.boccassi@gmail.com> References: <20171030153511.13322-1-luca.boccassi@gmail.com> Subject: [dpdk-stable] patch 'timer: use 64-bit specific code on more platforms' has been queued to LTS release 16.11.4 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: , X-List-Received-Date: Mon, 30 Oct 2017 15:38:00 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.4 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/01/17. So please shout if anyone has objections. Thanks. Kind regards, Luca Boccassi --- >>From 9045778fc1e6840d0f9061e242f517edf057bb66 Mon Sep 17 00:00:00 2001 From: Jerin Jacob Date: Sun, 13 Aug 2017 18:03:38 +0530 Subject: [PATCH] timer: use 64-bit specific code on more platforms [ upstream commit 1e36bf301bbfa79efe340faf07e8cdb968ae34bd ] 64bit load and store will be an atomic operation on all the 64bit processors. Change RTE_ARCH_X86_64 to RTE_ARCH_64 to reflect the case. Fixes: 9b15ba895b9f ("timer: use a skip list") Signed-off-by: Jerin Jacob --- lib/librte_timer/rte_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_timer/rte_timer.c b/lib/librte_timer/rte_timer.c index 18782fab0..29ae2a35e 100644 --- a/lib/librte_timer/rte_timer.c +++ b/lib/librte_timer/rte_timer.c @@ -525,7 +525,7 @@ void rte_timer_manage(void) return; cur_time = rte_get_timer_cycles(); -#ifdef RTE_ARCH_X86_64 +#ifdef RTE_ARCH_64 /* on 64-bit the value cached in the pending_head.expired will be * updated atomically, so we can consult that for a quick check here * outside the lock */ -- 2.11.0