From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6DB96A0526 for ; Thu, 9 Jul 2020 09:05:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4D7C41DBBF; Thu, 9 Jul 2020 09:05:42 +0200 (CEST) Received: from mail-io1-f67.google.com (mail-io1-f67.google.com [209.85.166.67]) by dpdk.org (Postfix) with ESMTP id E2B0F1DB83 for ; Thu, 9 Jul 2020 09:05:38 +0200 (CEST) Received: by mail-io1-f67.google.com with SMTP id q8so1238069iow.7 for ; Thu, 09 Jul 2020 00:05:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=emumba-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=YJsuTiAmUsUB6rLDB09PnJkxNee2KhqMN8J3fq0P+mk=; b=YjhpEWBO2wHHU0UAhmmyHcgFjAH9V0ZRfqCemcHyd7sV7SomBOVerGYbNO+Er9MnxV KVmERyfH2yB2F6egVbZNxCpH+FyXazb2PSD00QhyY5QCrvQVKFTtftUrr05gcfLI1pdy lPx4iS4hc2Rd3q2lCagMjYqT0MceV9zGQwNoZcP38rbnM/YOwshq8gT/f9+cwMen8Vkb FFIJaO96xyvFlJzLxIMZx5xwEiwKWHrBuGRZw2DLE7Dev70mOuoRXts7WFHlJnjZ/jRC XRennzAVk6B+QLawGSRAu6k5twpnY8d49VucQRPwqS6KYlfoQxeGBLxu3sfoybUK5YXE k2mg== 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=YJsuTiAmUsUB6rLDB09PnJkxNee2KhqMN8J3fq0P+mk=; b=PuccUhPYYdJaUaPfsIEOT5GBYrlE6nCUdVfXXuQyc7Rn3j+Rpi1KkubkytY9lfgvj9 MyzH8/h7b2aCDYgrRWwALVvM81pUcE2E7KpH3ZcRFJzZAlwEG6Kykw6J3JWYMGr14xdU 52i15wY7zaH8Q6R6ErkZ5ZW42yIJIEH332wLPBLo7O0CPbVaaFH76jJ2DRDxWVbgVnWI HmmOI+Dzigo3YnH3BE6TBtj1CsgYGRfQjq3Hm8M0ydhvho+TKlQrq0EMAzhSbJ12A2FE l0JvzKPN4IcbFzLdZkH/S3DMP6SP5/FIat6z0sfMOnV/y2mkyYBaNPH9rDFmDYZ5uMsq BKAQ== X-Gm-Message-State: AOAM532xQLS/dqQ84yQRKkNwcndn95pIpaA8QzPJH+t+Y/j+7Dxlthbn weFtDHD8Kn/HUAbp0prlLUQQpE0/xnf7LR6DJ4yFGQ== X-Google-Smtp-Source: ABdhPJzkNDlSkmNcg02pTMPLtDWM4QCmS5zAsfCWoI9wWPWOe18UZsKy6BwJ/05+Z9MIVpXtfni9T0oYm3QV47y7mPs= X-Received: by 2002:a6b:e617:: with SMTP id g23mr41558854ioh.103.1594278338281; Thu, 09 Jul 2020 00:05:38 -0700 (PDT) MIME-Version: 1.0 References: <20200707090320.2463-1-sarosh.arif@emumba.com> <20200708050626.23512-1-sarosh.arif@emumba.com> <20200708080714.30fd0c77@hermes.lan> In-Reply-To: <20200708080714.30fd0c77@hermes.lan> From: Sarosh Arif Date: Thu, 9 Jul 2020 12:05:02 +0500 Message-ID: To: Stephen Hemminger Cc: rsanford@akamai.com, erik.g.carrillo@intel.com, dev@dpdk.org, stable@dpdk.org, h.mikita89@gmail.com Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH v2] lib/librte_timer:fix corruption with reset 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" On Wed, Jul 8, 2020 at 8:07 PM Stephen Hemminger wrote: > On Wed, 8 Jul 2020 10:06:26 +0500 > Sarosh Arif wrote: > > > /* loop until rte_timer_reset() succeed */ > > -void > > +int > > rte_timer_reset_sync(struct rte_timer *tim, uint64_t ticks, > > enum rte_timer_type type, unsigned tim_lcore, > > rte_timer_cb_t fct, void *arg) > > This is an API change and needs to wait until a breaking release like > 20.11. > Okay,waiting till the next breaking release sounds fine to me. > Also most applications won't test the result. >