From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 75B7F263F5F for ; Fri, 28 Nov 2025 11:43:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764330195; cv=none; b=G4W88zPUuXNenY2AnukoLS8WGjq7NEkh+gIv96x7DZxA+Iyk6xRV08QB64CJaMqly2j+fj9shu6uW+4hv11nCM6fLxemLWsIWwUD+R25GLH6LXyLfp1iyw3XPG4aCyRDgXysoSJ+r2Vcz2KsrvuVts/vLDaMY58/kJJpNJjQLco= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764330195; c=relaxed/simple; bh=P1q5vgB4xcD4mDXF+HPQato11wVPRDdiW7VYmH75Yzo=; h=Message-ID:Date:MIME-Version:Cc:Subject:To:References:From: In-Reply-To:Content-Type; b=KhMbA11ZZ+tN2sQsNFNQO8VHl+KGY9oonR0vDvf6cgIPU2BAzM57onlq2WmqgoByAPUybh/GeRS5Sq6EO9Sz7AmoFCBmGtQ5S0AJ8P/VycrZ2NAVNvkgfYom4hS2720Prsq9e1eYmAe8o8oYmTPzP0Ceyiy0MDPObP3Xw9gspPc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=J9yRIziS; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="J9yRIziS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 942FAC4CEF1; Fri, 28 Nov 2025 11:43:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1764330194; bh=P1q5vgB4xcD4mDXF+HPQato11wVPRDdiW7VYmH75Yzo=; h=Date:Cc:Subject:To:References:From:In-Reply-To:From; b=J9yRIziSDPJtywXFpYVsn0+1w+Wkrv3Xxw7pZPB61Wt8dqVQI1GR3TaTtn8EUECT/ 9R3AUNg+L7LKhLcqz5m7fbJ4BqtRP20k09uGPcWC1qxRGrABq0sJAtCzYlArVYsIBe kd3cUCePSEUIt/aetgI0Abe5nLm0w/JaQNOt1Ycy+SkqdubRZGEwleR6JwDfwFc+/i TDB6JhKgz4V0G+WLydJBHML9Pw7hSMVATbBYvtw9Rr6AEfZG7sWUY2zdCqMF/1eBKq joI/d/pd1Od0jZMW4j+MSouLMKVR/onbvOpKX/vFPjW5yS2Huse+HHVjzvdQWdyJMw F4AQVK/3FH/VQ== Message-ID: Date: Fri, 28 Nov 2025 19:43:11 +0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Cc: chao@kernel.org, LKML Subject: Re: [PATCH] erofs: tidy up z_erofs_lz4_handle_overlap() To: Gao Xiang , linux-erofs@lists.ozlabs.org References: <20251125170102.3604700-1-hsiangkao@linux.alibaba.com> Content-Language: en-US From: Chao Yu In-Reply-To: <20251125170102.3604700-1-hsiangkao@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 11/26/25 01:01, Gao Xiang wrote: > - Add some useful comments to explain inplace I/Os and decompression; > > - Rearrange the code to get rid of one unnecessary goto. > > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,