Re: [kvm-devel] [PATCH] remove duplicate assignment in kvm_setup_pio()

2007-08-01 Thread Avi Kivity
Laurent Vivier wrote: > Line 1809 of kvm_main.c is useless, value is overwritten in line 1815: > Applied, thanks. -- error compiling committee.c: too many arguments to function - This SF.net email is sponsored by: Splu

[kvm-devel] [PATCH] remove duplicate assignment in kvm_setup_pio()

2007-08-01 Thread Laurent Vivier
Line 1809 of kvm_main.c is useless, value is overwritten in line 1815: 1809 now = min(count, PAGE_SIZE / size); 1810 1811 if (!down) 1812 in_page = PAGE_SIZE - offset_in_page(address); 1813 else 1814 in_page = offset_in_page(address) + size;