Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
152 changes: 81 additions & 71 deletions proto/firecracker.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions proto/firecracker.proto
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,18 @@ message CreateVMRequest {

// Whether the VM should be created by loading a snapshot.
bool LoadSnapshot = 16;

// Path to the file that contains the guest memory to be loaded.
string MemFilePath = 17;

// Path to the file that contains the VM state to be loaded.
string SnapshotPath = 18;

// Path to the disk device backing the container snapshot.
string ContainerSnapshotPath = 19;

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: please drop the blank lines here and above from the diff.

// Configuration for the backend that handles memory load. If this field is specified, `mem_file_path` is forbidden. Either `mem_backend` or `mem_file_path` must be present at a time.
MemoryBackend MemBackend = 20;
}

message CreateVMResponse {
Expand Down
Loading