From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-187.mta0.migadu.com (out-187.mta0.migadu.com [91.218.175.187]) (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 BDE9710A0C for ; Fri, 6 Sep 2024 00:53:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.187 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725584000; cv=none; b=qymPun3h3HBrRmBcpFYYTtinOCmmdGbe9uLwYQb75Z3sCN57fUp7l2+RF5qQgaGn3jMhY5Z9xYBofwRgA6NdBAFjaLj8bAZsrTE//I9hUFqwrhT76tuLdtFleTZCXEN2iZ9paGm4kFmioSSl6YjfjldG7WR/H8NFidYJxYuG7CQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725584000; c=relaxed/simple; bh=fc7PDKYBJfav/Dopi6xyYNuENYqbee4p9ADIOMa+VVc=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=S+L2t36jREwiCTiJXuGQKBxOJsjygNDoVLDkif3E3roDMU8RUsQmTZIJD8Tk7R/QMCZcFurcUJrhcxc/wNroo/IcthZXTJht0qSKMOJ1FREYrt/mD9RHEVH4r43+vV06aLdJtJteA3czv1nSP2gp5W+6Dy9UkIHnxCI+EtI1e7g= 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=XzXt3J6m; arc=none smtp.client-ip=91.218.175.187 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="XzXt3J6m" Date: Fri, 6 Sep 2024 00:53:11 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1725583996; 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=4IcdWBT2V456Sbo1Lq+PFgKjbiWAzTAvx1VHs3dh19Q=; b=XzXt3J6mpWl4RE9cVEpVviDGTih76wSVXCyG1lLTO+Vnpz4spXok3BlKDLDJ5hx3JnYgzA uqJluL7n0byMZHT+v2iu4Rc9A2D5bQheG0YU/YsF6R61TR8cZOysODXUViIvDOrDoAAP9M 0pICEU+kwAAa5ZCLqakD4tdgcb9mvqY= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Roman Gushchin To: Christian Brauner Cc: Vlastimil Babka , Jens Axboe , Jann Horn , Linus Torvalds , Mike Rapoport , Kees Cook , Christoph Lameter , Pekka Enberg , David Rientjes , Joonsoo Kim , Andrew Morton , Hyeonggon Yoo <42.hyeyoo@gmail.com>, linux-mm@kvack.org, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH v4 07/17] slab: pull kmem_cache_open() into do_kmem_cache_create() Message-ID: References: <20240905-work-kmem_cache_args-v4-0-ed45d5380679@kernel.org> <20240905-work-kmem_cache_args-v4-7-ed45d5380679@kernel.org> Precedence: bulk X-Mailing-List: linux-fsdevel@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: <20240905-work-kmem_cache_args-v4-7-ed45d5380679@kernel.org> X-Migadu-Flow: FLOW_OUT On Thu, Sep 05, 2024 at 09:56:50AM +0200, Christian Brauner wrote: > do_kmem_cache_create() is the only caller and we're going to pass down > struct kmem_cache_args in a follow-up patch. > > Reviewed-by: Kees Cook > Reviewed-by: Jens Axboe > Reviewed-by: Mike Rapoport (Microsoft) > Reviewed-by: Vlastimil Babka > Signed-off-by: Christian Brauner Reviewed-by: Roman Gushchin