Skip to content
Open
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
11 changes: 6 additions & 5 deletions packet_link_qualification/packet_link_qualification.proto
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,9 @@ message PacketInjectorConfiguration {
// if unspecified, the default value is 1500 bytes.
uint32 packet_size = 2;

// If true, the Layer 2 MTU of the underlying interface should be set to the
// packet size for the duration of the test.
// If true, the gnoi service must ensure the L2 MTU of the interface is set
Copy link

Choose a reason for hiding this comment

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

Ensure how?

Choose a reason for hiding this comment

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

gnoi service == device.

Checking what is programmed on dataplane/port and programming port on ASIC if needed.

// to a value greater than or equal to packet_size for the duration of the
// test.
bool set_mtu = 3;

// Loopback mode for this qualification.
Expand All @@ -194,9 +195,9 @@ message PmdLoopbackConfiguration {
}

message AsicLoopbackConfiguration {
// The L2 MTU of the interface must be set to the packet_size for the
// duration of the test.
uint32 packet_size = 2;
// The gnoi service must ensure the L2 MTU of the interface is set to a
// value greater than or equal to packet_size for the duration of the test.
uint32 packet_size = 1;
}
// GetRequest returns the status for the provided ids.
message GetRequest {
Expand Down
Loading