[BACK]Return to linux_misc.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / compat / linux / common

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/compat/linux/common/linux_misc.c between version 1.125 and 1.126

version 1.125, 2004/04/21 02:37:20 version 1.126, 2004/08/01 22:44:10
Line 628  linux_sys_mprotect(l, v, retval)
Line 628  linux_sys_mprotect(l, v, retval)
 #endif  #endif
         if (!uvm_map_lookup_entry(map, start, &entry) || entry->start > start) {          if (!uvm_map_lookup_entry(map, start, &entry) || entry->start > start) {
                 vm_map_unlock(map);                  vm_map_unlock(map);
                 return EFAULT;                  return ENOMEM;
         }          }
         vm_map_unlock(map);          vm_map_unlock(map);
         return uvm_map_protect(map, start, end, prot, FALSE);          return uvm_map_protect(map, start, end, prot, FALSE);

Legend:
Removed from v.1.125  
changed lines
  Added in v.1.126

CVSweb <webmaster@jp.NetBSD.org>