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 8537C186A for ; Fri, 6 Sep 2024 00:12:19 +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=1725581542; cv=none; b=Ic4ktyn3XzgJnVhRoX07S59vLbt5VjtmCNGx4A6tS7OGy6F+apAjW64iJ/PFJ3piQL9d/B+fb0oYT/dO05SFvfepxw7cL/3j0i3R7cMg+I56web/xrBo8EsqNCgz2q30RDKl9aVP68au99U7DKfYAtkHEg4r46CTzd6pvn5W+Hk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725581542; c=relaxed/simple; bh=cGrPFTipk/UYyVvS5WfRnrSm+vVz1+3LCvnLe3ZVPQc=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=SJ4KfaXvTrNm6h6+qI3XtfluVvwidKCZmpXh0K3Uce56P8m60VeDUxXDGN0MZrH7TLUReupqMAm0DRB8e9jj38JeILb8X6jum0EwFI8NK15IinyVMpWgOsfpq62lX6k1WZmBLY7dE6dSKKoQUd9bSR+p3pgEuu3qmxFCSYVSXkw= 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=w87bdHOF; 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="w87bdHOF" Date: Fri, 6 Sep 2024 00:12:11 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1725581537; 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=LM69jTz6XT2UXhlBgm44AuT7u9A6svAf4U7LOEYT7gY=; b=w87bdHOFMwq4SZbFZamQBK43WS0ZqT/FImiroilsVsevUxzLNiI6pebrHgDPH+39rkspXt 2y9fY76lNL5TIeEhfaaz6cRtS/VqjE3cLEdFN1NPLUjfN2VTZqTAAS2prlQF+EcVV7u49f IH5UMZrw2S3Mt8r81U4ylfVFNoPAMsk= 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 01/17] slab: s/__kmem_cache_create/do_kmem_cache_create/g Message-ID: References: <20240905-work-kmem_cache_args-v4-0-ed45d5380679@kernel.org> <20240905-work-kmem_cache_args-v4-1-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-1-ed45d5380679@kernel.org> X-Migadu-Flow: FLOW_OUT On Thu, Sep 05, 2024 at 09:56:44AM +0200, Christian Brauner wrote: > Free up reusing the double-underscore variant for follow-up patches. > > 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 Thanks