From patchwork Mon Dec 19 00:56:37 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robie Basak X-Patchwork-Id: 9479509 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 0E46460237 for ; Mon, 19 Dec 2016 00:56:48 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E9E55283E0 for ; Mon, 19 Dec 2016 00:56:47 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DCF4B28426; Mon, 19 Dec 2016 00:56:47 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id DC9BE283E0 for ; Mon, 19 Dec 2016 00:56:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753010AbcLSA4q (ORCPT ); Sun, 18 Dec 2016 19:56:46 -0500 Received: from a-painless.mh.aa.net.uk ([81.187.30.51]:33055 "EHLO a-painless.mh.aa.net.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750933AbcLSA4p (ORCPT ); Sun, 18 Dec 2016 19:56:45 -0500 Received: from 3.1.7.b.4.0.2.3.e.7.d.8.9.8.d.f.1.0.0.0.8.c.1.0.0.b.8.0.1.0.0.2.ip6.arpa ([2001:8b0:1c8:1:fd89:8d7e:3204:b713] helo=localhost) by a-painless.mh.aa.net.uk with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1cImFw-0006ZD-2e; Mon, 19 Dec 2016 00:56:44 +0000 Date: Mon, 19 Dec 2016 00:56:37 +0000 From: Robie Basak To: Krzysztof Kozlowski Cc: Kukjin Kim , linux-samsung-soc@vger.kernel.org, Nikolay Borisov Subject: [PATCH] ARM: exynos_defconfig: enable IP multicast Message-ID: <20161219005637.GI4624@mal.justgohome.co.uk> References: <20161218131912.GG4624@mal.justgohome.co.uk> <20161218164945.GA3662@kozik-lap> <20161219005224.GH4624@mal.justgohome.co.uk> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20161219005224.GH4624@mal.justgohome.co.uk> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Prior to Nikolay's commit dcd87999d, libnss-mdns (eg. to resolve "foo.local" on the LAN using mDNS) worked without CONFIG_IP_MULTICAST defined, but dcd87999d caused it to stop working without having CONFIG_IP_MULTICAST defined explicitly. Since exynos_defconfig did not previously define CONFIG_IP_MULTICAST, mDNS used to work for users building with just exynos_defconfig, but stopped working from dcd87999d. Define CONFIG_IP_MULTICAST explicitly in exynos_defconfig as it appears essential anyway. Signed-off-by: Robie Basak --- arch/arm/configs/exynos_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/exynos_defconfig b/arch/arm/configs/exynos_defconfig index 79c415c..12b8f69 100644 --- a/arch/arm/configs/exynos_defconfig +++ b/arch/arm/configs/exynos_defconfig @@ -43,6 +43,7 @@ CONFIG_PACKET=y CONFIG_UNIX=y CONFIG_NET_KEY=y CONFIG_INET=y +CONFIG_IP_MULTICAST=y CONFIG_IP_PNP=y CONFIG_IP_PNP_DHCP=y CONFIG_IP_PNP_BOOTP=y