Lines Matching refs:is
17 4. Boot the guest and ensure that the AF_VSOCK transport is enabled.
40 however, is deferred to Kernel Memory Leak Detector. It is recommended to enable
56 'vsock_perf' is a simple tool to measure vsock performance. It works in
58 starts data transmission to the receiver. After data processing is done,
63 # connect to CID 2, port 1234, send 1G of data, tx buf size is 1M
70 A is calculated as "number of bits to send" / "time in tx loop"
73 # listen port 1234, rx buf size is 1M, socket buf size is 1G, SO_RCVLOWAT is 64K
83 A is calculated as "number of received bits" / "time in rx loop".
84 B is time, spent in 'read()' system call(excluding 'poll()')
85 C is number of 'poll()' wake ups with POLLIN bit set.
86 D is B / C, e.g. average amount of time, spent in single 'read()'.