Lines Matching refs:ops
71 const struct kernel_param_ops *ops; member
96 const struct kernel_param_ops *ops; member
166 #define module_param_cb(name, ops, arg, perm) \ argument
167 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
169 #define module_param_cb_unsafe(name, ops, arg, perm) \ argument
170 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, \
182 #define __level_param_cb(name, ops, arg, perm, level) \ argument
183 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
185 #define core_param_cb(name, ops, arg, perm) \ argument
186 __level_param_cb(name, ops, arg, perm, 1)
188 #define postcore_param_cb(name, ops, arg, perm) \ argument
189 __level_param_cb(name, ops, arg, perm, 2)
191 #define arch_param_cb(name, ops, arg, perm) \ argument
192 __level_param_cb(name, ops, arg, perm, 3)
194 #define subsys_param_cb(name, ops, arg, perm) \ argument
195 __level_param_cb(name, ops, arg, perm, 4)
197 #define fs_param_cb(name, ops, arg, perm) \ argument
198 __level_param_cb(name, ops, arg, perm, 5)
200 #define device_param_cb(name, ops, arg, perm) \ argument
201 __level_param_cb(name, ops, arg, perm, 6)
203 #define late_param_cb(name, ops, arg, perm) \ argument
204 __level_param_cb(name, ops, arg, perm, 7)
218 #define __module_param_call(prefix, name, ops, arg, perm, level, flags) \ argument
224 = { __param_str_##name, THIS_MODULE, ops, \
446 .ops = ¶m_ops_##type, \