diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-11-30 23:15:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-11-30 23:15:55 +0000 |
commit | 2be548008c4fc4caa2167f7cad504f9aa01887d6 (patch) | |
tree | 6c5dfffc116a462bd96f22f4c2cd9b23b954b9e1 /sys/uvm/uvm_map.c | |
parent | 62614ee6dbb3fe02cab1473704dde6ed3a3627d2 (diff) |
temporarily neuter the syscall-callfrom check as a few people
haven't crossed over the ABI break as easily as expected.
Diffstat (limited to 'sys/uvm/uvm_map.c')
-rw-r--r-- | sys/uvm/uvm_map.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/uvm/uvm_map.c b/sys/uvm/uvm_map.c index 3791b155920..65cfb4575d5 100644 --- a/sys/uvm/uvm_map.c +++ b/sys/uvm/uvm_map.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_map.c,v 1.253 2019/11/29 06:34:45 deraadt Exp $ */ +/* $OpenBSD: uvm_map.c,v 1.254 2019/11/30 23:15:54 deraadt Exp $ */ /* $NetBSD: uvm_map.c,v 1.86 2000/11/27 08:40:03 chs Exp $ */ /* @@ -1823,8 +1823,8 @@ uvm_map_inentry_pc(vm_map_entry_t entry) { if (entry->protection & PROT_WRITE) return (0); /* not permitted */ - if ((entry->etype & UVM_ET_SYSCALL) == 0) - return (0); /* not permitted */ +// if ((entry->etype & UVM_ET_SYSCALL) == 0) +// return (0); /* not permitted */ return (1); } |