函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:Check for a common mount option that manipulates s_flags.

函数原型:static int vfs_parse_sb_flag(struct fs_context *fc, const char *key)

返回类型:int

参数:

类型参数名称
struct fs_context *fc
const char *key
89 i小于ARRAY_SIZE - get the number of elements in array @arr*@arr: array to be sized(forbidden_sb_flag)循环如果字符串比较恒等于0则
91  返回:负EINVAL
93  token等于lookup_constant(common_set_sb_flag, key, 0)
94  如果token
95  sb_flags或等于token
96  sb_flags_mask或等于token
97  返回:0
100  token等于lookup_constant(common_clear_sb_flag, key, 0)
101  如果token
102  sb_flags与等于token的反
103  sb_flags_mask或等于token
104  返回:0
107  返回:负Parameter not supported
调用者
名称描述
vfs_parse_fs_paramvfs_parse_fs_param - Add a single parameter to a superblock config*@fc: The filesystem context to modify*@param: The parameter* A single mount option in string form is applied to the filesystem context* being set up