summary refs log tree commit diff
path: root/protos/src
diff options
context:
space:
mode:
authorMatt Delco <delco@chromium.org>2019-09-25 10:51:20 -0700
committerCommit Bot <commit-bot@chromium.org>2019-10-23 06:21:58 +0000
commit3156937410b99e7b27283c6dc566e72ca4de53ab (patch)
tree946118c7993251869106d1c03568ec46a9807179 /protos/src
parent4fad33b679e0d4230f5bf0a6b8365321c1ef6e60 (diff)
downloadcrosvm-3156937410b99e7b27283c6dc566e72ca4de53ab.tar
crosvm-3156937410b99e7b27283c6dc566e72ca4de53ab.tar.gz
crosvm-3156937410b99e7b27283c6dc566e72ca4de53ab.tar.bz2
crosvm-3156937410b99e7b27283c6dc566e72ca4de53ab.tar.lz
crosvm-3156937410b99e7b27283c6dc566e72ca4de53ab.tar.xz
crosvm-3156937410b99e7b27283c6dc566e72ca4de53ab.tar.zst
crosvm-3156937410b99e7b27283c6dc566e72ca4de53ab.zip
crosvm: delete resume response from protobuf
The resume response was deleted in a earlier change.  This change
removes the message type from the proto file and adjusts crosvm
so it can still build after this removal.

BUG=None
TEST=build and run.

Change-Id: I27d36a51b1e7eb59258d23da38199b86d7cb3659
Signed-off-by: Matt Delco <delco@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1825260
Reviewed-by: Zach Reizner <zachr@chromium.org>
Reviewed-by: Dylan Reid <dgreid@chromium.org>
Diffstat (limited to 'protos/src')
-rw-r--r--protos/src/plugin.proto4
1 files changed, 1 insertions, 3 deletions
diff --git a/protos/src/plugin.proto b/protos/src/plugin.proto
index de76089..332ed5d 100644
--- a/protos/src/plugin.proto
+++ b/protos/src/plugin.proto
@@ -370,8 +370,6 @@ message VcpuResponse  {
         }
     }
 
-    message Resume {}
-
     message GetState {
         // The in memory representation of a struct kvm_regs, struct kvm_sregs,
         // struct kvm_fpu, struct kvm_debugregs, struct kvm_lapic_state,
@@ -399,7 +397,7 @@ message VcpuResponse  {
     // VcpuRequest.
     oneof message {
         Wait wait = 2;
-        Resume resume = 3;
+        // resume was 3 but no longer gets a reply.
         GetState get_state = 4;
         SetState set_state = 5;
         GetMsrs get_msrs = 6;