From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-173.mta1.migadu.com (out-173.mta1.migadu.com [95.215.58.173]) (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 F1D537E9 for ; Fri, 6 Sep 2024 00:46:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.173 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725583571; cv=none; b=mWKxgjyuc/jHVb303bgrSQ0QMIj3sD0Obi/l+mZOFC8Tj14cEEHqZDrNEE9dtViOMFBiMIUAUebz5EyojKhYDJ+BptA26je3bKs+Vzj4hFSwCVBvfg39VuxLJbIUh11rw8fI6KjQ88IA04v8LTApsuRxpS4k9Cc/Qm8bbyOM1W4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725583571; c=relaxed/simple; bh=uRW0Mxs8sXW+R7VTaAiVA7fLuvcEST85bcb5AWHwyHY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=dWu/aDank8fdp4jfbFlmRMdz1nG9LrVtedk3E9lE2G/wxKmP/5TXyiqGO//qdFe2JC1Jd5LadtCjW2wsO9mbCZOoISkaPdLvOvf5BiGZHSGYFUJbM9Ox7QpIxlkbctwH8M9Lpbea+tfGEvxcOejiyLsed6ywKolq+rON9kbaVQM= 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=nEw09p6M; arc=none smtp.client-ip=95.215.58.173 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="nEw09p6M" Date: Fri, 6 Sep 2024 00:45:59 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1725583567; 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=wmCVz04QzZyBixm5oITB+N+fqnBMGmQU93EXuedhLoE=; b=nEw09p6Md9aEk4JehLXQX8X44Qgf7shxS82iRZGOk9s4pPxK23kZwAClpwOL5pQGAWvi8U DJOpScSV7G9CTsUCBbkyjdjnH9m15F+HQaucKjg4joH2wNiXgjsoV6nTQJGj2Kbj9aXNJa FbMHAFodJHpn9H7ppHE55hvQfv0lvRY= 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 04/17] slab: port kmem_cache_create_rcu() to struct kmem_cache_args Message-ID: References: <20240905-work-kmem_cache_args-v4-0-ed45d5380679@kernel.org> <20240905-work-kmem_cache_args-v4-4-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-4-ed45d5380679@kernel.org> X-Migadu-Flow: FLOW_OUT On Thu, Sep 05, 2024 at 09:56:47AM +0200, Christian Brauner wrote: > Port kmem_cache_create_rcu() to struct kmem_cache_args. > > 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