From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56086) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eyITf-0003zb-38 for qemu-devel@nongnu.org; Tue, 20 Mar 2018 10:43:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eyITZ-00080j-KR for qemu-devel@nongnu.org; Tue, 20 Mar 2018 10:43:03 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:58960 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eyITZ-00080X-GA for qemu-devel@nongnu.org; Tue, 20 Mar 2018 10:42:57 -0400 Date: Tue, 20 Mar 2018 16:42:55 +0200 From: "Michael S. Tsirkin" Message-ID: <1521556868-37974-40-git-send-email-mst@redhat.com> References: <1521556868-37974-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1521556868-37974-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL v3 39/51] postcopy-ram: add a stub for postcopy_request_shared_page List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Juan Quintela , "Dr. David Alan Gilbert" This fixes the build on systems without userfaultfd. Signed-off-by: Michael S. Tsirkin --- migration/postcopy-ram.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/migration/postcopy-ram.c b/migration/postcopy-ram.c index 146bc09..8e08ff9 100644 --- a/migration/postcopy-ram.c +++ b/migration/postcopy-ram.c @@ -928,6 +928,13 @@ int postcopy_ram_prepare_discard(MigrationIncomingState *mis) return -1; } +int postcopy_request_shared_page(struct PostCopyFD *pcfd, RAMBlock *rb, + uint64_t client_addr, uint64_t rb_offset) +{ + assert(0); + return -1; +} + int postcopy_ram_enable_notify(MigrationIncomingState *mis) { assert(0); -- MST