Re: [PATCH v2] Fix parameter type in vhost migration log path

2020-06-09 Thread Laurent Vivier
Le 07/05/2020 à 23:37, Raphael Norwitz a écrit : > The ‘enable’ parameter to the vhost_migraion_log() function is given as > an int, but "true"/"false" values are passed in wherever it is invoked. > Inside the function itself it is only ever compared with bool values. > Therefore the parameter valu

Re: [PATCH v2] Fix parameter type in vhost migration log path

2020-05-07 Thread Eric Blake
On 5/7/20 4:37 PM, Raphael Norwitz wrote: The ‘enable’ parameter to the vhost_migraion_log() function is given as typo: migration Presumably, the maintainer can fix this rather than needing you to send a v3... an int, but "true"/"false" values are passed in wherever it is invoked. Inside t

Re: [PATCH v2] Fix parameter type in vhost migration log path

2020-05-07 Thread Eric Blake
On 5/7/20 4:37 PM, Raphael Norwitz wrote: The ‘enable’ parameter to the vhost_migraion_log() function is given as an int, but "true"/"false" values are passed in wherever it is invoked. Inside the function itself it is only ever compared with bool values. Therefore the parameter value itself shou

[PATCH v2] Fix parameter type in vhost migration log path

2020-05-07 Thread Raphael Norwitz
The ‘enable’ parameter to the vhost_migraion_log() function is given as an int, but "true"/"false" values are passed in wherever it is invoked. Inside the function itself it is only ever compared with bool values. Therefore the parameter value itself should be changed to bool. Signed-off-by: Rapha