From patchwork Thu Sep 11 23:21:49 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hannes Frederic Sowa X-Patchwork-Id: 388441 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id D9043140078 for ; Fri, 12 Sep 2014 09:22:12 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753628AbaIKXWF (ORCPT ); Thu, 11 Sep 2014 19:22:05 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:45148 "EHLO out4-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751066AbaIKXWB (ORCPT ); Thu, 11 Sep 2014 19:22:01 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by gateway2.nyi.internal (Postfix) with ESMTP id 117D3209A4 for ; Thu, 11 Sep 2014 19:22:01 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute5.internal (MEProxy); Thu, 11 Sep 2014 19:22:01 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= stressinduktion.org; h=from:to:cc:subject:date:message-id :in-reply-to:references:in-reply-to:references; s=mesmtp; bh=p1f 8znmVC8AC6BhSdJP5O6TkfPM=; b=UDRiPqTqeuZmvoEBmCxYY391jlja1yZm5N/ 2hhgFKs8AUt5EaRsxUiVlzjlb0GBYU9yCQFqT4Vj4fHy9X21FhrQWYSaVZBlEz67 ZR6V86O2WVshyaeMHOolJiGnoBnmsoI+5DlfJDwTd7m04gM37sBj30nKTfGWu8w6 Gp0IZUWM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:cc:subject:date:message-id :in-reply-to:references:in-reply-to:references; s=smtpout; bh=p1 f8znmVC8AC6BhSdJP5O6TkfPM=; b=Jgc06BTMLKusWa74cwtLyB2JOzGFTLF0it 3SJjHZNxc/mRzd5wCSNif3Q58NgBDmUiHYW20pqXJCf6sqkwdZJ2HgDwxwHD3XhL Dyr1qE0bwovASHPIjGltHaKAfjleR4OT5IZBI/CCQgclx+zIchMAC6WZmaL2xygn 0PIdbJ4No= X-Sasl-enc: r/kYQnybtqAVUIFCUUP8sPHP6XvHijeUQNr1/kUhICMT 1410477720 Received: from k64.localdomain (unknown [213.55.184.147]) by mail.messagingengine.com (Postfix) with ESMTPA id 2A665C00915; Thu, 11 Sep 2014 19:22:00 -0400 (EDT) From: Hannes Frederic Sowa To: netdev@vger.kernel.org Cc: Eric Dumazet , Vlad Yasevich , Nicolas Dichtel Subject: [PATCH RFC 2/6] ipv6: no need to bump rt_genid_ipv6 on address change anymore Date: Fri, 12 Sep 2014 01:21:49 +0200 Message-Id: X-Mailer: git-send-email 1.9.3 In-Reply-To: References: In-Reply-To: References: Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org The fn_sernum is now modified on fib6_del events so we don't need to bump the ipv6 genid anymore. Cc: Eric Dumazet Cc: Vlad Yasevich Cc: Nicolas Dichtel Signed-off-by: Hannes Frederic Sowa --- net/ipv6/addrconf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index ad4598f..16ce390 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c @@ -4781,7 +4781,6 @@ static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp) break; } atomic_inc(&net->ipv6.dev_addr_genid); - rt_genid_bump_ipv6(net); } static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)