From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-188.mta1.migadu.com (out-188.mta1.migadu.com [95.215.58.188]) (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 A0CB03F7E89 for ; Wed, 25 Mar 2026 17:33:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.188 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774460036; cv=none; b=mNsV1AkZOkp8QnOL/9RJIa20kM5J4wRzuQRdy/Z6gQHWXQFJjzM8xyxG6mkec9pl9ycF0qVzTuQhmtf5kcP3n0OhAHqwjTNvLQ0McYfOSKuwCNK8sjG0z1z4nnRkuPtZAD2UyUhiSR/yGARLG0GBu3FRxd5QDw8B0VJLPE3hhDw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774460036; c=relaxed/simple; bh=4M11YbD9z8oBJeyAOn0ddq/b5r2GHRThYIozQUFrkts=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=dPwkXbc2hdRtewMb3zC4Rc4V/Etuzed7eeMANagVMk1ucWus4lRxzvXMB1CmKKd5vlotDaBwSl0cTTp42LdSbiaTMJZXvSCNbpg5AfEYpQiqobfvGbdygAlHi9p0D1dKAXcpFIAgy4ZjvKaWkNJlR93W8MM1hy4mqxEV4yY7HYQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=s0FuTW3y; arc=none smtp.client-ip=95.215.58.188 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="s0FuTW3y" Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1774460032; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4M11YbD9z8oBJeyAOn0ddq/b5r2GHRThYIozQUFrkts=; b=s0FuTW3yvHIwga1XtzaU8BcnhKWu5WJCZJD5aEMvkh5qqyqaYeFcEtV1nDgxBHIE1YT4XV q9S5c9E7ARrXc+WFV328kEOvjSusMjPW481dDnl2krKhnaKanmnFhob+/UJ1reqiNhtwwm +hf7+3E9aJ+ecELywX88T4bAMqwWsCw= Date: Wed, 25 Mar 2026 10:33:24 -0700 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH 03/11 net-next v5] ipv6: replace IS_BUILTIN(CONFIG_IPV6) with IS_ENABLED(CONFIG_IPV6) To: Fernando Fernandez Mancera Cc: =?UTF-8?Q?Ricardo_B=2E_Marli=C3=A8re?= , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman , David Ahern , Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Eduard Zingerman , Song Liu , Yonghong Song , John Fastabend , KP Singh , Stanislav Fomichev , Hao Luo , Jiri Olsa , linux-kernel@vger.kernel.org, netdev@vger.kernel.org, bpf@vger.kernel.org References: <20260325120928.15848-1-fmancera@suse.de> <20260325120928.15848-4-fmancera@suse.de> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Martin KaFai Lau In-Reply-To: <20260325120928.15848-4-fmancera@suse.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 3/25/26 5:08 AM, Fernando Fernandez Mancera wrote: > As IPv6 is built-in only, it does not make sense to continue using > IS_BUILTIN(CONFIG_IPV6). Therefore, replace it with IS_ENABLED() when > necessary and drop it if it isn't valid anymore. Acked-by: Martin KaFai Lau