From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id 2E10C2BD9 for ; Mon, 25 Jul 2016 17:50:11 +0200 (CEST) Received: by mail-wm0-f51.google.com with SMTP id i5so163169433wmg.0 for ; Mon, 25 Jul 2016 08:50:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=4ndT9Y3lTs2ELJrFJfDb+Z9zLPCmcUb0BSUpPbYjIgU=; b=jGbVrF5DdFOUWErtp/suC/I12Blb+YXvgWa9fUcljIFxErPMNga9OhSL0ayfn6odOJ vNJO8/hMhcTsC5GxbUzh/V6OyIv4EFaeEV5CyyDETZjtqYrFWa/usLBDvNyE+aCnOBPl gQzwHsOtRVwhz/once3QwVW7kyl5ZeJpZVzxq1oOBdo4hPuolY2nAU4iZdEUo7T6D5+Z 4lzPZTG8cAEtec0TTpKc8Az47IEEEpOcr90crCnfKlnPjrFuyK8eSoQYzpB+9fikBzCa fB5CWG2Q0TT9hT+DLNiVny6tA0lhP1Qi9zU7bbyhg3H88NV5VUWXSOUzcZrp47G6Sj1d MBig== 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:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=4ndT9Y3lTs2ELJrFJfDb+Z9zLPCmcUb0BSUpPbYjIgU=; b=bwpUF6x8XPXE4BEq1Ia/dWRbqGjTv1SvHnqAKRv9e59Oq4b9CzDf5h/LsKUtR+8NFK 9eVLqI7Elj4gkrtK7YJlFLzHMfuagHDtIZCeNvzKLMZsoSDbEYIh2EoRB5Yj6JAdYjCr lmYtHZWUshoNFSYtP+dyQA2f5mjuIsm5rDMUE0Uy541Ag9/TI62Q8snKT4H/5ZVd1/ww GtEJFNOCtXGj3ICcWGj7loQoS5p3k/AdZF+RraN7+azfgOJJGwJhiklWBpRvG3rLWy5H 3nhaSWWs51UaBLd6StiUa8NRH9l2NA7glcOm53a8zz1GGhESFgWOgAURQdtTAr2afQjp hhvQ== X-Gm-Message-State: AEkooutyG6/wV1s25nNtvlGpyUWvhjsEIMkG1YDPxp+XsfS6R6Ye+Ru+QQr4kMbgTHFr2uh8 X-Received: by 10.194.123.228 with SMTP id md4mr15222468wjb.91.1469461810977; Mon, 25 Jul 2016 08:50:10 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id cx1sm16408755wjb.6.2016.07.25.08.50.09 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 25 Jul 2016 08:50:09 -0700 (PDT) From: Thomas Monjalon To: Hiroyuki Mikita Cc: "Sanford, Robert" , dev@dpdk.org Date: Mon, 25 Jul 2016 17:50:09 +0200 Message-ID: <7901070.jIN0WTKpng@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: <1468766139-29545-1-git-send-email-h.mikita89@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] timer: fix incorrect pending-list manipulation 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: Mon, 25 Jul 2016 15:50:11 -0000 2016-07-26 00:16, Hiroyuki Mikita: > Fixes: 9b15ba895b9f ("timer: use a skip list") > > >>This commit fixes incorrect pending-list manipulation > >>when getting list of expired timers in rte_timer_manage(). > >> > >>When timer_get_prev_entries() sets pending_head on prev, > >>the pending-list is broken. > >>The next of pending_head always becomes NULL. > >>In this depth level, it is not need to manipulate the list. > >> > >>Signed-off-by: Hiroyuki Mikita > > > > Acked-by: Robert Sanford Applied, thanks