Home
last modified time | relevance | path

Searched refs:debug (Results 1 – 25 of 1349) sorted by relevance

12345678910>>...54

/kernel/linux/linux-5.10/tools/testing/selftests/kvm/x86_64/
Ddebug_regs.c54 #define CLEAR_DEBUG() memset(&debug, 0, sizeof(debug))
55 #define APPLY_DEBUG() vcpu_set_guest_debug(vm, VCPU_ID, &debug)
66 struct kvm_guest_debug debug; in main() local
93 debug.control = KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP; in main()
97 run->debug.arch.exception == BP_VECTOR && in main()
98 run->debug.arch.pc == CAST_TO_RIP(sw_bp), in main()
100 run->exit_reason, run->debug.arch.exception, in main()
101 run->debug.arch.pc, CAST_TO_RIP(sw_bp)); in main()
107 debug.control = KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_HW_BP; in main()
108 debug.arch.debugreg[i] = CAST_TO_RIP(hw_bp); in main()
[all …]
/kernel/linux/linux-5.10/arch/powerpc/kernel/ptrace/
Dptrace-adv.c13 task->thread.debug.dbcr0 &= ~DBCR0_BT; in user_enable_single_step()
14 task->thread.debug.dbcr0 |= DBCR0_IDM | DBCR0_IC; in user_enable_single_step()
25 task->thread.debug.dbcr0 &= ~DBCR0_IC; in user_enable_block_step()
26 task->thread.debug.dbcr0 = DBCR0_IDM | DBCR0_BT; in user_enable_block_step()
43 task->thread.debug.dbcr0 &= ~(DBCR0_IC | DBCR0_BT); in user_disable_single_step()
47 if (!DBCR_ACTIVE_EVENTS(task->thread.debug.dbcr0, in user_disable_single_step()
48 task->thread.debug.dbcr1)) { in user_disable_single_step()
52 task->thread.debug.dbcr0 &= ~DBCR0_IDM; in user_disable_single_step()
80 return put_user(child->thread.debug.dac1, datalp); in ptrace_get_debugreg()
109 task->thread.debug.dac1 = data & ~0x3UL; in ptrace_set_debugreg()
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/msm/dp/
Ddp_debug.c49 struct dp_debug_private *debug = file->private_data; in dp_debug_read_info() local
57 if (!debug) in dp_debug_read_info()
67 drm_mode = &debug->panel->dp_mode.drm_mode; in dp_debug_read_info()
75 debug->panel->max_pclk_khz); in dp_debug_read_info()
81 debug->panel->link_info.rate); in dp_debug_read_info()
87 debug->panel->link_info.num_lanes); in dp_debug_read_info()
93 debug->panel->link_info.capabilities); in dp_debug_read_info()
127 debug->panel->dp_mode.h_active_low, in dp_debug_read_info()
128 debug->panel->dp_mode.v_active_low); in dp_debug_read_info()
152 debug->panel->dp_mode.bpp); in dp_debug_read_info()
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/
Dintel_runtime_pm.c80 spin_lock_init(&rpm->debug.lock); in init_intel_runtime_pm_wakeref()
96 spin_lock_irqsave(&rpm->debug.lock, flags); in track_intel_runtime_pm_wakeref()
98 if (!rpm->debug.count) in track_intel_runtime_pm_wakeref()
99 rpm->debug.last_acquire = stack; in track_intel_runtime_pm_wakeref()
101 stacks = krealloc(rpm->debug.owners, in track_intel_runtime_pm_wakeref()
102 (rpm->debug.count + 1) * sizeof(*stacks), in track_intel_runtime_pm_wakeref()
105 stacks[rpm->debug.count++] = stack; in track_intel_runtime_pm_wakeref()
106 rpm->debug.owners = stacks; in track_intel_runtime_pm_wakeref()
111 spin_unlock_irqrestore(&rpm->debug.lock, flags); in track_intel_runtime_pm_wakeref()
128 spin_lock_irqsave(&rpm->debug.lock, flags); in untrack_intel_runtime_pm_wakeref()
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/st/cw1200/
Ddebug.h35 ++priv->debug->tx; in cw1200_debug_txed()
40 ++priv->debug->tx_agg; in cw1200_debug_txed_agg()
46 ++priv->debug->tx_multi; in cw1200_debug_txed_multi()
47 priv->debug->tx_multi_frames += count; in cw1200_debug_txed_multi()
52 ++priv->debug->rx; in cw1200_debug_rxed()
57 ++priv->debug->rx_agg; in cw1200_debug_rxed_agg()
62 ++priv->debug->tx_cache_miss; in cw1200_debug_tx_cache_miss()
67 ++priv->debug->tx_align; in cw1200_debug_tx_align()
72 ++priv->debug->tx_ttl; in cw1200_debug_tx_ttl()
77 ++priv->debug->tx_burst; in cw1200_debug_tx_burst()
[all …]
/kernel/linux/linux-5.10/Documentation/s390/
Ds390dbf.rst6 - arch/s390/kernel/debug.c
7 - arch/s390/include/asm/debug.h
11 The goal of this feature is to provide a kernel debug logging API
13 (e.g. device drivers) can have one separate debug log.
14 One purpose of this is to inspect the debug logs after a production system crash
18 it is possible to look at the debug logs on a live system via the Linux
21 The debug feature may also very useful for kernel and driver development.
25 Kernel components (e.g. device drivers) can register themselves at the debug
28 debug log for the caller. For each debug log exists a number of debug areas
29 where exactly one is active at one time. Each debug area consists of contiguous
[all …]
/kernel/linux/linux-5.10/drivers/scsi/mpt3sas/
Dmpt3sas_debugfs.c44 struct mpt3sas_debugfs_buffer *debug = filp->private_data; in _debugfs_iocdump_read() local
46 if (!debug || !debug->buf) in _debugfs_iocdump_read()
49 return simple_read_from_buffer(ubuf, cnt, ppos, debug->buf, debug->len); in _debugfs_iocdump_read()
59 struct mpt3sas_debugfs_buffer *debug; in _debugfs_iocdump_open() local
61 debug = kzalloc(sizeof(struct mpt3sas_debugfs_buffer), GFP_KERNEL); in _debugfs_iocdump_open()
62 if (!debug) in _debugfs_iocdump_open()
65 debug->buf = (void *)ioc; in _debugfs_iocdump_open()
66 debug->len = sizeof(struct MPT3SAS_ADAPTER); in _debugfs_iocdump_open()
67 file->private_data = debug; in _debugfs_iocdump_open()
79 struct mpt3sas_debugfs_buffer *debug = file->private_data; in _debugfs_iocdump_release() local
[all …]
/kernel/linux/linux-5.10/drivers/pci/hotplug/
Dibmphp_ebda.c114 debug("%s - slot_min = %x\n", __func__, ptr->slot_min); in print_bus_info()
115 debug("%s - slot_max = %x\n", __func__, ptr->slot_max); in print_bus_info()
116 debug("%s - slot_count = %x\n", __func__, ptr->slot_count); in print_bus_info()
117 debug("%s - bus# = %x\n", __func__, ptr->busno); in print_bus_info()
118 debug("%s - current_speed = %x\n", __func__, ptr->current_speed); in print_bus_info()
119 debug("%s - controller_id = %x\n", __func__, ptr->controller_id); in print_bus_info()
121 debug("%s - slots_at_33_conv = %x\n", __func__, ptr->slots_at_33_conv); in print_bus_info()
122 debug("%s - slots_at_66_conv = %x\n", __func__, ptr->slots_at_66_conv); in print_bus_info()
123 debug("%s - slots_at_66_pcix = %x\n", __func__, ptr->slots_at_66_pcix); in print_bus_info()
124 debug("%s - slots_at_100_pcix = %x\n", __func__, ptr->slots_at_100_pcix); in print_bus_info()
[all …]
Dibmphp_core.c39 static bool debug; variable
40 module_param(debug, bool, S_IRUGO | S_IWUSR);
41 MODULE_PARM_DESC(debug, "Debugging mode enabled or not");
66 debug("options = %x\n", slot_cur->ctrl->options); in get_cur_bus_info()
67 debug("revision = %x\n", slot_cur->ctrl->revision); in get_cur_bus_info()
82 debug("busstatus = %x, bus_speed = %x, bus_mode = %x\n", in get_cur_bus_info()
148 debug("(*cur_slot)->irq[0] = %x\n", in ibmphp_init_devno()
150 debug("(*cur_slot)->irq[1] = %x\n", in ibmphp_init_devno()
152 debug("(*cur_slot)->irq[2] = %x\n", in ibmphp_init_devno()
154 debug("(*cur_slot)->irq[3] = %x\n", in ibmphp_init_devno()
[all …]
Dibmphp_pci.c81 debug("inside configure_card, func->busno = %x\n", func->busno); in ibmphp_configure_card()
98 debug("inside the loop, cur_func->busno = %x, cur_func->device = %x, cur_func->function = %x\n", in ibmphp_configure_card()
103 debug("vendor_id is %x\n", vendor_id); in ibmphp_configure_card()
106 debug("found valid device, vendor_id = %x\n", vendor_id); in ibmphp_configure_card()
119 debug("hrd_type = %x, class = %x, class_code %x\n", hdr_type, class, class_code); in ibmphp_configure_card()
132debug("single device case.... vendor id = %x, hdr_type = %x, class = %x\n", vendor_id, hdr_type, c… in ibmphp_configure_card()
233 debug("class now is %x\n", class); in ibmphp_configure_card()
242 debug("cur_func->busno b4 configure_bridge is %x\n", cur_func->busno); in ibmphp_configure_card()
256 debug("cur_func->busno = %x, device = %x, function = %x\n", in ibmphp_configure_card()
259 debug("after configuring bridge..., sec_number = %x\n", sec_number); in ibmphp_configure_card()
[all …]
/kernel/linux/linux-5.10/drivers/scsi/megaraid/
Dmegaraid_sas_debugfs.c51 struct megasas_debugfs_buffer *debug = filp->private_data; in megasas_debugfs_read() local
53 if (!debug || !debug->buf) in megasas_debugfs_read()
56 return simple_read_from_buffer(ubuf, cnt, ppos, debug->buf, debug->len); in megasas_debugfs_read()
63 struct megasas_debugfs_buffer *debug; in megasas_debugfs_raidmap_open() local
68 debug = kzalloc(sizeof(struct megasas_debugfs_buffer), GFP_KERNEL); in megasas_debugfs_raidmap_open()
69 if (!debug) in megasas_debugfs_raidmap_open()
72 debug->buf = (void *)fusion->ld_drv_map[(instance->map_id & 1)]; in megasas_debugfs_raidmap_open()
73 debug->len = fusion->drv_map_sz; in megasas_debugfs_raidmap_open()
74 file->private_data = debug; in megasas_debugfs_raidmap_open()
82 struct megasas_debug_buffer *debug = file->private_data; in megasas_debugfs_release() local
[all …]
/kernel/linux/linux-5.10/Documentation/trace/coresight/
Dcoresight-cpu-debug.rst11 Coresight CPU debug module is defined in ARMv8-a architecture reference manual
12 (ARM DDI 0487A.k) Chapter 'Part H: External debug', the CPU can integrate
13 debug module and it is mainly used for two modes: self-hosted debug and
14 external debug. Usually the external debug mode is well known as the external
16 explore debugging method which rely on self-hosted debug mode, this document
19 The debug module provides sample-based profiling extension, which can be used
21 every CPU has one dedicated debug module to be connected. Based on self-hosted
22 debug mechanism, Linux kernel can access these related registers from mmio
36 - At the time this documentation was written, the debug driver mainly relies on
69 Before accessing debug registers, we should ensure the clock and power domain
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath9k/
Ddebug.c32 sc->debug.stats.istats.sync_cause_all++; in ath9k_debug_sync_cause()
34 sc->debug.stats.istats.sync_rtc_irq++; in ath9k_debug_sync_cause()
36 sc->debug.stats.istats.sync_mac_irq++; in ath9k_debug_sync_cause()
38 sc->debug.stats.istats.eeprom_illegal_access++; in ath9k_debug_sync_cause()
40 sc->debug.stats.istats.apb_timeout++; in ath9k_debug_sync_cause()
42 sc->debug.stats.istats.pci_mode_conflict++; in ath9k_debug_sync_cause()
44 sc->debug.stats.istats.host1_fatal++; in ath9k_debug_sync_cause()
46 sc->debug.stats.istats.host1_perr++; in ath9k_debug_sync_cause()
48 sc->debug.stats.istats.trcv_fifo_perr++; in ath9k_debug_sync_cause()
50 sc->debug.stats.istats.radm_cpl_ep++; in ath9k_debug_sync_cause()
[all …]
Dhtc_drv_debug.c202 priv->debug.tx_stats.buf_queued); in read_file_xmit()
205 priv->debug.tx_stats.buf_completed); in read_file_xmit()
208 priv->debug.tx_stats.skb_queued); in read_file_xmit()
211 priv->debug.tx_stats.skb_success); in read_file_xmit()
214 priv->debug.tx_stats.skb_failed); in read_file_xmit()
217 priv->debug.tx_stats.cab_queued); in read_file_xmit()
221 priv->debug.tx_stats.queue_stats[IEEE80211_AC_BE]); in read_file_xmit()
224 priv->debug.tx_stats.queue_stats[IEEE80211_AC_BK]); in read_file_xmit()
227 priv->debug.tx_stats.queue_stats[IEEE80211_AC_VI]); in read_file_xmit()
230 priv->debug.tx_stats.queue_stats[IEEE80211_AC_VO]); in read_file_xmit()
[all …]
/kernel/linux/linux-5.10/drivers/scsi/fnic/
Dfnic_debugfs.c453 struct stats_debug_info *debug; in fnic_reset_stats_open() local
455 debug = kzalloc(sizeof(struct stats_debug_info), GFP_KERNEL); in fnic_reset_stats_open()
456 if (!debug) in fnic_reset_stats_open()
459 debug->i_private = inode->i_private; in fnic_reset_stats_open()
461 file->private_data = debug; in fnic_reset_stats_open()
485 struct stats_debug_info *debug = file->private_data; in fnic_reset_stats_read() local
486 struct fnic *fnic = (struct fnic *)debug->i_private; in fnic_reset_stats_read()
513 struct stats_debug_info *debug = file->private_data; in fnic_reset_stats_write() local
514 struct fnic *fnic = (struct fnic *)debug->i_private; in fnic_reset_stats_write()
576 struct stats_debug_info *debug = file->private_data; in fnic_reset_stats_release() local
[all …]
/kernel/linux/linux-5.10/Documentation/driver-api/usb/
Dusb3-debug-port.rst2 USB3 debug port
11 This is a HOWTO for using the USB3 debug port on x86 systems.
14 debug port, you need to::
16 1) check whether any USB3 debug port is available in
24 The xHCI debug capability (DbC) is an optional but standalone
28 When DbC is initialized and enabled, it will present a debug
29 device through the debug port (normally the first USB3
30 super-speed port). The debug device is fully compliant with
32 performance full-duplex serial link between the debug target
33 (the system under debugging) and a debug host.
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/arm/
Dcoresight-cpu-debug.txt3 CoreSight CPU debug component are compliant with the ARMv8 architecture
4 reference manual (ARM DDI 0487A.k) Chapter 'Part H: External debug'. The
5 external debug module is mainly used for two modes: self-hosted debug and
6 external debug, and it can be accessed from mmio region from Coresight
7 and eventually the debug module connects with CPU for debugging. And the
8 debug module provides sample-based profiling extension, which can be used
10 usually every CPU has one dedicated debug module to be connected.
14 - compatible : should be "arm,coresight-cpu-debug"; supplemented with
25 mandatory. The interface between the debug logic and the
29 - cpu : the CPU phandle the debug module is affined to. Do not assume it
[all …]
/kernel/linux/build/test/moduletest/runtest/bin/cpuisolation_t/testcases/bin/
Dcpuisolation05.sh28 tracing_on=$(cat /sys/kernel/debug/tracing/tracing_on)
29 eval_need=$(cat /sys/kernel/debug/tracing/events/sched/core_ctl_eval_need/enable)
30 set_busy=$(cat /sys/kernel/debug/tracing/events/sched/core_ctl_set_busy/enable)
31 update_nr_need=$(cat /sys/kernel/debug/tracing/events/sched/core_ctl_update_nr_need/enable)
37 echo 1 > /sys/kernel/debug/tracing/tracing_on
38 echo 1 > /sys/kernel/debug/tracing/events/sched/core_ctl_eval_need/enable
39 echo 1 > /sys/kernel/debug/tracing/events/sched/core_ctl_set_busy/enable
40 echo 1 > /sys/kernel/debug/tracing/events/sched/core_ctl_update_nr_need/enable
70 echo $tracing_on > /sys/kernel/debug/tracing/tracing_on
71 echo $eval_need > /sys/kernel/debug/tracing/events/sched/core_ctl_eval_need/enable
[all …]
/kernel/linux/linux-5.10/drivers/net/fddi/skfp/
Dsmtinit.c30 struct smt_debug debug; variable
70 debug.d_smt = 0 ; in init_smt()
71 debug.d_smtf = 0 ; in init_smt()
72 debug.d_rmt = 0 ; in init_smt()
73 debug.d_ecm = 0 ; in init_smt()
74 debug.d_pcm = 0 ; in init_smt()
75 debug.d_cfm = 0 ; in init_smt()
77 debug.d_plc = 0 ; in init_smt()
79 debug.d_ess = 0 ; in init_smt()
82 debug.d_sba = 0 ; in init_smt()
/kernel/linux/linux-5.10/drivers/scsi/
Dscript_asm.pl39 $debug = 0; # Print general debugging messages
152 print STDERR "value regex = $value\n" if ($debug);
155 print STDERR "phase regex = $phase\n" if ($debug);
207 if ($debug) {
218 printf STDERR "New code : %08x\n", $code[$address] if ($debug);
240 print STDERR "Relative reference $symbol\n" if ($debug);
245 print STDERR "Absolute reference $symbol\n" if ($debug);
249 print STDERR "Referencing symbol $1, length = $length in $_\n" if ($debug);
279 print STDERR "$0 : parsed WHEN\n" if ($debug);
282 print STDERR "$0 : parsed IF\n" if ($debug);
[all …]
/kernel/linux/linux-5.10/Documentation/ABI/testing/
Ddebugfs-hisi-hpre1 What: /sys/kernel/debug/hisi_hpre/<bdf>/cluster[0-3]/regs
4 Description: Dump debug registers from the HPRE cluster.
7 What: /sys/kernel/debug/hisi_hpre/<bdf>/cluster[0-3]/cluster_ctrl
11 and then we can read the debug information of the core.
14 What: /sys/kernel/debug/hisi_hpre/<bdf>/rdclr_en
17 Description: HPRE cores debug registers read clear control. 1 means enable
23 What: /sys/kernel/debug/hisi_hpre/<bdf>/current_qm
30 What: /sys/kernel/debug/hisi_hpre/<bdf>/regs
33 Description: Dump debug registers from the HPRE.
36 What: /sys/kernel/debug/hisi_hpre/<bdf>/qm/regs
[all …]
/kernel/linux/linux-5.10/drivers/staging/media/rkisp1/
Drkisp1-dev.c428 struct rkisp1_debug *debug = &rkisp1->debug; in rkisp1_debug_init() local
430 debug->debugfs_dir = debugfs_create_dir(RKISP1_DRIVER_NAME, NULL); in rkisp1_debug_init()
431 if (!debug->debugfs_dir) { in rkisp1_debug_init()
435 debugfs_create_ulong("data_loss", 0444, debug->debugfs_dir, in rkisp1_debug_init()
436 &debug->data_loss); in rkisp1_debug_init()
437 debugfs_create_ulong("outform_size_err", 0444, debug->debugfs_dir, in rkisp1_debug_init()
438 &debug->outform_size_error); in rkisp1_debug_init()
440 debug->debugfs_dir, in rkisp1_debug_init()
441 &debug->img_stabilization_size_error); in rkisp1_debug_init()
442 debugfs_create_ulong("inform_size_error", 0444, debug->debugfs_dir, in rkisp1_debug_init()
[all …]
/kernel/linux/linux-5.10/Documentation/fault-injection/
Dfault-injection.rst36 debugfs entries under /sys/kernel/debug/mmc0/fail_mmc_request
42 under /sys/kernel/debug/fail_function. No boot option supported.
47 debugfs entries under /sys/kernel/debug/nvme*/fault_inject. The default
61 - /sys/kernel/debug/fail*/probability:
69 /sys/kernel/debug/fail*/interval for such testcases.
71 - /sys/kernel/debug/fail*/interval:
79 - /sys/kernel/debug/fail*/times:
84 - /sys/kernel/debug/fail*/space:
90 - /sys/kernel/debug/fail*/verbose
97 to debug the problems revealed by fault injection.
[all …]
/kernel/linux/linux-5.10/Documentation/admin-guide/wimax/
Dwimax.rst44 files will appear in /sys/kernel/debug/wimax:wmxX can tweak for
47 2.1. Obtaining debug information: debugfs entries
50 The WiMAX stack is compiled, by default, with debug messages that can
54 debug settings.
60 2.1.1. Increasing debug output
63 The files named *dl_* indicate knobs for controlling the debug output
66 # find /sys/kernel/debug/wimax\:wmx0 -name \*dl_\*
67 /sys/kernel/debug/wimax:wmx0/wimax_dl_stack
68 /sys/kernel/debug/wimax:wmx0/wimax_dl_op_rfkill
69 /sys/kernel/debug/wimax:wmx0/wimax_dl_op_reset
[all …]
/kernel/linux/linux-5.10/drivers/scsi/lpfc/
Dlpfc_debugfs.c1942 struct lpfc_debug *debug; in lpfc_debugfs_disc_trc_open() local
1951 debug = kmalloc(sizeof(*debug), GFP_KERNEL); in lpfc_debugfs_disc_trc_open()
1952 if (!debug) in lpfc_debugfs_disc_trc_open()
1959 debug->buffer = kmalloc(size, GFP_KERNEL); in lpfc_debugfs_disc_trc_open()
1960 if (!debug->buffer) { in lpfc_debugfs_disc_trc_open()
1961 kfree(debug); in lpfc_debugfs_disc_trc_open()
1965 debug->len = lpfc_debugfs_disc_trc_data(vport, debug->buffer, size); in lpfc_debugfs_disc_trc_open()
1966 file->private_data = debug; in lpfc_debugfs_disc_trc_open()
1992 struct lpfc_debug *debug; in lpfc_debugfs_slow_ring_trc_open() local
2001 debug = kmalloc(sizeof(*debug), GFP_KERNEL); in lpfc_debugfs_slow_ring_trc_open()
[all …]

12345678910>>...54