/linux-5.19.10/drivers/tty/ |
D | sysrq.c | 796 struct sysrq_state *sysrq = in sysrq_reinject_alt_sysrq() local 798 struct input_handle *handle = &sysrq->handle; in sysrq_reinject_alt_sysrq() 799 unsigned int alt_code = sysrq->alt_use; in sysrq_reinject_alt_sysrq() 801 if (sysrq->need_reinject) { in sysrq_reinject_alt_sysrq() 803 sysrq->reinjecting = true; in sysrq_reinject_alt_sysrq() 816 sysrq->reinjecting = false; in sysrq_reinject_alt_sysrq() 820 static bool sysrq_handle_keypress(struct sysrq_state *sysrq, in sysrq_handle_keypress() argument 823 bool was_active = sysrq->active; in sysrq_handle_keypress() 832 if (sysrq->active && code == sysrq->alt_use) in sysrq_handle_keypress() 833 sysrq->active = false; in sysrq_handle_keypress() [all …]
|
D | Makefile | 9 obj-$(CONFIG_MAGIC_SYSRQ) += sysrq.o
|
/linux-5.19.10/Documentation/translations/zh_CN/admin-guide/ |
D | sysrq.rst | 3 :Original: Documentation/admin-guide/sysrq.rst 18 针对 sysrq.c 的文档说明 30 当运行一个编译进 sysrq 功能的内核时,/proc/sys/kernel/sysrq 控制着被 32 配置符号设定,文件本身默认设置为 1。以下是 /proc/sys/kernel/sysrq 中可能的 50 echo "number" >/proc/sys/kernel/sysrq 55 注意,``/proc/sys/kernel/sysrq`` 的值只影响通过键盘触发 SySRq 的调用,对于 56 通过 ``/proc/sysrq-trigger`` 的任何操作调用都是允许的 86 写一个字符到 /proc/sysrq-trigger 文件,例如:: 88 echo t > /proc/sysrq-trigger 206 一个无效的 SysRq 键序列可以解决问题。(比如,像键盘组合键 :kbd:`alt-sysrq-z` ) [all …]
|
D | index.rst | 71 sysrq
|
/linux-5.19.10/Documentation/devicetree/bindings/input/ |
D | input-reset.txt | 1 Input: sysrq reset sequence 5 sysrq driver. Upon holding the keys for a specified amount of time (if 11 The /chosen node should contain a 'linux,sysrq-reset-seq' child node to define 19 generating a sysrq. If omitted the system is rebooted immediately when a valid 25 linux,sysrq-reset-seq {
|
/linux-5.19.10/include/linux/ |
D | serial_core.h | 246 unsigned long sysrq; /* sysrq timeout */ member 477 if (!port->sysrq) in uart_handle_sysrq_char() 480 if (ch && time_before(jiffies, port->sysrq)) { in uart_handle_sysrq_char() 483 port->sysrq = 0; in uart_handle_sysrq_char() 489 port->sysrq = 0; in uart_handle_sysrq_char() 496 if (!port->sysrq) in uart_prepare_sysrq_char() 499 if (ch && time_before(jiffies, port->sysrq)) { in uart_prepare_sysrq_char() 502 port->sysrq = 0; in uart_prepare_sysrq_char() 508 port->sysrq = 0; in uart_prepare_sysrq_char() 581 if (!port->sysrq) { in uart_handle_break() [all …]
|
/linux-5.19.10/Documentation/admin-guide/ |
D | sysrq.rst | 4 Documentation for sysrq.c 17 /proc/sys/kernel/sysrq controls the functions allowed to be invoked via 20 to 1. Here is the list of possible values in /proc/sys/kernel/sysrq: 22 - 0 - disable sysrq completely 23 - 1 - enable all functions of sysrq 24 - >1 - bitmask of allowed sysrq functions (see below for detailed function 38 echo "number" >/proc/sys/kernel/sysrq 44 Note that the value of ``/proc/sys/kernel/sysrq`` influences only the invocation 45 via a keyboard. Invocation of any operation via ``/proc/sysrq-trigger`` is 78 Write a character to /proc/sysrq-trigger. e.g.:: [all …]
|
D | index.rst | 118 sysrq
|
/linux-5.19.10/tools/testing/selftests/pstore/ |
D | pstore_crash_test | 16 echo 1 > /proc/sys/kernel/sysrq 30 echo c > /proc/sysrq-trigger
|
/linux-5.19.10/drivers/s390/char/ |
D | keyboard.c | 331 if (kbd->sysrq) { in kbd_keycode() 332 if (kbd->sysrq == K(KT_LATIN, '-')) { in kbd_keycode() 333 kbd->sysrq = 0; in kbd_keycode() 338 kbd->sysrq = K(KT_LATIN, '-'); in kbd_keycode() 342 (*k_handler[KTYP(kbd->sysrq)])(kbd, KVAL(kbd->sysrq)); in kbd_keycode() 343 kbd->sysrq = 0; in kbd_keycode() 346 kbd->sysrq = K(type, value); in kbd_keycode()
|
D | ctrlchar.c | 23 struct sysrq_work *sysrq = container_of(work, struct sysrq_work, work); in ctrlchar_handle_sysrq() local 25 handle_sysrq(sysrq->key); in ctrlchar_handle_sysrq()
|
D | keyboard.h | 42 unsigned short sysrq; member
|
D | sclp_vt220.c | 478 static struct sysrq_work sysrq; variable 500 sysrq.key = buffer[i]; in sclp_vt220_handle_input() 501 schedule_sysrq_work(&sysrq); in sclp_vt220_handle_input()
|
/linux-5.19.10/drivers/usb/serial/ |
D | generic.c | 358 if (port->sysrq) { in usb_serial_generic_process_read_urb() 577 if (port->sysrq) { in usb_serial_handle_sysrq_char() 578 if (ch && time_before(jiffies, port->sysrq)) { in usb_serial_handle_sysrq_char() 580 port->sysrq = 0; in usb_serial_handle_sysrq_char() 583 port->sysrq = 0; in usb_serial_handle_sysrq_char() 594 if (!port->sysrq) { in usb_serial_handle_break() 595 port->sysrq = jiffies + HZ*5; in usb_serial_handle_break() 598 port->sysrq = 0; in usb_serial_handle_break()
|
D | f81232.c | 402 if (port->sysrq) { in f81232_process_read_urb() 439 if (port->sysrq) { in f81534a_process_read_urb()
|
/linux-5.19.10/drivers/tty/serial/ |
D | msm_serial.c | 548 int count = 0, i, sysrq; in msm_complete_rx_dma() local 591 sysrq = uart_handle_sysrq_char(port, dma->virt[i]); in msm_complete_rx_dma() 593 if (!sysrq) in msm_complete_rx_dma() 740 int sysrq, r_count, i; in msm_handle_rx_dm() local 766 sysrq = uart_handle_sysrq_char(port, buf[i]); in msm_handle_rx_dm() 768 if (!sysrq) in msm_handle_rx_dm() 805 int sysrq; in msm_handle_rx() local 828 sysrq = uart_handle_sysrq_char(port, c); in msm_handle_rx() 830 if (!sysrq) in msm_handle_rx() 1622 if (port->sysrq) in __msm_console_write()
|
D | sunhv.c | 151 if (port->sysrq != 0 && *con_read_page) { in receive_chars_read() 441 if (port->sysrq || oops_in_progress) in sunhv_console_write_paged() 496 if (port->sysrq || oops_in_progress) in sunhv_console_write_bychar()
|
D | qcom_geni_serial.c | 538 int sysrq; in handle_rx_console() local 547 sysrq = uart_prepare_sysrq_char(uport, buf[c]); in handle_rx_console() 549 if (!sysrq) in handle_rx_console()
|
/linux-5.19.10/Documentation/security/ |
D | sak.rst | 17 sysrq support. 20 ``loadkeys``. This will work whether or not sysrq support is compiled
|
/linux-5.19.10/arch/um/kernel/ |
D | Makefile | 19 signal.o sysrq.o time.o tlb.o trap.o \
|
/linux-5.19.10/Documentation/translations/zh_TW/admin-guide/ |
D | index.rst | 122 sysrq
|
/linux-5.19.10/drivers/tty/hvc/ |
D | hvsi.c | 80 uint8_t sysrq; member 329 hp->sysrq = 1; in hvsi_insert_chars() 331 } else if (hp->sysrq) { in hvsi_insert_chars() 333 hp->sysrq = 0; in hvsi_insert_chars()
|
/linux-5.19.10/arch/um/ |
D | Kconfig | 176 On UML, this is accomplished by sending a "sysrq" command with 179 The keys are documented in <file:Documentation/admin-guide/sysrq.rst>. Don't say Y
|
/linux-5.19.10/arch/mips/kernel/ |
D | Makefile | 86 obj-$(CONFIG_MAGIC_SYSRQ) += sysrq.o
|
/linux-5.19.10/include/linux/usb/ |
D | serial.h | 111 unsigned long sysrq; /* sysrq timeout */ member
|