Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:fs\statfs.c Create Date:2022-07-28 20:12:22
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:flags_by_mnt

Proto:static int flags_by_mnt(int mnt_flags)

Type:int

Parameter:

TypeParameterName
intmnt_flags
16  flags = 0
18  If mnt_flags & does the user want this to be r/o? Then flags |= mount read-only
20  If mnt_flags & MNT_NOSUID Then flags |= gnore suid and sgid bits
22  If mnt_flags & MNT_NODEV Then flags |= disallow access to device special files
24  If mnt_flags & MNT_NOEXEC Then flags |= disallow program execution
26  If mnt_flags & MNT_NOATIME Then flags |= do not update access times
28  If mnt_flags & MNT_NODIRATIME Then flags |= do not update directory access times
30  If mnt_flags & MNT_RELATIME Then flags |= update atime relative to mtime/ctime
32  Return flags
Caller
NameDescribe
calculate_f_flags