Re: [Qemu-devel] [PATCH v2 3/3] postcopy: drop unnecessary conditions

2018-03-20 Thread Michael S. Tsirkin
On Tue, Mar 20, 2018 at 07:17:35PM +0200, Michael S. Tsirkin wrote: > We have our own copy of unistd so there is no > need to check for symbols present there. > > Signed-off-by: Michael S. Tsirkin Self-Nack pls ignore - we do not have unistd.h on all systems unfortunately. Will send v3 without

Re: [Qemu-devel] [PATCH v2 3/3] postcopy: drop unnecessary conditions

2018-03-20 Thread Michael S. Tsirkin
On Tue, Mar 20, 2018 at 05:20:04PM +, Peter Maydell wrote: > On 20 March 2018 at 17:17, Michael S. Tsirkin wrote: > > We have our own copy of unistd so there is no > > need to check for symbols present there. > > > > Signed-off-by: Michael S. Tsirkin > > I just sent a mail in the other threa

Re: [Qemu-devel] [PATCH v2 3/3] postcopy: drop unnecessary conditions

2018-03-20 Thread Peter Maydell
On 20 March 2018 at 17:17, Michael S. Tsirkin wrote: > We have our own copy of unistd so there is no > need to check for symbols present there. > > Signed-off-by: Michael S. Tsirkin I just sent a mail in the other thread about this, but we only have our own copy of unistd if the host architectur

[Qemu-devel] [PATCH v2 3/3] postcopy: drop unnecessary conditions

2018-03-20 Thread Michael S. Tsirkin
We have our own copy of unistd so there is no need to check for symbols present there. Signed-off-by: Michael S. Tsirkin --- migration/postcopy-ram.c | 4 +--- tests/migration-test.c | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/migration/postcopy-ram.c b/migration/pos