Home
last modified time | relevance | path

Searched refs:debug_info (Results 1 – 25 of 45) sorted by relevance

12

/linux/drivers/platform/chrome/
H A Dcros_ec_debugfs.c68 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()
90 mutex_lock(&debug_info->log_mutex); in cros_ec_console_log_work()
103 debug_info->read_msg); in cros_ec_console_log_work()
122 mutex_unlock(&debug_info->log_mutex); in cros_ec_console_log_work()
125 schedule_delayed_work(&debug_info->log_poll_work, in cros_ec_console_log_work()
139 struct cros_ec_debugfs *debug_info = file->private_data; in cros_ec_console_log_read() local
[all …]
/linux/drivers/platform/chrome/wilco_ec/
H A Ddebugfs.c30 static struct wilco_ec_debugfs *debug_info; variable
99 char *buf = debug_info->formatted_data; in raw_write()
124 memset(debug_info->raw_data, 0, sizeof(debug_info->raw_data)); in raw_write()
125 msg.response_data = debug_info->raw_data; in raw_write()
128 ret = wilco_ec_mailbox(debug_info->ec, &msg); in raw_write()
131 debug_info->response_size = ret; in raw_write()
141 if (debug_info->response_size) { in raw_read()
142 fmt_len = hex_dump_to_buffer(debug_info->raw_data, in raw_read()
143 debug_info->response_size, in raw_read()
144 16, 1, debug_info->formatted_data, in raw_read()
[all …]
/linux/arch/arm64/kernel/
H A Dhw_breakpoint.c229 struct debug_info *debug_info = &current->thread.debug; in hw_breakpoint_control() local
240 reg_enable = !debug_info->bps_disabled; in hw_breakpoint_control()
247 reg_enable = !debug_info->wps_disabled; in hw_breakpoint_control()
628 struct debug_info *debug_info; in do_breakpoint() local
633 debug_info = &current->thread.debug; in do_breakpoint()
668 debug_info->bps_disabled = 1; in do_breakpoint()
672 if (debug_info->wps_disabled) in do_breakpoint()
676 debug_info->suspended_step = 1; in do_breakpoint()
760 struct debug_info *debug_info; in do_watchpoint() local
764 debug_info = &current->thread.debug; in do_watchpoint()
[all …]
/linux/drivers/char/hw_random/
H A Ds390-trng.c34 static debug_info_t *debug_info; variable
36 #define DEBUG_DBG(...) debug_sprintf_event(debug_info, 6, ##__VA_ARGS__)
37 #define DEBUG_INFO(...) debug_sprintf_event(debug_info, 5, ##__VA_ARGS__)
38 #define DEBUG_WARN(...) debug_sprintf_event(debug_info, 4, ##__VA_ARGS__)
39 #define DEBUG_ERR(...) debug_sprintf_event(debug_info, 3, ##__VA_ARGS__)
201 debug_info = debug_register("trng", 1, 1, 4 * sizeof(long)); in trng_debug_init()
202 debug_register_view(debug_info, &debug_sprintf_view); in trng_debug_init()
203 debug_set_level(debug_info, 3); in trng_debug_init()
208 debug_unregister(debug_info); in trng_debug_exit()
/linux/Documentation/arch/s390/
H A Ds390dbf.rst136 static debug_info_t *debug_info;
142 debug_info = debug_register("test", 1, 4, 4 );
143 debug_register_view(debug_info, &debug_hex_ascii_view);
145 debug_text_event(debug_info, 4 , "one ");
146 debug_int_exception(debug_info, 4, 4711);
147 debug_event(debug_info, 3, &debug_info, 4);
154 debug_unregister(debug_info);
169 static debug_info_t *debug_info;
176 debug_info = debug_register("test", 1, 4, sizeof(long) * 3);
177 debug_register_view(debug_info, &debug_sprintf_view);
[all …]
/linux/drivers/accel/qaic/
H A Dqaic_ssr.c438 struct ssr_debug_transfer_info *debug_info) in alloc_dump_info() argument
443 le64_to_cpus(&debug_info->tbl_len); in alloc_dump_info()
444 le64_to_cpus(&debug_info->tbl_addr); in alloc_dump_info()
446 if (debug_info->tbl_len == 0 || in alloc_dump_info()
447 debug_info->tbl_len % sizeof(struct debug_info_table) != 0) { in alloc_dump_info()
467 dump_info->tbl_addr = vzalloc(debug_info->tbl_len); in alloc_dump_info()
473 dump_info->tbl_addr_dev = debug_info->tbl_addr; in alloc_dump_info()
474 dump_info->tbl_len = debug_info->tbl_len; in alloc_dump_info()
487 struct ssr_debug_transfer_info *debug_info) in dbg_xfer_info_rsp() argument
508 ssr_crash->dump_info = alloc_dump_info(qdev, debug_info); in dbg_xfer_info_rsp()
/linux/drivers/hv/
H A Dring_buffer.c151 struct hv_ring_buffer_debug_info *debug_info) in hv_ringbuffer_get_debuginfo() argument
166 debug_info->bytes_avail_toread = bytes_avail_toread; in hv_ringbuffer_get_debuginfo()
167 debug_info->bytes_avail_towrite = bytes_avail_towrite; in hv_ringbuffer_get_debuginfo()
168 debug_info->current_read_index = ring_info->ring_buffer->read_index; in hv_ringbuffer_get_debuginfo()
169 debug_info->current_write_index = ring_info->ring_buffer->write_index; in hv_ringbuffer_get_debuginfo()
170 debug_info->current_interrupt_mask in hv_ringbuffer_get_debuginfo()
/linux/drivers/net/ethernet/mellanox/mlx5/core/steering/hws/
H A Ddebug.c474 ctx->debug_info.steering_debugfs = in mlx5hws_debug_init_dump()
476 ctx->debug_info.fdb_debugfs = in mlx5hws_debug_init_dump()
477 debugfs_create_dir("fdb", ctx->debug_info.steering_debugfs); in mlx5hws_debug_init_dump()
480 debugfs_create_file(file_name, 0444, ctx->debug_info.fdb_debugfs, in mlx5hws_debug_init_dump()
486 debugfs_remove_recursive(ctx->debug_info.steering_debugfs); in mlx5hws_debug_uninit_dump()
H A Dcontext.h54 struct mlx5hws_context_debug_info debug_info; member
/linux/arch/arm/include/asm/
H A Dprocessor.h25 struct debug_info { struct
37 struct debug_info debug; argument
/linux/sound/soc/renesas/rcar/
H A Ddebugfs.c33 if (mod->ops->debug_info) in rsnd_debugfs_show()
34 mod->ops->debug_info(m, io, mod); in rsnd_debugfs_show()
H A Dcmd.c125 #define DEBUG_INFO .debug_info = rsnd_cmd_debug_info
/linux/arch/parisc/kernel/vdso64/
H A Dvdso64.lds.S70 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
/linux/arch/parisc/kernel/vdso32/
H A Dvdso32.lds.S72 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
/linux/arch/s390/kernel/
H A Ddebug.c615 static file_private_info_t *debug_file_private_alloc(debug_info_t *debug_info, in debug_file_private_alloc() argument
627 debug_info_snapshot = debug_info_copy(debug_info, NO_AREAS); in debug_file_private_alloc()
629 debug_info_snapshot = debug_info_copy(debug_info, ALL_AREAS); in debug_file_private_alloc()
640 p_info->debug_info_org = debug_info; in debug_file_private_alloc()
646 debug_info_get(debug_info); in debug_file_private_alloc()
659 debug_info_t *debug_info; in debug_open() local
664 debug_info = file_inode(file)->i_private; in debug_open()
667 if (!debug_info->views[i]) in debug_open()
669 else if (debug_info->debugfs_entries[i] == file->f_path.dentry) in debug_open()
677 p_info = debug_file_private_alloc(debug_info, debug_info->views[i]); in debug_open()
H A Dlgr.c53 static struct debug_info *lgr_dbf;
/linux/arch/s390/include/asm/
H A Ddebug.h44 typedef struct debug_info { struct
45 struct debug_info *next; argument
46 struct debug_info *prev; argument
/linux/arch/arm64/include/asm/
H A Dprocessor.h108 struct debug_info { struct
173 struct debug_info debug; /* debugging */
/linux/scripts/
H A Dcheck_extable.sh134 objdump -hj .debug_info ${obj} 2> /dev/null > /dev/null ||
/linux/arch/arc/kernel/
H A Dvmlinux.lds.S139 /DISCARD/ : { *(.debug_info) }
/linux/drivers/net/wireless/marvell/mwifiex/
H A Dmain.c1106 struct mwifiex_debug_info *debug_info; in mwifiex_drv_info_dump() local
1183 debug_info = kzalloc_obj(*debug_info); in mwifiex_drv_info_dump()
1184 if (debug_info) { in mwifiex_drv_info_dump()
1189 mwifiex_get_debug_info(priv, debug_info); in mwifiex_drv_info_dump()
1190 p += mwifiex_debug_info_to_buffer(priv, p, debug_info); in mwifiex_drv_info_dump()
1193 kfree(debug_info); in mwifiex_drv_info_dump()
/linux/drivers/net/wireless/intel/iwlwifi/
H A Diwl-dbg-tlv.c102 const struct iwl_fw_ini_debug_info_tlv *debug_info = (const void *)tlv->data; in iwl_dbg_tlv_alloc_debug_info() local
104 if (le32_to_cpu(tlv->length) != sizeof(*debug_info)) in iwl_dbg_tlv_alloc_debug_info()
108 if (strnlen(debug_info->debug_cfg_name, in iwl_dbg_tlv_alloc_debug_info()
109 sizeof(debug_info->debug_cfg_name)) == in iwl_dbg_tlv_alloc_debug_info()
110 sizeof(debug_info->debug_cfg_name)) in iwl_dbg_tlv_alloc_debug_info()
114 debug_info->debug_cfg_name); in iwl_dbg_tlv_alloc_debug_info()
/linux/include/linux/platform_data/
H A Dcros_ec_proto.h242 struct cros_ec_debugfs *debug_info; member
/linux/drivers/s390/char/
H A Dsclp_sdias.c25 static struct debug_info *sdias_dbf;
/linux/scripts/kconfig/
H A Dqconf.h205 QString debug_info(struct symbol *sym);

12