diff options
author | 2005-05-26 16:35:56 +0000 | |
---|---|---|
committer | 2005-05-26 16:35:56 +0000 | |
commit | 88cc454fff9beeb696fa4807826144751348f6e4 (patch) | |
tree | fb2bde8804da6c8d1680aa442897f9999546d2e7 | |
parent | use PF_LOG, PF_LOGALL instead of numeric constants (diff) | |
download | wireguard-openbsd-88cc454fff9beeb696fa4807826144751348f6e4.tar.xz wireguard-openbsd-88cc454fff9beeb696fa4807826144751348f6e4.zip |
Sync with uvm_mmap() api change.
-rw-r--r-- | sys/arch/mac68k/dev/grf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mac68k/dev/grf.c b/sys/arch/mac68k/dev/grf.c index 192ede24f2b..be73ed02b77 100644 --- a/sys/arch/mac68k/dev/grf.c +++ b/sys/arch/mac68k/dev/grf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grf.c,v 1.25 2003/09/23 16:51:11 millert Exp $ */ +/* $OpenBSD: grf.c,v 1.26 2005/05/26 16:35:56 miod Exp $ */ /* $NetBSD: grf.c,v 1.41 1997/02/24 06:20:04 scottr Exp $ */ /* @@ -366,7 +366,7 @@ grfmap(dev, addrp, p) error = uvm_mmap(&p->p_vmspace->vm_map, (vm_offset_t *)addrp, (vm_size_t)len, UVM_PROT_RW, UVM_PROT_RW, flags, (caddr_t)&vn, 0, - p->p_rlimit[RLIMIT_MEMLOCK].rlim_cur); + p->p_rlimit[RLIMIT_MEMLOCK].rlim_cur, p); /* Offset into page: */ *addrp += (unsigned long) gp->sc_grfmode->fboff & 0xfff; |