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 A917EC05027 for ; Tue, 14 Feb 2023 14:42:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233407AbjBNOmf (ORCPT ); Tue, 14 Feb 2023 09:42:35 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38144 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232822AbjBNOm3 (ORCPT ); Tue, 14 Feb 2023 09:42:29 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0DFCC233EC for ; Tue, 14 Feb 2023 06:42:29 -0800 (PST) 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 ams.source.kernel.org (Postfix) with ESMTPS id BF0D9B81DDD for ; Tue, 14 Feb 2023 14:42:27 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 915D6C433D2; Tue, 14 Feb 2023 14:42:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1676385746; bh=I5MIc6MM9QXD5jdrFO1awtvLE1Ii2eWvzUjvvLQmKI0=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=VeyjyDkSNxgQ5Riew9CFnb7q7veDa9tanbxKKxtE2wZeDRZ3ELpM0iJU7khzGbCOw c/1F+UtEyfepxM2lK4NCXsKd+aip2m1/WsD+cYQ8oJ1YBsm1Q5FRbO6RYxvW9U0lkN 2bj013xIlhI3n2g7CmXyhwjHyOQaQibzLdAdEYOBRCyw8Yrk/EPtZOKbHRTcxjK8RH 0s4MeTHrIOsB4+6N17TVFvobxHLpZrydtw8RI95H5lBBeqojOoE1uubeLnNP+OWd/Y UrlIP/ji3feRQ6HEShrWmz52K5AcEEhOdqpu08qdrARDZTjFIgmnvq5YXwkcrloe8D 01U+zv5KgMiaQ== Message-ID: <36ccc325-47fd-7ba8-9643-f489495510a6@kernel.org> Date: Tue, 14 Feb 2023 22:42:22 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCH 2/6] erofs: avoid tagged pointers to mark sync decompression Content-Language: en-US To: Gao Xiang , linux-erofs@lists.ozlabs.org, Yue Hu , Jeffle Xu Cc: LKML References: <20230204093040.97967-1-hsiangkao@linux.alibaba.com> <20230204093040.97967-2-hsiangkao@linux.alibaba.com> From: Chao Yu In-Reply-To: <20230204093040.97967-2-hsiangkao@linux.alibaba.com> 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 2023/2/4 17:30, Gao Xiang wrote: > We could just use a boolean in z_erofs_decompressqueue for sync > decompression to simplify the code. > > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,