From patchwork Wed Jul 24 01:56:10 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tuong Lien X-Patchwork-Id: 1135983 Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=dektech.com.au Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=dektech.com.au header.i=@dektech.com.au header.b="VzIZd0OK"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 45tdk65bvYz9s8m for ; Wed, 24 Jul 2019 11:56:30 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727777AbfGXB42 (ORCPT ); Tue, 23 Jul 2019 21:56:28 -0400 Received: from f0-dek.dektech.com.au ([210.10.221.142]:45790 "EHLO mail.dektech.com.au" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726000AbfGXB41 (ORCPT ); Tue, 23 Jul 2019 21:56:27 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.dektech.com.au (Postfix) with ESMTP id 2A93246577; Wed, 24 Jul 2019 11:56:24 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=dektech.com.au; h=x-mailer:message-id:date:date:subject:subject:from:from :received:received:received; s=mail_dkim; t=1563933384; bh=X/NiD 9F4ca5btl8KKqmDa7eqU6izIOjkoSf62MF/nDc=; b=VzIZd0OKCKe9WSE788haZ qUN3uWq35B256W1J5wi9eMe6kStIPOT1dFsoZaF6C1qeGer7kuA9tksjGeEwrk32 Yc+SXmDagEWoJ4USyOCm7tU/hEOMnQz3HwqwYyumPZumOj9w7gtt+Y6LpxvJL68V Hdfdnke5V7hr3lYD4tJUZ0= X-Virus-Scanned: amavisd-new at dektech.com.au Received: from mail.dektech.com.au ([127.0.0.1]) by localhost (mail2.dektech.com.au [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id xhPxE-DoUU5z; Wed, 24 Jul 2019 11:56:24 +1000 (AEST) Received: from mail.dektech.com.au (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.dektech.com.au (Postfix) with ESMTPS id 7CB6646579; Wed, 24 Jul 2019 11:56:23 +1000 (AEST) Received: from localhost.localdomain (unknown [14.161.14.188]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.dektech.com.au (Postfix) with ESMTPSA id 75A4546577; Wed, 24 Jul 2019 11:56:21 +1000 (AEST) From: Tuong Lien To: davem@davemloft.net, jon.maloy@ericsson.com, maloy@donjonn.com, ying.xue@windriver.com, netdev@vger.kernel.org Cc: tipc-discussion@lists.sourceforge.net Subject: [net-next 0/2] tipc: link changeover issues Date: Wed, 24 Jul 2019 08:56:10 +0700 Message-Id: <20190724015612.2518-1-tuong.t.lien@dektech.com.au> X-Mailer: git-send-email 2.13.7 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This patch series is to resolve some issues found with the current link changeover mechanism, it also includes an optimization for the link synching. Tuong Lien (2): tipc: optimize link synching mechanism tipc: fix changeover issues due to large packet net/tipc/link.c | 119 +++++++++++++++++++++++++++++++++++++++++++++++++------- net/tipc/msg.c | 59 ++++++++++++++++++++++++++++ net/tipc/msg.h | 28 ++++++++++++- net/tipc/node.c | 6 ++- net/tipc/node.h | 6 ++- 5 files changed, 199 insertions(+), 19 deletions(-)