From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1EF6DC2BA2B for ; Thu, 16 Apr 2020 07:53:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EE5502076A for ; Thu, 16 Apr 2020 07:53:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587023588; bh=2YuLyG7f1XDF6lmYug81NLLQ2VsOpsIASi5MYOVzSPk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=vhze4rRwzWmf3ADYap4f00wOY88DjLGHnjaVGkjACmaJPdhHvMmXUwkoAc+s1YmdZ g3IQMJvi82wxMoTuZUbziU8sGMYm3xSBmv+NgCPI+0dC6lPSqMGk30av7+S7Pz0sZG cCttluV/uX7+IygQ/A7Q3c8L7bq1VyJDB6Ko75ZU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2439989AbgDPHxG (ORCPT ); Thu, 16 Apr 2020 03:53:06 -0400 Received: from mail.kernel.org ([198.145.29.99]:33188 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2439955AbgDPHw5 (ORCPT ); Thu, 16 Apr 2020 03:52:57 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8D0552078B; Thu, 16 Apr 2020 07:52:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587023577; bh=2YuLyG7f1XDF6lmYug81NLLQ2VsOpsIASi5MYOVzSPk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=q6MJNRb1bMcJJbMSHGkNbkqa/Y5qeNri7ItQOfyF9nNx+0Ue0K1Xyupk+ybn+537C 6iGa+riwRBnqbr6mnyQFoQs3hryiBtsJhotfv1Id3Wj0FqZkVz8qaArS2RG6Vn8N30 N1e+qSkxLSBYkWjQLReD+m4B7xRUZ4KZye42hxaU= Date: Thu, 16 Apr 2020 09:52:54 +0200 From: Greg KH To: Christoph Hellwig Cc: axboe@kernel.dk, yuyufen@huawei.com, tj@kernel.org, jack@suse.cz, bvanassche@acm.org, tytso@mit.edu, linux-block@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/8] bdi: move bdi_dev_name out of line Message-ID: <20200416075254.GD376871@kroah.com> References: <20200416071519.807660-1-hch@lst.de> <20200416071519.807660-2-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200416071519.807660-2-hch@lst.de> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Apr 16, 2020 at 09:15:12AM +0200, Christoph Hellwig wrote: > bdi_dev_name is not a fast path function, move it out of line. This > prepares for using it from modular callers without having to export > an implementation detail like bdi_unknown_name. > > Signed-off-by: Christoph Hellwig Reviewed-by: Greg Kroah-Hartman