Re: [Qemu-devel] [PATCH v3] s390: autodetect map private

2012-06-18 Thread Alexander Graf
On 15.06.2012, at 17:10, Christian Borntraeger wrote: > By default qemu will use MAP_PRIVATE for guest pages. This will write > protect pages and thus break on s390 systems that dont support this feature. > Therefore qemu has a hack to always use MAP_SHARED for s390. But MAP_SHARED > has other pr

Re: [Qemu-devel] [PATCH v3] s390: autodetect map private

2012-06-15 Thread Jan Kiszka
On 2012-06-15 17:10, Christian Borntraeger wrote: > By default qemu will use MAP_PRIVATE for guest pages. This will write > protect pages and thus break on s390 systems that dont support this feature. > Therefore qemu has a hack to always use MAP_SHARED for s390. But MAP_SHARED > has other problems

[Qemu-devel] [PATCH v3] s390: autodetect map private

2012-06-15 Thread Christian Borntraeger
By default qemu will use MAP_PRIVATE for guest pages. This will write protect pages and thus break on s390 systems that dont support this feature. Therefore qemu has a hack to always use MAP_SHARED for s390. But MAP_SHARED has other problems (no dirty pages tracking, a lot more swap overhead etc.)