Re: [Qemu-devel] [PATCH v3 1/5] block/ssh: Add ssh_has_filename_options_conflict()

2016-10-25 Thread Kevin Wolf
Am 17.10.2016 um 19:32 hat Ashijeet Acharya geschrieben: > We have 5 options plus ("server") option which is added in the next > patch that conflict with specifying a SSH filename. We need to iterate > over all the options to check whether its key has an "server." prefix. > > This iteration will h

[Qemu-devel] [PATCH v3 1/5] block/ssh: Add ssh_has_filename_options_conflict()

2016-10-17 Thread Ashijeet Acharya
We have 5 options plus ("server") option which is added in the next patch that conflict with specifying a SSH filename. We need to iterate over all the options to check whether its key has an "server." prefix. This iteration will help us adding the new option "server" easily. Signed-off-by: Ashij