From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 68291A0032; Tue, 13 Sep 2022 14:08:14 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F19AC40151; Tue, 13 Sep 2022 14:08:13 +0200 (CEST) Received: from mail-qk1-f170.google.com (mail-qk1-f170.google.com [209.85.222.170]) by mails.dpdk.org (Postfix) with ESMTP id 0E0DE400D6 for ; Tue, 13 Sep 2022 14:08:13 +0200 (CEST) Received: by mail-qk1-f170.google.com with SMTP id o7so4478205qkj.10 for ; Tue, 13 Sep 2022 05:08:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date; bh=GFD9jBlHM127nH3IuwuFWmrbm5kHoL5MIE6ZeTOFYyI=; b=MvRpdVz/beJZB90DMYE7VUZD7h+iS0lfPh6L+vl4/Yd7dd3hir31rctg8Rt4w1HWCo 17QzpkbKlnKL3S55kqFEm9CTXQELAAt0TZzpYb2Ps45/Gg/0XnsJIxgWUjjLjl5qNQBt D8Skw1sA00EcU2pLdPgHiR9w5dBWgP0bDPKc1KSrsoBbPO0FXlVZOhwPtVniFL5kx6Cl HP+Q0RE3ZlUmeYD6WqUXyTsthiYAq7FhSdYPQ74rjQa3vozSsot4z7pPF3RwpXN+2rJa jS9ruprLjvUGeUXEcrL99vAthYAvWGJIV4StE47rsbHfKpvS4cxmgdjaW0zKt2MSclr0 muNA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date; bh=GFD9jBlHM127nH3IuwuFWmrbm5kHoL5MIE6ZeTOFYyI=; b=h3HKENdykPYFN7sazHSm9DdwyPWgEq1aop5BHDhre8b9OYTt9rt0o9bQS1yv2aw3bt b5fWChSVNDk+VzQRMKGkFrhxmzL7wmOKkkjn6SK9bvp+cze8EIRRpluqf+VZWGtlPxZv Qq7TSRzlW58w3XqY3jd+vyKDtppny7375TVTKvchkQupsfs3NidRwxIlDOHoPKUUT400 N8uA/j1Kf3KeNziybxUh4Dxr3EDWTlk5LeLCjxnMAVzhJpfRVGa91GdSoi1WOqWlGSoD W+Bfk6jdnGnmxP29mXOuFZCuPCd+4bj7tADuBF0oGZ5Rhl+0FNDoSrwDSmeYjbywoWoR eyOA== X-Gm-Message-State: ACgBeo10SZKr+w0X6G5jV1XZfHfElZMVf9RsEndqyJot3bDPQqAwISQy 6/7h1x+WDttlCm3rH05AHTbnr963xs554vItOrk7zr19p82Rsg== X-Google-Smtp-Source: AA6agR6Vc9WJvRnE8qcXUSKeCKhRRx49Dzh1k410+R9hVQOg0IrGsP8vipsMjd+0JSyRFQYOlp3KEzAyeTJMgwdJmIQ= X-Received: by 2002:a37:8903:0:b0:6bb:e6e8:a6c6 with SMTP id l3-20020a378903000000b006bbe6e8a6c6mr22036860qkd.316.1663070892355; Tue, 13 Sep 2022 05:08:12 -0700 (PDT) MIME-Version: 1.0 References: <20220810070116.3110427-1-s.v.naga.harish.k@intel.com> In-Reply-To: <20220810070116.3110427-1-s.v.naga.harish.k@intel.com> From: Jerin Jacob Date: Tue, 13 Sep 2022 17:37:46 +0530 Message-ID: Subject: Re: [PATCH v2 1/4] eventdev/timer: add periodic event timer support To: Naga Harish K S V Cc: erik.g.carrillo@intel.com, jerinj@marvell.com, pbhagavatula@marvell.com, sthotton@marvell.com, dev@dpdk.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Wed, Aug 10, 2022 at 12:31 PM Naga Harish K S V wrote: > > This patch adds support to configure and use periodic event > timers in software timer adapter. > > The structure ``rte_event_timer_adapter_stats`` is extended > by adding a new field, ``evtim_drop_count``. This stat > represents the number of times an event_timer expiry event > is dropped by the event timer adapter. 1) Please remove depreciation from doc/guides/rel_notes/deprecation.rst for above chage 2) Please squash "event/sw: report periodic event timer capability" with first path and update the comments. Rest looks good to me. Good to merge the next version.