函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:We only lock f_pos if we have threads or if the file might be* shared with another process. In both cases we'll have an elevated* file count (done either by fdget() or by fork()).

函数原型:void set_close_on_exec(unsigned int fd, int flag)

返回类型:void

参数:

类型参数名称
unsigned intfd
intflag
820  files等于files
822  加自旋锁
823  fdt等于files_fdtable(files)
824  如果flag__set_close_on_exec(fd, fdt)
826  否则__clear_close_on_exec(fd, fdt)
828  自旋锁解锁
调用者
名称描述
do_vfs_ioctlWhen you add any new common ioctls to the switches above and below* please update compat_sys_ioctl() too.* do_vfs_ioctl() is not for drivers and not intended to be EXPORT_SYMBOL()'d.* It's just a simple helper for sys_ioctl and compat_sys_ioctl.