From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-184.mta1.migadu.com (out-184.mta1.migadu.com [95.215.58.184]) (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 E04B414286 for ; Fri, 6 Sep 2024 01:10:43 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.184 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725585045; cv=none; b=HK578vhOmM+I+eQhRoRO5yfimaOI//X2UKFXactfEtKPlzcz5k8HgD1RrMrUKkEKnrdiDBJkZzpjUwSC0EX4QM3bM2swI1w29pZY4UrQfzx4UdYVRKU95wFbJ9jPrR1wCPZyBihBnxAK21tjb9QcJypvK9itVEYh5JHMsXOBp5k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725585045; c=relaxed/simple; bh=OBy0g/xFYnXF1mTinoI/OyfUNy3lSufu7vvEDPS3y74=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=n6dzDts1gdOWTFUjn2CXuCF65h8XGGFCxbCK/L/bV6bRQFRPQsTN+PtDWryJrTQqPAMJzYwEoHwNEV4frs5DwFQY23D5gAwS7pg9OGcwDsEai99ORlPo8VZgHJAe5USGQOI1/AB3y5AXj8tG9Mfp4CxcFb37Y3jLUBU+f8J9lGY= 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=Ebtl+KbI; arc=none smtp.client-ip=95.215.58.184 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="Ebtl+KbI" Date: Fri, 6 Sep 2024 01:10:36 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1725585042; 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=UAc+0nTp64BZhTO1zDY3oDwqY9nXrm12mR1JltCSQmo=; b=Ebtl+KbIC39LSN6XibUU6e6xYJyVd6Lg3n6iOIcmM52AE5BUiwkd/qzbUqjTwXoE9QlVvN N+flPVxwL5PXeYWUBQgbd1yD2g+263vvCbX0Ia/7TE5lxi80qSLmoUA9xQx8d+5mnkFN9N H49q+Sb0eUh0wmdChgUb75UtGTnkmVk= 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 16/17] slab: make __kmem_cache_create() static inline Message-ID: References: <20240905-work-kmem_cache_args-v4-0-ed45d5380679@kernel.org> <20240905-work-kmem_cache_args-v4-16-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-16-ed45d5380679@kernel.org> X-Migadu-Flow: FLOW_OUT On Thu, Sep 05, 2024 at 09:56:59AM +0200, Christian Brauner wrote: > Make __kmem_cache_create() a static inline function. > > Signed-off-by: Christian Brauner Reviewed-by: Roman Gushchin Nice series, thank you!