[Qemu-devel] Ping [PATCH RFC v2 0/2] Fix UART serial implementation

2018-05-21 Thread Calvin Lee
w.org/QEMU/20180512000545.966-1-cyrus...@gmail.com/ Thank you, Calvin Lee

Re: [Qemu-devel] [PATCH RFC v2 2/2] PC Chipset: Send serial bytes at correct rate

2018-05-14 Thread Calvin Lee
> So the question is, why move it? If I understand what you've got, then > it's the same flag with the same semantics - but moving it you break > migration compatibility - so unless you need to, just leave it where it > is. Sorry if I did not make this clear. This commit will delay flushing the

[Qemu-devel] [PATCH RFC v2 2/2] PC Chipset: Send serial bytes at correct rate

2018-05-11 Thread Calvin Lee
This fixes bug in QEMU such that UART bytes would be sent immediatly after being put in the THR regardless of the UART frequency (and divisor). Now they will be sent at the appropriate rate. Signed-off-by: Calvin Lee --- I am not sure about VM migration here. I want to move a struct field from

[Qemu-devel] [PATCH RFC v2 0/2] Fix UART serial implementation

2018-05-11 Thread Calvin Lee
nt patches to a mailing list before, so I marked this patch-series as RFC. I would appreciate any comments you have. Also, I am not very confident in VM migration between versions, so I would appreciate if someone could help me make sure this is correct in my patches. v2: fix build Calvin Lee (2

[Qemu-devel] [PATCH RFC v2 1/2] PC Chipset: Improve serial divisor calculation

2018-05-11 Thread Calvin Lee
This fixes several problems I found in the UART serial implementation. Now all divisor values are allowed, while before divisor values of zero and below the base baud rate were rejected. All changes are in reference to http://www.sci.muni.cz/docs/pc/serport.txt Signed-off-by: Calvin Lee --- I

[Qemu-devel] [PATCH RFC 0/2] Fix UART serial implementation

2018-05-11 Thread Calvin Lee
nt patches to a mailing list before, so I marked this patch-series as RFC. I would appreciate any comments you have. Also, I am not very confident in VM migration between versions, so I would appreciate if someone could help me make sure this is correct in my patches. Much thanks, Calvin Lee Calvi

[Qemu-devel] [PATCH RFC 1/2] PC Chipset: Improve serial divisor calculation

2018-05-11 Thread Calvin Lee
This fixes several problems I found in the UART serial implementation. Now all divisor values are allowed, while before divisor values of zero and below the base baud rate were rejected. All changes are in reference to http://www.sci.muni.cz/docs/pc/serport.txt Signed-off-by: Calvin Lee --- I

[Qemu-devel] [PATCH RFC 2/2] PC Chipset: Send serial bytes at correct rate

2018-05-11 Thread Calvin Lee
This fixes bug in QEMU such that UART bytes would be sent immediatly after being put in the THR regardless of the UART frequency (and divisor). Now they will be sent at the appropriate rate. Signed-off-by: Calvin Lee --- I am not sure about VM migration here. I want to move a struct field from