From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out30-101.freemail.mail.aliyun.com (out30-101.freemail.mail.aliyun.com [115.124.30.101]) (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 90E96274B43 for ; Tue, 24 Feb 2026 10:34:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.101 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771929283; cv=none; b=CcQcsx4/Ill9hvHwZfgAGrof6OfRpMNA4EfZIJG22bC7MUUYj6J5L23+f8H6+HXn2B2GKQ0Yb2i/qZ1j352Uisb8quYegz5H+LoWueEedms8sH92k32QeZchOwK3mWuYFlgDTD3dX1+iHR1x/1igUyzTY5l72bArq3xoI54g+0s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771929283; c=relaxed/simple; bh=tWMw7RUloyjofP07a3EWiphf2k7v/sQ6e9GHNnOuMxo=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=Kq+BEe4LDa40q+pYTJZRNsiE8dHMWNnbobTVDHCySQMJiqkUzmdFTCqUj9Td7VLyXcQg5FpaXpzQBHmcrZ3sRy+2UE3O7m9cc30ZICQXS2IUxn0K0QRzozQ7F7AJRQcziXG6sZP7x8mXg2jB5dtGKX8npDfZIsC0BPnsWcvijo8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=ZorILKYT; arc=none smtp.client-ip=115.124.30.101 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="ZorILKYT" DKIM-Signature:v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1771929279; h=Message-ID:Date:MIME-Version:Subject:To:From:Content-Type; bh=dfK/h7ykdNIlNJihdZKk5J4vMG/oP2siVLcPbLZ1zSI=; b=ZorILKYTt38kDpEG97uyBoG91vYELMr6NPOQgGUOShlL73FQ8QqTnqjjxIIcw4EqVtGezEs+pQKPPyqNmWVBfNmW4CK3DDRy1NBa3G3DF12bcI37pYvy4kydVMYovT7i+7aAJximIN3fDApozuGPpy6sLdye9A0v8ud1YtO0h4U= Received: from 30.221.130.254(mailfrom:hsiangkao@linux.alibaba.com fp:SMTPD_---0Wzj9mZ1_1771929278 cluster:ay36) by smtp.aliyun-inc.com; Tue, 24 Feb 2026 18:34:38 +0800 Message-ID: <664fae30-9dd7-4f21-9143-072e81854336@linux.alibaba.com> Date: Tue, 24 Feb 2026 18:34:37 +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 Subject: Re: [PATCH] erofs: remove more unnecessary #ifdefs To: Ferry Meng , linux-erofs@lists.ozlabs.org Cc: LKML References: <20260224060207.49649-1-mengferry@linux.alibaba.com> From: Gao Xiang In-Reply-To: <20260224060207.49649-1-mengferry@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 2026/2/24 14:02, Ferry Meng wrote: > Many #ifdefs can be replaced with IS_ENABLED() to improve code > readability. No functional changes. > > Signed-off-by: Ferry Meng Reviewed-by: Gao Xiang Thanks, Gao Xiang