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 BB5E4A0524; Wed, 14 Apr 2021 10:06:36 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4CC751617CF; Wed, 14 Apr 2021 10:06:36 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 4C0221617C3 for ; Wed, 14 Apr 2021 10:06:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1618387593; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=NffJhYBdxURPGScKkzg71fSUlFLF0tUcqxBztIc2p+E=; b=D916/5uWSR3y1tvNP6QqMkZpJuk7nhFAk/IXsuIubOEZ0m1DdAS84XNUPeLtGQGy8Fh57U Pnmtrckp2jBwWHbM0H1VVSX7Py/IhAu4wk5NlDWsfWdbQCILLBvJ7zGWUAecuRS/l/dPvm 4bMrJdqEfCSHjlGkxx6pQx/IZbsA9RE= Received: from mail-ua1-f72.google.com (mail-ua1-f72.google.com [209.85.222.72]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-415-2yQjC2iEP5OPaT5T5orAKw-1; Wed, 14 Apr 2021 04:06:31 -0400 X-MC-Unique: 2yQjC2iEP5OPaT5T5orAKw-1 Received: by mail-ua1-f72.google.com with SMTP id t21-20020ab027950000b02901e849561482so517972uap.18 for ; Wed, 14 Apr 2021 01:06:31 -0700 (PDT) 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=NffJhYBdxURPGScKkzg71fSUlFLF0tUcqxBztIc2p+E=; b=WtRpSRhIPlnE6Wa6Nuv2HOqJf1TgDnLN5DZxuvQg344wnhV7v3MBiEma7ofbCVt4Gs MNPPPaLUEno3X/m8lytqD2hjDs6AI5LWzMgMjb5aiW1PquKESRNUWWCTL79i7VXCfuB9 rWq6loSvltCMaXZ1zFpuetPgPmDJLjd3qNlqzvnOKjp8bDzMw3YLXpcz9aHUsiYwQzLL z/jxDfnvobo9IBXvI9IB/dznhXRywg+TMp0N4AJQd+EtfbkJVpolUCNX9pK+twxWvJQD Sdctlrt/XlQEcjIwpbBqM0W+MU5UBQWxplDK0o4UxiRNvScOY62Id5+La2WurLJez+sg AN1w== X-Gm-Message-State: AOAM533OVSDFETYorjDWsWV8kYXEQ5Tq3WlD8wTsZkoZqt58Z/aj4IsE gldwJ6AWq6p3ao4aDLvuEVmhDl+o+H0Gpg4+3CYXXkJ274HzALEmWceB9WLbSTMA6oHNczLEGGQ 0KYRfyijFasPUGEoniZU= X-Received: by 2002:a67:f84a:: with SMTP id b10mr28116977vsp.10.1618387591473; Wed, 14 Apr 2021 01:06:31 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzid9uF2QRdL2jMisCM7fWz9nHQowKUHKsExsiLj0/szaRM4tExKb/RhwUx/vO3mZmWrAdTWoF6lJopDiBLcc0= X-Received: by 2002:a67:f84a:: with SMTP id b10mr28116968vsp.10.1618387591225; Wed, 14 Apr 2021 01:06:31 -0700 (PDT) MIME-Version: 1.0 References: <20210413221613.2062-1-pbhagavatula@marvell.com> In-Reply-To: From: David Marchand Date: Wed, 14 Apr 2021 10:06:20 +0200 Message-ID: To: Pavan Nikhilesh Cc: Jerin Jacob Kollanukkaran , Jay Jayatheerthan , dev Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] eventdev: fix signed comparison 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 Sender: "dev" On Wed, Apr 14, 2021 at 8:52 AM Jerin Jacob wrote: > > On Wed, Apr 14, 2021 at 11:56 AM David Marchand > wrote: > > > > On Wed, Apr 14, 2021 at 12:16 AM wrote: > > > > > > From: Pavan Nikhilesh > > > > > > Since queue identifier is passed as signed integer, a compilation error > > > is generated: > > > rte_event_eth_rx_adapter.c:1810:57: error: signed and unsigned type > > > in conditional expression [-Werror=sign-compare] > > > Make queue identifier as unsigned when adding it to vector data. > > > > > > > Bugzilla ID: 672 > > > Fixes: d7c428e557ba ("eventdev: support Rx adapter event vector") > > > > > > Signed-off-by: Pavan Nikhilesh > > Acked-by: David Marchand > Acked-by: Jerin Jacob Applied, thanks. -- David Marchand