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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2D208C433F5 for ; Tue, 19 Oct 2021 13:03:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0CE1561372 for ; Tue, 19 Oct 2021 13:03:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235814AbhJSNGB (ORCPT ); Tue, 19 Oct 2021 09:06:01 -0400 Received: from mail.kernel.org ([198.145.29.99]:49738 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230097AbhJSNGA (ORCPT ); Tue, 19 Oct 2021 09:06:00 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id DAA1061360; Tue, 19 Oct 2021 13:03:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1634648627; bh=I7JwFHSmv1BT930lTSC6hdElWCbCHQMERETOEA78i0k=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=PypRr6vTgk9g7BuW7HmQemLz1Sf8vLq9WneM3HZL0HS4l5YHlXjNOcmo3bvd4Rxxm sJymSzuPjxmz3AZ2SKr7IrWHJ0SkLy/CuCbcGxYDCcrN0aBLcx7YKqpqh/f8/22SQ0 kgAr/TIEYmLHLU3dNxhC9EQZeUINGLdhIMEzF43lkvsrVJHzInLHB5SkDUlo1+ghjm Taf/y1i/iR0FdkpYI4krHFAMWpl72LEBHVnre0nWa2UIXzQoh3rk+f1K7frfRtSoPO AXIJohp0sXPvDur0u24O2Sg6xPbJWwygnw4wHU1LPPSsnnIrkgPo3xMvT96++JE5qG x1hXCRI1hdcbQ== Message-ID: <88cc9caf-1d50-2d0f-de0e-09456339b996@kernel.org> Date: Tue, 19 Oct 2021 21:03:44 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.2.0 Subject: Re: [PATCH 6/7] erofs: rename some generic methods in decompressor Content-Language: en-US To: Gao Xiang , linux-erofs@lists.ozlabs.org, LKML Cc: Lasse Collin , Andrew Morton , Greg KH , Linus Torvalds , Gao Xiang References: <20211010213145.17462-1-xiang@kernel.org> <20211010213145.17462-7-xiang@kernel.org> From: Chao Yu In-Reply-To: <20211010213145.17462-7-xiang@kernel.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2021/10/11 5:31, Gao Xiang wrote: > From: Gao Xiang > > Previously, some LZ4 methods were named with `generic'. However, while > evaluating the effective LZMA approach, it seems they aren't quite > generic at all (e.g. no need preparing dstpages for most LZMA cases.) > > Avoid such naming instead. > > Signed-off-by: Gao Xiang Acked-by: Chao Yu Thanks,