From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EDBB117BED0 for ; Thu, 14 Nov 2024 16:21:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731601301; cv=none; b=E8jicKHTb9gdCu/hYBKktZN7tit09IiIYPbGUPy1ARPLvY7CzoUtxf3C62ZYk6CWbQf78+aH9CdgUAZWbu7U0/TWOVuPFCQmDJAkjXTl8kcFkUTYt8shsbXv0mVqYLD50WJz5q76hvWvwBmRgXDHZKNA/dQPXv5cy5ZgfMrZoP0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731601301; c=relaxed/simple; bh=HnGRFh0HiIz5eQKZCCkmIHgbqvVSCi1Bz+4s6YLUdhg=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=skpYTxhkWMZrHoQSUffrPLmFAeByQZqh2W4N1ybO/HCo/ogossZITMnglSHyMSzEVYk6qTX83dAYPqQMBSImUvZmWguytbtZNkm8eMPnUcXNoV6JEvYAGeIi1y2H3DtNgXpGDRHStkxxhFI4G6QYeuyjOJYU4h9ID7EBw1+56ZA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=IqxRfw4t; arc=none smtp.client-ip=91.218.175.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="IqxRfw4t" Message-ID: <15f1d59a-c1e3-424b-99fd-f2fa602532af@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1731601295; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=hlyzKV6e4XPPS/cv0TkUkspPKwaDligjDub2HyX5ibM=; b=IqxRfw4tuxbm3JBbDE+kmxX0E/rV3zab7UkTCWDF3DKGXeyeedijSGl5DAyDawVRM3NQXi DJAQaQVE5CrmtnoKbk5C6jV+8GjMOpG4qu1Qldgshl8t0cJe7cr0XhoCSSf1i+L8E4Je2/ RRODWok4NHsqRJGyx7l8OIhlPIJ9WUs= Date: Thu, 14 Nov 2024 16:21:29 +0000 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH net-next v4 4/7] enic: Allocate arrays in enic struct based on VIC config To: Nelson Escobar , John Daley , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Christian Benvenuti , Satish Kharat , Andrew Lunn , "David S. Miller" Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Simon Horman References: <20241113-remove_vic_resource_limits-v4-0-a34cf8570c67@cisco.com> <20241113-remove_vic_resource_limits-v4-4-a34cf8570c67@cisco.com> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Vadim Fedorenko In-Reply-To: <20241113-remove_vic_resource_limits-v4-4-a34cf8570c67@cisco.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 13/11/2024 23:56, Nelson Escobar wrote: > Allocate wq, rq, cq, intr, and napi arrays based on the number of > resources configured in the VIC. > > Co-developed-by: John Daley > Signed-off-by: John Daley > Co-developed-by: Satish Kharat > Signed-off-by: Satish Kharat > Signed-off-by: Nelson Escobar > Reviewed-by: Simon Horman Reviewed-by: Vadim Fedorenko