Re: Fix vm_map_msync

2019-08-30 Thread Samuel Thibault
guy fleury iteriteka, le ven. 30 août 2019 20:46:33 +0200, a ecrit: > Done! Much better, applied, thanks! Samuel

Re: Fix vm_map_msync

2019-08-30 Thread guy fleury iteriteka
Le ven. 30 août 2019 à 19:53, Samuel Thibault a écrit : > Hello, > > guy fleury iteriteka, le ven. 30 août 2019 19:15:33 +0200, a ecrit: > > See if this patch is good! > > I don't understand why it should be needed? > > > - if (map == VM_MAP_NULL) > > - KERN_INVALID_ARGUMENT; > >

Re: Fix vm_map_msync

2019-08-30 Thread Samuel Thibault
Hello, guy fleury iteriteka, le ven. 30 août 2019 19:15:33 +0200, a ecrit: > See if this patch is good! I don't understand why it should be needed? > - if (map == VM_MAP_NULL) > - KERN_INVALID_ARGUMENT; > +if (map == VM_MAP_NULL) > + return KERN_INVALID_ARGUMENT; P

Fix vm_map_msync

2019-08-30 Thread guy fleury iteriteka
hello hurd, See if this patch is good! thanks. From c13cb7a92c1b6d3be590950b075b5cb7104132b6 Mon Sep 17 00:00:00 2001 From: guy fleury iteriteka Date: Fri, 30 Aug 2019 18:52:33 +0200 Subject: [PATCH] Fix vm_map_msync:Force return KERN_INVALID_ARGUMENT and fix sync_flags flags check. * vm/vm_map