Lines Matching refs:ops
70 const struct kernel_param_ops *ops; member
95 const struct kernel_param_ops *ops; member
165 #define module_param_cb(name, ops, arg, perm) \ argument
166 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
168 #define module_param_cb_unsafe(name, ops, arg, perm) \ argument
169 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, \
181 #define __level_param_cb(name, ops, arg, perm, level) \ argument
182 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
184 #define core_param_cb(name, ops, arg, perm) \ argument
185 __level_param_cb(name, ops, arg, perm, 1)
187 #define postcore_param_cb(name, ops, arg, perm) \ argument
188 __level_param_cb(name, ops, arg, perm, 2)
190 #define arch_param_cb(name, ops, arg, perm) \ argument
191 __level_param_cb(name, ops, arg, perm, 3)
193 #define subsys_param_cb(name, ops, arg, perm) \ argument
194 __level_param_cb(name, ops, arg, perm, 4)
196 #define fs_param_cb(name, ops, arg, perm) \ argument
197 __level_param_cb(name, ops, arg, perm, 5)
199 #define device_param_cb(name, ops, arg, perm) \ argument
200 __level_param_cb(name, ops, arg, perm, 6)
202 #define late_param_cb(name, ops, arg, perm) \ argument
203 __level_param_cb(name, ops, arg, perm, 7)
217 #define __module_param_call(prefix, name, ops, arg, perm, level, flags) \ argument
223 = { __param_str_##name, ops, VERIFY_OCTAL_PERMISSIONS(perm), \
472 .ops = ¶m_ops_##type, \