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 89B15A0350; Wed, 1 Jul 2020 13:22:36 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DA2711C439; Wed, 1 Jul 2020 13:22:35 +0200 (CEST) Received: from mail-io1-f65.google.com (mail-io1-f65.google.com [209.85.166.65]) by dpdk.org (Postfix) with ESMTP id 3CAB21C2E8; Wed, 1 Jul 2020 13:22:35 +0200 (CEST) Received: by mail-io1-f65.google.com with SMTP id c16so24537961ioi.9; Wed, 01 Jul 2020 04:22:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=VU+swcJNdBgefxGhggm2k4W9QnUtqXigdKCwS+2c8KA=; b=ER0QAorzV38ggdAuHYWhmR3JktfAwkIiG3RpjNX2N4EWQ6PWWvbnuMtELpmQdC1dye Pcv4ewGNncz/PqvaI3pZZCZWcfuGieq98jfHoTzleY/hWGF1EdpnzhGh0HrTTuFad6Wp YTOsHtu66sepxuCgn8zFA3WLouyA7ry8tVuNRW55+5TO2XY6J1WDjRXOpsfJNzz7byoW iKJyagZdur++bgyIn/FlTT3rXcG8mWgR751LQ523D9EGkjgIl/DX5M7ethTCEHxxYTCR 7jzdKoMAJhD8d+Iyz0u3ZQEqMYMxZaV3exsYSgTplY7QVq8sBbptDoPm13IL/1zJKXgu Owzg== 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=VU+swcJNdBgefxGhggm2k4W9QnUtqXigdKCwS+2c8KA=; b=nwTlmT/s5XNGSvm5jrdLBRhqxrT8RQrXWSCIHHRpuf93V+laqWPXP0ZydBBrNH2Q4G IyFf+3/BKbfCyMJh0Eyxu+JeOVNMulg06g82iJUErhZY/pl59G8Q5kd5Q+gpgdhNuQu+ LNFzMNt3Bn35FrmWjku5RnkT7ORqJk9agn/kQrIcq4dyNHjilOYrQp9CJa96dwqlx0rt 9jaGKJDRlkSgeYxSK3OMcBCtBv+wvEsjZ8ojOlIjvEiiMjQk+hFZg4F+12LCK9YmJYYt THMqYm32qpXYH5NtuaKJjQJd9I9fW+ydG1n0kS4xWxKNn0LDDm5TYzEcHWkYkjxLtnrD j2qg== X-Gm-Message-State: AOAM532Nwt65QR5cmYc0v2Fo4TSfh135ZCytS0nxtqm9/LpKldmFGoWJ F0dJh9FMuM2TjhFSRU57tWNZYehXi0eb+TDER2Q= X-Google-Smtp-Source: ABdhPJxlTH9/uI348ZMozeil9Ivvp4QbhLw0o3+8NPkrH8WixJyjRIjc04dWLpegBBXsO/pfUZmcV4/6svYcA/SKNIg= X-Received: by 2002:a6b:b344:: with SMTP id c65mr1800403iof.123.1593602554450; Wed, 01 Jul 2020 04:22:34 -0700 (PDT) MIME-Version: 1.0 References: <1591960798-24024-1-git-send-email-phil.yang@arm.com> In-Reply-To: From: Jerin Jacob Date: Wed, 1 Jul 2020 16:52:18 +0530 Message-ID: To: Phil Yang Cc: Honnappa Nagarahalli , "Carrillo, Erik G" , "dev@dpdk.org" , "drc@linux.vnet.ibm.com" , Ruifeng Wang , Dharmik Thakkar , nd , "stable@dpdk.org" Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH 1/3] eventdev: fix race condition on timer list counter 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 Mon, Jun 22, 2020 at 3:18 PM Phil Yang wrote: > > > -----Original Message----- > > From: Honnappa Nagarahalli > > Sent: Friday, June 19, 2020 2:26 AM > > To: Carrillo, Erik G ; Phil Yang > > ; dev@dpdk.org > > Cc: drc@linux.vnet.ibm.com; Ruifeng Wang ; > > Dharmik Thakkar ; nd ; > > stable@dpdk.org; Honnappa Nagarahalli ; > > nd > > Subject: RE: [PATCH 1/3] eventdev: fix race condition on timer list counter > > > > Since this commit will be back ported, we should prefer to use rte_atomic > > APIs for this commit. Otherwise, we will have a mix of rte_atomic and C11 > > APIs. > > My suggestion is to fix this bug using rte_atomic so that backported code will > > have only rte_atomic APIs. Add another commit (if required) in this series to > > make the bug fix use C11 APIs (this commit will not be backported). > > Agree. > I will change this patch to the rte_atomic version in the next version. Hi Phil, Could you send the next version? I would like to take this series for RC1(next-eventdev tree) > > Thanks, > Phil >