Searched refs:op_p (Results 1 – 2 of 2) sorted by relevance
500 struct sysrq_key_op *op_p = NULL; in __sysrq_get_key_op() local505 op_p = sysrq_key_table[i]; in __sysrq_get_key_op()507 return op_p; in __sysrq_get_key_op()510 static void __sysrq_put_key_op(int key, struct sysrq_key_op *op_p) in __sysrq_put_key_op() argument515 sysrq_key_table[i] = op_p; in __sysrq_put_key_op()520 struct sysrq_key_op *op_p; in __handle_sysrq() local536 op_p = __sysrq_get_key_op(key); in __handle_sysrq()537 if (op_p) { in __handle_sysrq()542 if (!check_mask || sysrq_on_mask(op_p->enable_mask)) { in __handle_sysrq()543 pr_cont("%s\n", op_p->action_msg); in __handle_sysrq()[all …]
206 register_sysrq_key(int key, struct sysrq_key_op *op_p); this will207 register the operation pointed to by 'op_p' at table key 'key',209 the function unregister_sysrq_key(int key, struct sysrq_key_op *op_p), which210 will remove the key op pointed to by 'op_p' from the key 'key', if and only if