On 04/29/2017 01:23 AM, ali saeedi wrote: > Hi > what does 'bytes_xfer' and 'xfer_limit' mean? > I am new in qemu. > thanks a lot >
The exact meaning is going to change depending on where you are looking. As advice for mailing a technical list, please be prepared with code excerpts from the files you are investigating and provide filenames and line numbers so that your question can be answered. As for your question: 'bytes_xfer' is likely short for "Bytes Transferred" and counts the number of bytes sent over a socket or stream. 'xfer_limit' is likely short for "Transfer Limit" and counts either a total or per-time-slice count of how many bytes can be transferred before we hit some kind of quota, to avoid saturating resources. --js