selftests/vm: Set mmap()'s fd as -1 for MAP_ANONYMOUS flag
SeongJae Park authored

Man page of mmap() says that portable applications should ensure fd
argument to be -1 if MAP_ANONYMOUS flag is set as below:
```
The  mapping is not backed by any file; its contents are initialized to
zero.  The fd and offset arguments are ignored; however, some
implementations require  fd  to be  -1  if  MAP_ANONYMOUS  (or
MAP_ANON)  is specified, and portable applications
should ensure this.
```

However, few mmap() calls under selftests/vm/ uses 0 as fd though they
use MAP_ANONYMOUS flag.  This commit changes the argument to be -1 as
recommended.
Signed-off-by: default avatarSeongJae Park <sj38.park@gmail.com>
Acked-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarShuah Khan <shuahkh@osg.samsung.com>
70d1a4e6
Name Last commit Last update
Documentation Merge tag 'docs-4.11-fixes' of git://git.lwn.net/linux
arch Merge tag 'kvm-4.11-2' of git://git.kernel.org/pub/scm/virt/kvm/kvm
block Merge branch 'for-linus' of git://git.kernel.dk/linux-block
certs certs: Add a secondary system keyring that can be added to dynamically
crypto Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
drivers Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
firmware WHENCE: use https://linuxtv.org for LinuxTV URLs
fs Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
include Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
init sched/headers: Prepare to move _init() prototypes from <linux/sched.h> to <linux/sched/init.h>
ipc Merge branch 'WIP.sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
kernel Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
lib Merge branch 'WIP.sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
mm Merge branch 'rebased-statx' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
net Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
samples Merge branch 'rebased-statx' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
scripts objtool, modules: Discard objtool annotation sections for modules
security Merge branch 'WIP.sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
sound sched/headers: Prepare to move signal wakeup & sigpending methods from <linux/sched.h> into <linux/sched/signal.h>
tools selftests/vm: Set mmap()'s fd as -1 for MAP_ANONYMOUS flag
usr kbuild: initramfs cleanup, set target from Kconfig
virt Merge tag 'kvm-4.11-2' of git://git.kernel.org/pub/scm/virt/kvm/kvm
.cocciconfig scripts: add Linux .cocciconfig for coccinelle
.get_maintainer.ignore Add hch to .get_maintainer.ignore
.gitattributes .gitattributes: set git diff driver for C source code files
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Linux kernel
============

This file was moved to Documentation/admin-guide/README.rst

Please notice that there are several guides for kernel developers and users.
These guides can be rendered in a number of formats, like HTML and PDF.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.

There are various text files in the Documentation/ subdirectory,
several of them using the Restructured Text markup notation.
See Documentation/00-INDEX for a list of what is contained in each file.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.