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=-3.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS, 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 ED781C169C4 for ; Mon, 11 Feb 2019 03:54:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BB14021479 for ; Mon, 11 Feb 2019 03:54:25 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=alliedtelesis.co.nz header.i=@alliedtelesis.co.nz header.b="rC23iQYo" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726941AbfBKDyS (ORCPT ); Sun, 10 Feb 2019 22:54:18 -0500 Received: from gate2.alliedtelesis.co.nz ([202.36.163.20]:38890 "EHLO gate2.alliedtelesis.co.nz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726102AbfBKDyR (ORCPT ); Sun, 10 Feb 2019 22:54:17 -0500 Received: from mmarshal3.atlnz.lc (mmarshal3.atlnz.lc [10.32.18.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by gate2.alliedtelesis.co.nz (Postfix) with ESMTPS id 02D86806A8; Mon, 11 Feb 2019 16:54:15 +1300 (NZDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alliedtelesis.co.nz; s=mail181024; t=1549857255; bh=nlIUaIN7SSb56zKhDUggf/vi13Ji6xlM/Rl46p5GXUQ=; h=From:To:Cc:Subject:Date; b=rC23iQYoREImjQtVOLCmIY0HZ2eo29Rfjf64B1tzPRdxztZ8dzNHkBue0R1ovf++5 H3o2RhGtjJrCjmYkpjpfa6mRyt9yrmTeVQii9r/+427UZ8177+LJpqVPwdWuuRLC6b 0WKRzucnn2XMoajqmhOFoRDPgB0axL++So/ddf2qoCBVo7nKYXwa1tkSIxhBlN8L34 /BydQj/yVjlPEGTsJy/3jWI9d93r+VPB8tfIPwZSdEKgYaxRaMCgi31GZAYl+nxNUt qdjUbAzpmCYugcu1L8X/fwgkoBsxJICQ0TZoVoRdzisf7l3qyWtaf3re9W5Mw1lWuo VIUTzy6++Feiw== Received: from smtp (Not Verified[10.32.16.33]) by mmarshal3.atlnz.lc with Trustwave SEG (v7,5,8,10121) id ; Mon, 11 Feb 2019 16:54:15 +1300 Received: from callums-dl.ws.atlnz.lc (callums-dl.ws.atlnz.lc [10.33.22.12]) by smtp (Postfix) with ESMTP id CD8B313EEB6; Mon, 11 Feb 2019 16:54:14 +1300 (NZDT) Received: by callums-dl.ws.atlnz.lc (Postfix, from userid 1764) id C50143A09E6; Mon, 11 Feb 2019 16:54:14 +1300 (NZDT) From: Callum Sinclair To: davem@davemloft.net, kuznet@ms2.inr.ac.ru, yoshfuji@linux-ipv6.org, nikolay@cumulusnetworks.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: nicolas.dichtel@6wind.com, Callum Sinclair Subject: [PATCH net-next v3] ipmr: ip6mr: Create new sockopt to clear mfc cache or vifs Date: Mon, 11 Feb 2019 16:54:11 +1300 Message-Id: <20190211035412.29218-1-callum.sinclair@alliedtelesis.co.nz> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable x-atlnz-ls: pat Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Created a way to clear the multicast forwarding cache on a socket without having to either remove the entries manually using the delete entry socket option or destroy and recreate the multicast socket. Calling the socket option MRT_FLUSH will allow any combination of the four flag options to be cleared. MRT_FLUSH_MFC will clear all non static mfc entries MRT_FLUSH_MFC_STATIC will clear all static mfc entries MRT_FLUSH_VIFS will clear all non static interfaces MRT_FLUSH_VIFS_STATIC will clear all static interfaces. Callum Sinclair (1): ipmr: ip6mr: Create new sockopt to clear mfc cache or vifs include/uapi/linux/mroute.h | 9 ++++- include/uapi/linux/mroute6.h | 9 ++++- net/ipv4/ipmr.c | 73 ++++++++++++++++++++------------- net/ipv6/ip6mr.c | 78 +++++++++++++++++++++++------------- 4 files changed, 112 insertions(+), 57 deletions(-) --=20 2.20.1