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 1CEE7A0547; Fri, 29 Oct 2021 14:44:16 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A47A84111F; Fri, 29 Oct 2021 14:44:15 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id DB57A410E1 for ; Fri, 29 Oct 2021 14:44:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635511453; 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=tuQk4oWWvVdqUKxba421PPsTRxLP08Gws/dexATbV0A=; b=PWim4hkEQ3C8JJ1tP5r9WpbCtNwRAfU+ftRgVHqUgx98yaTGxOKiKesj6zMEz8HXIAia76 YUe0Q09QLMoHGYi7u4Ia/fQDxTaSQDBKbUbXmkmHIbCALuhiKxFeyromY76LIjIdJx29ee 6SHoXvQ7zDrBDtRt7220vFuuT+A5rYE= Received: from mail-lf1-f72.google.com (mail-lf1-f72.google.com [209.85.167.72]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-504-MTcnBVbRP3CAEh-9COsf8Q-1; Fri, 29 Oct 2021 08:44:09 -0400 X-MC-Unique: MTcnBVbRP3CAEh-9COsf8Q-1 Received: by mail-lf1-f72.google.com with SMTP id i1-20020a056512318100b003ffd4e89eb9so3440787lfe.19 for ; Fri, 29 Oct 2021 05:44:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=tuQk4oWWvVdqUKxba421PPsTRxLP08Gws/dexATbV0A=; b=JigTybHSnzIbCEuB6f2gSOWxpEA6Lso9IXelB20+Mi5R9KFO7yUJgCgL8CJROJ1xRf 2f0wRMCuluC3Rzk6fTpqMJXw13tfoax4yoRePJlDSZuexZxWnO2LrDl9AQhMIHFB4leI jyzL5oWzHL70SsY0wVKeRPFqyvGtg+4r/IC+envQiur+yWFnOaqrWhOzmnVbSIV76l8g xnZMY5fmKcpOHVmXFuP3o9Rh+85dzb//Pgl/iyV1tTSaSBROF7WTBRBzU5SqSYVnRQuY nt6kzCP8O5hOxzc8OnvfM5oYs1jqT37uRBQKsnaCXlqbuU1FSPocy1PJTjzA1HslK5uS ryhA== X-Gm-Message-State: AOAM532C91ubRyS5vL2dRhtMqf3UQUAgZHzGL0JgQKedkpj3pvLtmKRA 8VnMVP2yTWkFVKg2pjTjQthUG2P/sotNbwVJuS+MC6mnoH6UE6qmnAw2iYB0/SVTgRUgZ6giAvH kATSYX4f37KGZ2S9RL8M= X-Received: by 2002:a05:6512:a8e:: with SMTP id m14mr10206508lfu.575.1635511448210; Fri, 29 Oct 2021 05:44:08 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzL363DZwMv0IfrDWNPPhbJ2IFqMgOxnkgcqWlbWWsZBnWYj7hYLiV1Rg46hhdHZnC1GRk+aaxoXixg+c4Utps= X-Received: by 2002:a05:6512:a8e:: with SMTP id m14mr10206489lfu.575.1635511447994; Fri, 29 Oct 2021 05:44:07 -0700 (PDT) MIME-Version: 1.0 References: <20211029073819.29336-1-david.marchand@redhat.com> In-Reply-To: From: David Marchand Date: Fri, 29 Oct 2021 14:43:56 +0200 Message-ID: To: Harman Kalra Cc: "dev@dpdk.org" , Anatoly Burakov , Dmitry Kozlyuk 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] [EXT] [PATCH] interrupts: do not resize event list for non MSIX 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 Fri, Oct 29, 2021 at 11:38 AM Harman Kalra wrote: > > Resizing event list only makes sense in MSIX case. > > > > Besides, event list has always been RTE_MAX_RXTX_INTR_VEC_ID large. > > Let's restore this assumption for code that might rely on this property and > > only enlarge the event list when necessary. > > > > Bugzilla ID: 843, 865 > > Fixes: 8cb5d08db940 ("interrupts: extend event list") > > > > Signed-off-by: David Marchand > Acked-by: Harman Kalra Applied, thanks. -- David Marchand