From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39233) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQICK-0004r3-JI for qemu-devel@nongnu.org; Thu, 21 Jul 2016 13:55:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bQICJ-0003AT-Ny for qemu-devel@nongnu.org; Thu, 21 Jul 2016 13:55:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:32782) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQICJ-0003AP-Hl for qemu-devel@nongnu.org; Thu, 21 Jul 2016 13:55:47 -0400 Date: Thu, 21 Jul 2016 20:55:42 +0300 From: "Michael S. Tsirkin" Message-ID: <1469123413-20809-57-git-send-email-mst@redhat.com> References: <1469123413-20809-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1469123413-20809-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL v5 56/57] virtio: Update migration docs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , "Dr. David Alan Gilbert" , Cornelia Huck , Greg Kurz , Jason Wang From: "Dr. David Alan Gilbert" Remove references to register_savevm. Signed-off-by: Dr. David Alan Gilbert Reviewed-by: Cornelia Huck Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- docs/virtio-migration.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/virtio-migration.txt b/docs/virtio-migration.txt index cf66458..98a6b0f 100644 --- a/docs/virtio-migration.txt +++ b/docs/virtio-migration.txt @@ -28,7 +28,8 @@ virtio core virtio transport virtio device ----------- ---------------- ------------- save() function registered - via register_savevm() + via VMState wrapper on + device class virtio_save() <---------- ------> save_config() - save proxy device @@ -63,7 +64,8 @@ virtio core virtio transport virtio device ----------- ---------------- ------------- load() function registered - via register_savevm() + via VMState wrapper on + device class virtio_load() <---------- ------> load_config() - load proxy device -- MST