Re: [PATCH] The patch solves the type error of the parameter âoffâ in syscall mmap on the ARM64 platform.

From: David Howells
Date: Wed Apr 24 2019 - 04:31:41 EST


Will Deacon <will.deacon@xxxxxxx> wrote:

> - unsigned long, fd, off_t, off)
> + unsigned long, fd, off_t, pgoff)
> {
> + unsigned long off = pgoff;
> +

Would loff_t be better?

David