函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:fs\namespace.c Create Date:2022-07-29 10:39:24
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:__mnt_want_write - get write access to a mount without freeze protection*@m: the mount on which to take a write* This tells the low-level filesystem that a write is about to be performed to* it, and makes sure that writes are allowed (mnt it read-write)

函数原型:int __mnt_want_write(struct vfsmount *m)

返回类型:int

参数:

类型参数名称
struct vfsmount *m
313  mnt等于real_mount(m)
314  ret等于0
316  禁止抢占()
317  mnt_inc_writers(mnt)
323  smp_mb()
324 READ_ONCE(mnt_flags)按位与MNT_WRITE_HOLD循环
325  cpu_relax()
331  smp_rmb()
332  如果mnt_is_readonly(m)则
333  mnt_dec_writers(mnt)
334  ret等于负EROFS
336  禁用抢占和中断()
338  返回:ret
调用者
名称描述
touch_atime
mnt_want_writemnt_want_write - get write access to a mount*@m: the mount on which to take a write* This tells the low-level filesystem that a write is about to be performed to* it, and makes sure that writes are allowed (mount is read-write, filesystem
__mnt_want_write_file__mnt_want_write_file - get write access to a file's mount*@file: the file who's mount on which to take a write* This is like __mnt_want_write, but it takes a file and can* do some optimisations if the file is open for write already
acct_on