Home
last modified time | relevance | path

Searched refs:op_p (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.15/drivers/tty/
Dsysrq.c551 const struct sysrq_key_op *op_p = NULL; in __sysrq_get_key_op() local
556 op_p = sysrq_key_table[i]; in __sysrq_get_key_op()
558 return op_p; in __sysrq_get_key_op()
561 static void __sysrq_put_key_op(int key, const struct sysrq_key_op *op_p) in __sysrq_put_key_op() argument
566 sysrq_key_table[i] = op_p; in __sysrq_put_key_op()
571 const struct sysrq_key_op *op_p; in __handle_sysrq() local
590 op_p = __sysrq_get_key_op(key); in __handle_sysrq()
591 if (op_p) { in __handle_sysrq()
596 if (!check_mask || sysrq_on_mask(op_p->enable_mask)) { in __handle_sysrq()
597 pr_info("%s\n", op_p->action_msg); in __handle_sysrq()
[all …]
/Linux-v5.15/Documentation/admin-guide/
Dsysrq.rst238 ``register_sysrq_key(int key, const struct sysrq_key_op *op_p);`` this will
239 register the operation pointed to by ``op_p`` at table key 'key',
241 the function ``unregister_sysrq_key(int key, const struct sysrq_key_op *op_p)``,
242 which will remove the key op pointed to by 'op_p' from the key 'key', if and