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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3C47CC43334 for ; Wed, 6 Jul 2022 21:58:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234467AbiGFV6K (ORCPT ); Wed, 6 Jul 2022 17:58:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42004 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232289AbiGFV6I (ORCPT ); Wed, 6 Jul 2022 17:58:08 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8260A29806; Wed, 6 Jul 2022 14:58:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=FWlecqAhe1wWW/g+l8SEjNxoVOaJ+w151+OPRHlFn0g=; b=nX0STgrRuA+QEENyN0xAm334CU B8JmUkMJG4g6dKkm1SMpYhgri+6U0M+P7Egy7XQU/q7s6prD/mbd402VR6bZLU1gOAbf+bs7nDjNl DMuJEQhZyEOvGbZnCy8q2Z34Gwj5ns5Y4XUt2qz/8idocv4u9Wi5ZHneKr9BmeXJ4CzfLIAllot4E Be4KJPoZH9CG/AciokXIFVmZCi1NRPsim1PAnBpSyanInU+TtPHm/VCakydY5FP2fppYmLrZxnUi0 24YCnmmxUTdMNZDfUc143xlSfosOGjKXJ3gICtbyRmgqDzEb9U/qtrTHCQQcuBquEssDa3fHX/9cq vws4tEWQ==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1o9D1x-00CVrT-B0; Wed, 06 Jul 2022 21:57:57 +0000 Date: Wed, 6 Jul 2022 14:57:57 -0700 From: Luis Chamberlain To: Xiubo Li Cc: jlayton@kernel.org, idryomov@gmail.com, viro@zeniv.linux.org.uk, willy@infradead.org, vshankar@redhat.com, ceph-devel@vger.kernel.org, arnd@arndb.de, akpm@linux-foundation.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v6 1/2] fs/dcache: export d_same_name() helper Message-ID: References: <20220526011737.371483-1-xiubli@redhat.com> <20220526011737.371483-2-xiubli@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220526011737.371483-2-xiubli@redhat.com> Sender: Luis Chamberlain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, May 26, 2022 at 09:17:36AM +0800, Xiubo Li wrote: > Compare dentry name with case-exact name, return true if names > are same, or false. > > Reviewed-by: Jeff Layton > Signed-off-by: Xiubo Li Reviewed-by: Luis Chamberlain Luis