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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 1DAD1C77B73 for ; Thu, 20 Apr 2023 13:07:10 +0000 (UTC) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ppTza-0006tF-2y; Thu, 20 Apr 2023 09:06:30 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ppTzX-0006sX-Ao; Thu, 20 Apr 2023 09:06:27 -0400 Received: from forwardcorp1b.mail.yandex.net ([2a02:6b8:c02:900:1:45:d181:df01]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ppTzT-0008U5-PD; Thu, 20 Apr 2023 09:06:27 -0400 Received: from mail-nwsmtp-smtp-corp-main-11.iva.yp-c.yandex.net (mail-nwsmtp-smtp-corp-main-11.iva.yp-c.yandex.net [IPv6:2a02:6b8:c0c:2cab:0:640:424b:0]) by forwardcorp1b.mail.yandex.net (Yandex) with ESMTP id D09DA607E8; Thu, 20 Apr 2023 16:06:13 +0300 (MSK) Received: from [IPV6:2a02:6b8:b081:b58f::1:1d] (unknown [2a02:6b8:b081:b58f::1:1d]) by mail-nwsmtp-smtp-corp-main-11.iva.yp-c.yandex.net (smtpcorp/Yandex) with ESMTPSA id C6esbv05RGk0-amLgJV2z; Thu, 20 Apr 2023 16:06:13 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex-team.ru; s=default; t=1681995973; bh=4LwVTglswQiCN7opsx7aCXZkXPGM4Nsh4g/MMX21oc0=; h=From:In-Reply-To:Cc:Date:References:To:Subject:Message-ID; b=gQZH/3PAIJEzV0779VsrTttKG5+FxgRKP/E1Rx7UhttLR44+nyKz7ybKmtUdditIg 4w/mEGfAttt4DMWSryApn4+7pRttYv5w7sCbrRVrRfN1CUO8HPxY2eoxxvtaYWvHYh rsHM62SiunZsbnOcw6Li+ZdB6Rn3+aHOATgZRlLw= Authentication-Results: mail-nwsmtp-smtp-corp-main-11.iva.yp-c.yandex.net; dkim=pass header.i=@yandex-team.ru Message-ID: <59bb09cf-0311-fe65-0cfe-17a8074ca449@yandex-team.ru> Date: Thu, 20 Apr 2023 16:06:12 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: [PATCH 09/43] migration: Move migrate_use_zero_copy_send() to options.c Content-Language: en-US To: Juan Quintela , qemu-devel@nongnu.org Cc: David Hildenbrand , John Snow , Stefan Hajnoczi , qemu-block@nongnu.org, Hailiang Zhang , Fam Zheng , "Michael S. Tsirkin" , "Dr. David Alan Gilbert" , Eric Blake References: <20230302163410.11399-1-quintela@redhat.com> <20230302163410.11399-10-quintela@redhat.com> From: Vladimir Sementsov-Ogievskiy In-Reply-To: <20230302163410.11399-10-quintela@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Received-SPF: pass client-ip=2a02:6b8:c02:900:1:45:d181:df01; envelope-from=vsementsov@yandex-team.ru; helo=forwardcorp1b.mail.yandex.net X-Spam_score_int: -37 X-Spam_score: -3.8 X-Spam_bar: --- X-Spam_report: (-3.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, NICE_REPLY_A=-1.669, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org On 02.03.23 19:33, Juan Quintela wrote: > Once that we are there, we rename the function to > migrate_zero_copy_send() to be consistent with all other capabilities. > > We can remove the CONFIG_LINUX guard. We already check that we can't > setup this capability in migrate_caps_check(). > > Signed-off-by: Juan Quintela Reviewed-by: Vladimir Sementsov-Ogievskiy -- Best regards, Vladimir