From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 848DE30FC22 for ; Thu, 28 Aug 2025 12:40:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756384824; cv=none; b=hSYBrs3Ub0eaZJX3KibH5HuE5zhIeaC6yPbN32JPGDoWct2PkMNFlgU+EAe648RPM+jIOaAKqQWNP602AmujBJ+E81z8KS7YJe/59kFa+Wb6zM+HgpNSdXevENkvQZMOVI4HmLg+1+qgOPo+bZfsqhqr3Dhi8n00YZuZ6mlOKBU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756384824; c=relaxed/simple; bh=NEazeLpd+bcLBHgDTjQnItu68hImoubJuA2kYmpM6OE=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=F3yDE0EtpfN++A4l8yuNY43IHzgjmaqB7TlSalXInMiDHj8zW+ChGyUrrelI8o/uYXZXQhHmT33wYZAjMof5YFdtosTPRrDZqRkUkIq5mROzT9VTht9KzERpV7SCZ6bp6BxCRdiIvhGlkwa+5e3r6Hi5AA9KWN5F4NTCVuVB7uI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=uZgGU9T/; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="uZgGU9T/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E5744C4CEF5; Thu, 28 Aug 2025 12:40:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756384824; bh=NEazeLpd+bcLBHgDTjQnItu68hImoubJuA2kYmpM6OE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=uZgGU9T/Al/U2yFHpamwq3pYLADCClEN7Ul/CpTKNMJg+ezp15nx3u6WBD9RyGyBi mjHBa0V+UpQYXtXZDGjGfMWIOpkBdrIGRVLkhy12+6Fddfdb67lOQu/HbJnnLTKpWc KlEUqGGY5kSALTe5oklI58bEiwiRLRqqk+MuZMyCQ/i9HwUf86lI50ztqxWld/py1y tkNK7ZzJEIDvCGIAZyyVzA1hSBbhS1A+hEeloTT+DE453z1bQNYGoBsrXADjjxa4Kn WD+bZhPzS4eCpRuakLdxgjhhvRUAFGdIaxMQmVrW3BKB5rTssrqOQT8TXg/nRSbFYe 6oD0Faydmi86A== Date: Thu, 28 Aug 2025 13:40:14 +0100 From: Simon Horman To: Saeed Mahameed Cc: "David S. Miller" , Jakub Kicinski , Paolo Abeni , Eric Dumazet , Saeed Mahameed , netdev@vger.kernel.org, Tariq Toukan , Gal Pressman , Leon Romanovsky , mbloch@nvidia.com Subject: Re: [PATCH net-next V2 2/7] net/mlx5: E-Switch, Move vport acls root namespaces creation to eswitch Message-ID: <20250828124014.GD10519@horms.kernel.org> References: <20250827044516.275267-1-saeed@kernel.org> <20250827044516.275267-3-saeed@kernel.org> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250827044516.275267-3-saeed@kernel.org> On Tue, Aug 26, 2025 at 09:45:11PM -0700, Saeed Mahameed wrote: > From: Saeed Mahameed > > Move the loop that creates the vports ACLs root name spaces to eswitch, > since it is the eswitch responsibility to decide when and how many > vports ACLs root namespaces to create, in the next patches we will use > the fs_core vport ACL root namespace APIs to create/remove root ns > ACLs dynamically for dynamically created vports. > > Signed-off-by: Saeed Mahameed Reviewed-by: Simon Horman