From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-188.mta1.migadu.com (out-188.mta1.migadu.com [95.215.58.188]) (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 BBA4118EAD for ; Thu, 14 Nov 2024 16:15:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.188 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731600930; cv=none; b=bv8Jz90He86OmUGVWasxRDvxDf/7BQvZBor7fpAkZKwwDoE5ST+zIyPzs2JInc0ZUlN+JBjYEyTOdm6B4CHr69Wj4OzKIkykSY3xeiiamuAcTYJGCS8BP9VDi0Jl5Bx22M0s0o6mM0BVyMJ5pU3lQqF+ZWmSWxhYBn4mjBNO7Zk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731600930; c=relaxed/simple; bh=889lIaoh8cyJx6WnEnFtODlIFsXaeD5DVLqZiRFOIss=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=r0GLTQBtB4vJ16ywgOMmDqM+J6fwvhklorCRoipM+dWkWa7Uhix35qvjPpvEn8plgJwh2SJtvfY1H8IliqslnvgZc29MpUlVOEPbRndk0XAF8OYmXtSpzJnvFpGlKcEEQKTXNNU7uMCyO4js1f7GvVV4PCkRRe4yCfYGdY4XX/0= 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=vL0DfT99; arc=none smtp.client-ip=95.215.58.188 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="vL0DfT99" Message-ID: <94ef681a-a96f-41a4-bd08-398931d47987@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1731600924; 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=Ph0a5hVZtOyWVEA97NBFnui489BrVg6kXaYqBXvefuU=; b=vL0DfT99sLbe1thpqHp4EYuY5WRG20l6S/LHHqdU39gE8E92RIWCTdSa01IwHP8Fd0aVZL XqI6m3UVAiaHy206hERkQd2YYbulr16TFxWJk8jjxWhQ2ljgm6vAjKkVn0ii6O9TlRqwr/ Redlhs9cDCRUB3Py/DW/fx01BeUm4q8= Date: Thu, 14 Nov 2024 16:15:17 +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 1/7] enic: Create enic_wq/rq structures to bundle per wq/rq data 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-1-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-1-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: > Bundling the wq/rq specific data into dedicated enic_wq/rq structures > cleans up the enic structure and simplifies future changes related to > wq/rq. > > 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