/Linux-v4.19/drivers/platform/chrome/ |
D | cros_ec_debugfs.c | 68 struct cros_ec_debugfs *debug_info = in cros_ec_console_log_work() local 72 struct cros_ec_dev *ec = debug_info->ec; in cros_ec_console_log_work() 73 struct circ_buf *cb = &debug_info->log_buffer; in cros_ec_console_log_work() 79 (struct ec_params_console_read_v1 *)debug_info->read_msg->data; in cros_ec_console_log_work() 80 uint8_t *ec_buffer = (uint8_t *)debug_info->read_msg->data; in cros_ec_console_log_work() 96 mutex_lock(&debug_info->log_mutex); in cros_ec_console_log_work() 108 ret = cros_ec_cmd_xfer(ec->ec_dev, debug_info->read_msg); in cros_ec_console_log_work() 113 if (debug_info->read_msg->result != EC_RES_SUCCESS) { in cros_ec_console_log_work() 131 wake_up(&debug_info->log_wq); in cros_ec_console_log_work() 134 mutex_unlock(&debug_info->log_mutex); in cros_ec_console_log_work() [all …]
|
/Linux-v4.19/arch/arm64/kernel/ |
D | hw_breakpoint.c | 238 struct debug_info *debug_info = ¤t->thread.debug; in hw_breakpoint_control() local 249 reg_enable = !debug_info->bps_disabled; in hw_breakpoint_control() 256 reg_enable = !debug_info->wps_disabled; in hw_breakpoint_control() 633 struct debug_info *debug_info; in breakpoint_handler() local 638 debug_info = ¤t->thread.debug; in breakpoint_handler() 673 debug_info->bps_disabled = 1; in breakpoint_handler() 677 if (debug_info->wps_disabled) in breakpoint_handler() 681 debug_info->suspended_step = 1; in breakpoint_handler() 747 struct debug_info *debug_info; in watchpoint_handler() local 752 debug_info = ¤t->thread.debug; in watchpoint_handler() [all …]
|
/Linux-v4.19/drivers/char/hw_random/ |
D | s390-trng.c | 38 static debug_info_t *debug_info; variable 40 #define DEBUG_DBG(...) debug_sprintf_event(debug_info, 6, ##__VA_ARGS__) 41 #define DEBUG_INFO(...) debug_sprintf_event(debug_info, 5, ##__VA_ARGS__) 42 #define DEBUG_WARN(...) debug_sprintf_event(debug_info, 4, ##__VA_ARGS__) 43 #define DEBUG_ERR(...) debug_sprintf_event(debug_info, 3, ##__VA_ARGS__) 214 debug_info = debug_register("trng", 1, 1, 4 * sizeof(long)); in trng_debug_init() 215 debug_register_view(debug_info, &debug_sprintf_view); in trng_debug_init() 216 debug_set_level(debug_info, 3); in trng_debug_init() 221 debug_unregister(debug_info); in trng_debug_exit()
|
/Linux-v4.19/drivers/hv/ |
D | ring_buffer.c | 168 struct hv_ring_buffer_debug_info *debug_info) in hv_ringbuffer_get_debuginfo() argument 178 debug_info->bytes_avail_toread = bytes_avail_toread; in hv_ringbuffer_get_debuginfo() 179 debug_info->bytes_avail_towrite = bytes_avail_towrite; in hv_ringbuffer_get_debuginfo() 180 debug_info->current_read_index = in hv_ringbuffer_get_debuginfo() 182 debug_info->current_write_index = in hv_ringbuffer_get_debuginfo() 184 debug_info->current_interrupt_mask = in hv_ringbuffer_get_debuginfo()
|
/Linux-v4.19/arch/unicore32/include/asm/ |
D | processor.h | 37 struct debug_info { struct 48 struct debug_info debug; argument
|
/Linux-v4.19/Documentation/s390/ |
D | s390dbf.txt | 339 static debug_info_t* debug_info; 345 debug_info = debug_register ("test", 1, 4, 4 ); 346 debug_register_view(debug_info,&debug_hex_ascii_view); 347 debug_register_view(debug_info,&debug_raw_view); 349 debug_text_event(debug_info, 4 , "one "); 350 debug_int_exception(debug_info, 4, 4711); 351 debug_event(debug_info, 3, &debug_info, 4); 358 debug_unregister (debug_info); 373 static debug_info_t* debug_info; 380 debug_info = debug_register ("test", 1, 4, sizeof(long) * 3); [all …]
|
/Linux-v4.19/arch/arm/include/asm/ |
D | processor.h | 33 struct debug_info { struct 45 struct debug_info debug; argument
|
/Linux-v4.19/arch/s390/kernel/vdso64/ |
D | vdso64.lds.S | 80 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
|
/Linux-v4.19/arch/s390/kernel/vdso32/ |
D | vdso32.lds.S | 80 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
|
/Linux-v4.19/arch/ia64/hp/sim/boot/ |
D | bootloader.lds | 54 .debug_info 0 : { *(.debug_info) }
|
/Linux-v4.19/arch/powerpc/kernel/vdso32/ |
D | vdso32.lds.S | 97 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
|
/Linux-v4.19/arch/powerpc/kernel/vdso64/ |
D | vdso64.lds.S | 96 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
|
/Linux-v4.19/arch/s390/kernel/ |
D | debug.c | 579 debug_info_t *debug_info, *debug_info_snapshot; in debug_open() local 584 debug_info = file_inode(file)->i_private; in debug_open() 587 if (!debug_info->views[i]) in debug_open() 589 else if (debug_info->debugfs_entries[i] == file->f_path.dentry) in debug_open() 602 if (!debug_info->views[i]->format_proc && !debug_info->views[i]->header_proc) in debug_open() 603 debug_info_snapshot = debug_info_copy(debug_info, NO_AREAS); in debug_open() 605 debug_info_snapshot = debug_info_copy(debug_info, ALL_AREAS); in debug_open() 619 p_info->debug_info_org = debug_info; in debug_open() 620 p_info->view = debug_info->views[i]; in debug_open() 626 debug_info_get(debug_info); in debug_open()
|
D | lgr.c | 53 static struct debug_info *lgr_dbf;
|
/Linux-v4.19/drivers/s390/crypto/ |
D | pkey_api.c | 39 static debug_info_t *debug_info; variable 41 #define DEBUG_DBG(...) debug_sprintf_event(debug_info, 6, ##__VA_ARGS__) 42 #define DEBUG_INFO(...) debug_sprintf_event(debug_info, 5, ##__VA_ARGS__) 43 #define DEBUG_WARN(...) debug_sprintf_event(debug_info, 4, ##__VA_ARGS__) 44 #define DEBUG_ERR(...) debug_sprintf_event(debug_info, 3, ##__VA_ARGS__) 48 debug_info = debug_register("pkey", 1, 1, 4 * sizeof(long)); in pkey_debug_init() 49 debug_register_view(debug_info, &debug_sprintf_view); in pkey_debug_init() 50 debug_set_level(debug_info, 3); in pkey_debug_init() 55 debug_unregister(debug_info); in pkey_debug_exit()
|
/Linux-v4.19/arch/s390/include/asm/ |
D | debug.h | 33 typedef struct debug_info { struct 34 struct debug_info *next; argument 35 struct debug_info *prev; argument
|
/Linux-v4.19/arch/arm64/include/asm/ |
D | processor.h | 79 struct debug_info { struct 128 struct debug_info debug; /* debugging */
|
/Linux-v4.19/arch/xtensa/kernel/ |
D | vmlinux.lds.S | 309 .debug_info 0 : { *(.debug_info) }
|
/Linux-v4.19/scripts/ |
D | check_extable.sh | 134 objdump -hj .debug_info ${obj} 2> /dev/null > /dev/null ||
|
/Linux-v4.19/arch/arc/kernel/ |
D | vmlinux.lds.S | 142 /DISCARD/ : { *(.debug_info) }
|
/Linux-v4.19/include/linux/mfd/ |
D | cros_ec.h | 194 struct cros_ec_debugfs *debug_info; member
|
/Linux-v4.19/drivers/net/wireless/marvell/mwifiex/ |
D | main.c | 1103 struct mwifiex_debug_info *debug_info; in mwifiex_drv_info_dump() local 1180 debug_info = kzalloc(sizeof(*debug_info), GFP_KERNEL); in mwifiex_drv_info_dump() 1181 if (debug_info) { in mwifiex_drv_info_dump() 1186 mwifiex_get_debug_info(priv, debug_info); in mwifiex_drv_info_dump() 1187 p += mwifiex_debug_info_to_buffer(priv, p, debug_info); in mwifiex_drv_info_dump() 1190 kfree(debug_info); in mwifiex_drv_info_dump()
|
/Linux-v4.19/drivers/s390/char/ |
D | sclp_sdias.c | 26 static struct debug_info *sdias_dbf;
|
/Linux-v4.19/arch/unicore32/kernel/ |
D | process.c | 212 memset(&tsk->thread.debug, 0, sizeof(struct debug_info)); in flush_thread()
|
/Linux-v4.19/include/asm-generic/ |
D | vmlinux.lds.h | 675 .debug_info 0 : { *(.debug_info \
|