git: cc743b050acf - main - linux: drop unneeded casts

Edward Tomasz Napierala trasz at FreeBSD.org
Mon Feb 15 13:14:26 UTC 2021


The branch main has been updated by trasz:

URL: https://cgit.FreeBSD.org/src/commit/?id=cc743b050acf59862b268296d50923d6e5f0e86f

commit cc743b050acf59862b268296d50923d6e5f0e86f
Author:     Edward Tomasz Napierala <trasz at FreeBSD.org>
AuthorDate: 2021-02-15 12:34:10 +0000
Commit:     Edward Tomasz Napierala <trasz at FreeBSD.org>
CommitDate: 2021-02-15 13:14:15 +0000

    linux: drop unneeded casts
    
    No functional changes.
    
    Sponsored By:   The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D28533
---
 sys/amd64/linux/linux_machdep.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys/amd64/linux/linux_machdep.c b/sys/amd64/linux/linux_machdep.c
index c2aebcf7df19..e44f5c320c39 100644
--- a/sys/amd64/linux/linux_machdep.c
+++ b/sys/amd64/linux/linux_machdep.c
@@ -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


More information about the dev-commits-src-main mailing list