From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BB1D4C2D0F2 for ; Wed, 1 Apr 2020 16:24:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 60956214D8 for ; Wed, 1 Apr 2020 16:24:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585758264; bh=JVZ7z593ww74+XvoIIrY0sWE03rYwLNbZRMTrb7efxA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=CPHCZA41ulQleoix3LQurkxLlOeacQle3HPwBJavEDwnmHXK44vdpSH+xVorE4k4z 58bxDNZaIEpK9SZIlasLVXAOhEYjSkQyt7HKvQVbDRcRct6Oia6h72CGdaRaKJjM7d IeKfciDir6Vqk4d/q3h3ufxj6R7aIkzOmunhgs4Y= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387701AbgDAQYX (ORCPT ); Wed, 1 Apr 2020 12:24:23 -0400 Received: from mail.kernel.org ([198.145.29.99]:47880 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387687AbgDAQYS (ORCPT ); Wed, 1 Apr 2020 12:24:18 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8378F212CC; Wed, 1 Apr 2020 16:24:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585758258; bh=JVZ7z593ww74+XvoIIrY0sWE03rYwLNbZRMTrb7efxA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=X15CyQeILb2yueqLwMR32DKE51TFyNUEOycra0v5gdmyNIbwUMW05zYOadcLbLaPH 4716nefRQ7wK66MyWc8U48ewRRQ3E0SwBHxhq87qPCFCwzrB4oNeCX+zM/oDrGHb3S lqIky8fT3I2LnX9BPWiC8AfF5g0W33GY02LHQOd0= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Taehee Yoo , "David S. Miller" Subject: [PATCH 4.19 032/116] hsr: set .netnsok flag Date: Wed, 1 Apr 2020 18:16:48 +0200 Message-Id: <20200401161546.496770041@linuxfoundation.org> X-Mailer: git-send-email 2.26.0 In-Reply-To: <20200401161542.669484650@linuxfoundation.org> References: <20200401161542.669484650@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Taehee Yoo [ Upstream commit 09e91dbea0aa32be02d8877bd50490813de56b9a ] The hsr module has been supporting the list and status command. (HSR_C_GET_NODE_LIST and HSR_C_GET_NODE_STATUS) These commands send node information to the user-space via generic netlink. But, in the non-init_net namespace, these commands are not allowed because .netnsok flag is false. So, there is no way to get node information in the non-init_net namespace. Fixes: f421436a591d ("net/hsr: Add support for the High-availability Seamless Redundancy protocol (HSRv0)") Signed-off-by: Taehee Yoo Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/hsr/hsr_netlink.c | 1 + 1 file changed, 1 insertion(+) --- a/net/hsr/hsr_netlink.c +++ b/net/hsr/hsr_netlink.c @@ -476,6 +476,7 @@ static struct genl_family hsr_genl_famil .name = "HSR", .version = 1, .maxattr = HSR_A_MAX, + .netnsok = true, .module = THIS_MODULE, .ops = hsr_ops, .n_ops = ARRAY_SIZE(hsr_ops),