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 533BAA0526; Thu, 9 Jul 2020 09:05:41 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7FD411DB83; Thu, 9 Jul 2020 09:05:40 +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 C970C1DB27 for ; Thu, 9 Jul 2020 09:05:38 +0200 (CEST) Received: by mail-io1-f67.google.com with SMTP id e64so1207333iof.12 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=aJuVQc+xjjbvKGl0jmKJ7nIYi1RdFkZ7lz7EZ4ncWqdWL9BVuiee2LLTDiD+Vd2uIx g4yfig1jHp/yCLKkdOM315fuQk43RpMHW5abpjdT+iR8bv0nL2dhkq+9GlIpOdt6r6Qo CogHcKXJjAXgPJcOswNxMeuGUvo1Rm3i8gXbEL8JIXRtqZFwVYmFVh/ISca9ciBJP/6M J27VxaTWtd6CeHp/EcgMvN/UDa5c/n8FdnAX7u2CcXcNTb4g0nMoK4cDYO49l6YVdqfT Hh0ezyYoHFFXJppxMgTLf0uxKnenF4sjLux76vXo6ue0u5qliH6tAYPcGESsN8x8UToH 6wZg== X-Gm-Message-State: AOAM5317w9QynbH3+Ror5m8u171vOirGs/2tNYuCvdeBfy8pQ7bObQ02 YwGOPohShYQECRp07PHakSdsEQIBwemJLamNxVBgog== 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-dev] [PATCH v2] lib/librte_timer:fix corruption with reset 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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. >