It makes it possible to generate golang code from the SMA's protobuf definitions. Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I6f03bc2b602f93ea608597e863cb9e016b68f12e Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10279 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
13 lines
217 B
Protocol Buffer
13 lines
217 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sma.nvme;
|
|
|
|
option go_package = "spdk.io/sma/nvme";
|
|
|
|
message DeviceParameters {
|
|
// Physical function index
|
|
uint32 physical_id = 1;
|
|
// Virtual function index
|
|
uint32 virtual_id = 2;
|
|
}
|