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 10AF2C433F5 for ; Thu, 19 May 2022 11:27:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232529AbiESL1r (ORCPT ); Thu, 19 May 2022 07:27:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47378 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229621AbiESL1q (ORCPT ); Thu, 19 May 2022 07:27:46 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 69FF837A30 for ; Thu, 19 May 2022 04:27:45 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id CB7B161B20 for ; Thu, 19 May 2022 11:27:44 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0A3AAC385AA; Thu, 19 May 2022 11:27:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1652959664; bh=iNoDGxMLFdCDEbqbHZkAgsEP87xmldbX8bJVs3NNCrM=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=bT/ZvvJu+Th5l6pSJFTdweeI/hxLMTlzS2tUOINtFItCLBLP7G8NG4A5sB/y3owyY uqWQ1jdzvrytm4bX/PgDBRPzSIff95didQBB+SBJkpYEnnkKzGSRtFJiNszTs0dol0 r/RO8RhneotCU2Q3d/bYKzDZPscY6qCLifmV85z85m/i3FDLQjsh2hF6DI8kLJ5f1d bk7JfChyQNtq88H4XlwNJYdz4dSTC4BQlyVIPq6PoIPEioMJwPzNCW3+DRUIcO4Tlm yUiI0RZLgR6tCgIfWg8xOq6ucXbugJr+sSzWp4lvgdDCHqnws4blstgm+6QziZfuSe h3ba38yO0EyAg== Message-ID: Date: Thu, 19 May 2022 19:27:39 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.9.0 Subject: Re: [f2fs-dev] [PATCH v5 2/8] f2fs: Simplify the handling of cached insensitive names Content-Language: en-US To: Gabriel Krisman Bertazi , tytso@mit.edu, adilger.kernel@dilger.ca, jaegeuk@kernel.org, ebiggers@kernel.org Cc: linux-ext4@vger.kernel.org, kernel@collabora.com, linux-f2fs-devel@lists.sourceforge.net References: <20220518172320.333617-1-krisman@collabora.com> <20220518172320.333617-3-krisman@collabora.com> From: Chao Yu In-Reply-To: <20220518172320.333617-3-krisman@collabora.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On 2022/5/19 1:23, Gabriel Krisman Bertazi wrote: > Keeping it as qstr avoids the unnecessary conversion in f2fs_match > > Signed-off-by: Gabriel Krisman Bertazi Reviewed-by: Chao Yu Thanks,