From patchwork Tue Jun 8 08:23:24 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhang Chen X-Patchwork-Id: 12305839 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=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=ham 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 3B0EFC4743D for ; Tue, 8 Jun 2021 08:34:45 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id E4BE16124B for ; Tue, 8 Jun 2021 08:34:44 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E4BE16124B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:59776 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lqXC7-0007oM-TD for qemu-devel@archiver.kernel.org; Tue, 08 Jun 2021 04:34:44 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35376) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lqX8Q-0003sI-JT for qemu-devel@nongnu.org; Tue, 08 Jun 2021 04:30:59 -0400 Received: from mga07.intel.com ([134.134.136.100]:62324) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lqX8O-000084-77 for qemu-devel@nongnu.org; Tue, 08 Jun 2021 04:30:54 -0400 IronPort-SDR: WSaqhRpaiGE6XFACRPHlyzqwJHNAF9VXp/OoPKLlyaqqIdDWCQlZcrv2o5gJt0VCDOvpK57yLO Wqna9PsfAJQw== X-IronPort-AV: E=McAfee;i="6200,9189,10008"; a="268653419" X-IronPort-AV: E=Sophos;i="5.83,257,1616482800"; d="scan'208";a="268653419" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jun 2021 01:30:39 -0700 IronPort-SDR: n80AieZseYkQNbJcbsTPKTlX4fXvue8GwJLX0E/Et+EjJJnx2BL40bC17e0a4AsR2QPeCkyLxR 7HiXDlX61Yyg== X-IronPort-AV: E=Sophos;i="5.83,257,1616482800"; d="scan'208";a="481862883" Received: from unknown (HELO localhost.localdomain) ([10.239.13.19]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jun 2021 01:30:38 -0700 From: Zhang Chen To: Jason Wang , qemu-dev Subject: [PATCH 0/7] COLO proxy patch Date: Tue, 8 Jun 2021 16:23:24 +0800 Message-Id: <20210608082331.1949117-1-chen.zhang@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Received-SPF: pass client-ip=134.134.136.100; envelope-from=chen.zhang@intel.com; helo=mga07.intel.com X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Zhang Chen , Li Zhijian , Zhang Chen Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Hi Jason, Please help me merge the COLO proxy patch to net branch. Thanks Chen Rao, Lei (7): Remove some duplicate trace code. Fix the qemu crash when guest shutdown during checkpoint Optimize the function of filter_send Remove migrate_set_block_enabled in checkpoint Add a function named packet_new_nocopy for COLO. Add the function of colo_compare_cleanup Fixed calculation error of pkt->header_size in fill_pkt_tcp_info() migration/colo.c | 6 ------ migration/migration.c | 4 ++++ net/colo-compare.c | 25 +++++++++++-------------- net/colo-compare.h | 1 + net/colo.c | 25 +++++++++++++++++-------- net/colo.h | 1 + net/filter-mirror.c | 8 ++++---- net/filter-rewriter.c | 3 +-- net/net.c | 4 ++++ softmmu/runstate.c | 1 + 10 files changed, 44 insertions(+), 34 deletions(-)