linux: drop unneeded casts

No functional changes.

Sponsored By:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D28533

(cherry picked from commit cc743b050a)
This commit is contained in:
Edward Tomasz Napierala 2021-02-15 12:34:10 +00:00 committed by Dmitry Chagin
parent 721d0a045a
commit ece62f6117

View file

@ -136,7 +136,7 @@ int
linux_mmap2(struct thread *td, struct linux_mmap2_args *args)
{
return (linux_mmap_common(td, PTROUT(args->addr), args->len, args->prot,
return (linux_mmap_common(td, args->addr, args->len, args->prot,
args->flags, args->fd, args->pgoff));
}
@ -144,14 +144,14 @@ int
linux_mprotect(struct thread *td, struct linux_mprotect_args *uap)
{
return (linux_mprotect_common(td, PTROUT(uap->addr), uap->len, uap->prot));
return (linux_mprotect_common(td, uap->addr, uap->len, uap->prot));
}
int
linux_madvise(struct thread *td, struct linux_madvise_args *uap)
{
return (linux_madvise_common(td, PTROUT(uap->addr), uap->len, uap->behav));
return (linux_madvise_common(td, uap->addr, uap->len, uap->behav));
}
int