/linux-5.10/sound/soc/sof/intel/ |
D | Kconfig | 17 This option is not user-selectable but automagically handled by 33 This option is not user-selectable but automagically handled by 39 This option is not user-selectable but automagically handled by 47 This option is not user-selectable but automagically handled by 57 This option is not user-selectable but automagically handled by 82 This option is not user-selectable but automagically handled by 106 This option is not user-selectable but automagically handled by 125 This option is not user-selectable but automagically handled by 140 This option is not user-selectable but automagically handled by 155 This option is not user-selectable but automagically handled by [all …]
|
/linux-5.10/drivers/usb/mtu3/ |
D | mtu3_gadget_ep0.c | 209 int handled = 1; in ep0_get_status() local 236 handled = -EINVAL; in ep0_get_status() 244 handled = -EINVAL; in ep0_get_status() 253 handled = 0; in ep0_get_status() 257 if (handled > 0) { in ep0_get_status() 269 handled = ret; in ep0_get_status() 271 return handled; in ep0_get_status() 277 int handled = 1; in handle_test_mode() local 298 handled = -EINVAL; in handle_test_mode() 320 return handled; in handle_test_mode() [all …]
|
/linux-5.10/include/trace/events/ |
D | nmi.h | 13 TP_PROTO(void *handler, s64 delta_ns, int handled), 15 TP_ARGS(handler, delta_ns, handled), 20 __field( int, handled ) 26 __entry->handled = handled; 29 TP_printk("%ps() delta_ns: %lld handled: %d", 32 __entry->handled)
|
/linux-5.10/drivers/usb/musb/ |
D | musb_gadget_ep0.c | 55 int handled = 1; in service_tx_status_request() local 94 handled = -EINVAL; in service_tx_status_request() 105 handled = -EINVAL; in service_tx_status_request() 123 handled = 0; in service_tx_status_request() 128 if (handled > 0) { in service_tx_status_request() 136 return handled; in service_tx_status_request() 144 * @return 0 if the request was NOT HANDLED, 153 int handled = 0; /* not handled */ in service_in_request() local 159 handled = service_tx_status_request(musb, in service_in_request() 169 return handled; in service_in_request() [all …]
|
/linux-5.10/arch/powerpc/kernel/ |
D | mce_power.c | 484 int handled = 0; in mce_handle_ierror() local 498 handled = mce_flush(MCE_FLUSH_SLB); in mce_handle_ierror() 501 handled = mce_flush(MCE_FLUSH_ERAT); in mce_handle_ierror() 504 handled = mce_flush(MCE_FLUSH_TLB); in mce_handle_ierror() 552 return handled; in mce_handle_ierror() 570 int handled = 0; in mce_handle_derror() local 586 handled = 1; in mce_handle_derror() 590 handled = 1; in mce_handle_derror() 594 handled = 1; in mce_handle_derror() 651 return handled; in mce_handle_derror() [all …]
|
/linux-5.10/arch/x86/kernel/ |
D | nmi.c | 125 int handled=0; in nmi_handle() local 141 handled += thishandled; in nmi_handle() 150 /* return total number of NMI events handled */ in nmi_handle() 151 return handled; in nmi_handle() 276 int handled; in unknown_nmi_error() local 284 handled = nmi_handle(NMI_UNKNOWN, regs); in unknown_nmi_error() 285 if (handled) { in unknown_nmi_error() 286 __this_cpu_add(nmi_stats.unknown, handled); in unknown_nmi_error() 309 int handled; in default_do_nmi() local 334 handled = nmi_handle(NMI_LOCAL, regs); in default_do_nmi() [all …]
|
/linux-5.10/Documentation/virt/kvm/ |
D | s390-diag.rst | 19 all supported DIAGNOSE calls need to be handled by either KVM or its 53 Handled by userspace. 56 Handled by userspace. 59 Handled by userspace. 62 Handled by either userspace or KVM (ioeventfd case). 84 This function code is handled by userspace.
|
/linux-5.10/drivers/media/pci/cx23885/ |
D | cx23885-av.c | 18 bool handled = false; in cx23885_av_work_handler() local 21 PCI_MSK_AV_CORE, &handled); in cx23885_av_work_handler() 23 /* Getting here with the interrupt not handled in cx23885_av_work_handler() 26 if (!handled) { in cx23885_av_work_handler()
|
/linux-5.10/drivers/regulator/ |
D | da9210-regulator.c | 73 unsigned int val, handled = 0; in da9210_irq_handler() local 84 handled |= DA9210_E_OVCURR; in da9210_irq_handler() 90 handled |= DA9210_E_NPWRGOOD; in da9210_irq_handler() 95 handled |= val & (DA9210_E_TEMP_WARN | DA9210_E_TEMP_CRIT); in da9210_irq_handler() 101 handled |= DA9210_E_VMAX; in da9210_irq_handler() 104 if (handled) { in da9210_irq_handler() 105 /* Clear handled events */ in da9210_irq_handler() 106 error = regmap_write(chip->regmap, DA9210_REG_EVENT_B, handled); in da9210_irq_handler()
|
/linux-5.10/drivers/irqchip/ |
D | irq-versatile-fpga.c | 97 * if we've handled at least one interrupt. This does a single read of the 102 int handled = 0; in handle_one_fpga() local 109 handled = 1; in handle_one_fpga() 112 return handled; in handle_one_fpga() 121 int i, handled; in fpga_handle_irq() local 124 for (i = 0, handled = 0; i < fpga_irq_id; ++i) in fpga_handle_irq() 125 handled |= handle_one_fpga(&fpga_irq_devices[i], regs); in fpga_handle_irq() 126 } while (handled); in fpga_handle_irq()
|
D | irq-vic.c | 200 * handled at least one interrupt. This reads the status register 207 int handled = 0; in handle_one_vic() local 212 handled = 1; in handle_one_vic() 215 return handled; in handle_one_vic() 240 int i, handled; in vic_handle_irq() local 243 for (i = 0, handled = 0; i < vic_id; ++i) in vic_handle_irq() 244 handled |= handle_one_vic(&vic_devices[i], regs); in vic_handle_irq() 245 } while (handled); in vic_handle_irq()
|
/linux-5.10/sound/soc/sof/imx/ |
D | Kconfig | 19 This option is not user-selectable but automagically handled by 25 This option is not user-selectable but automagically handled by 42 This option is not user-selectable but automagically handled by 58 This option is not user-selectable but automagically handled by
|
/linux-5.10/Documentation/trace/ |
D | events-nmi.rst | 41 …>-0 [000] d.h3 505.397558: nmi_handler: perf_event_nmi_handler() delta_ns: 3236765 handled: 1 42 …>-0 [000] d.h3 505.805893: nmi_handler: perf_event_nmi_handler() delta_ns: 3174234 handled: 1 43 …>-0 [000] d.h3 506.158206: nmi_handler: perf_event_nmi_handler() delta_ns: 3084642 handled: 1 44 …>-0 [000] d.h3 506.334346: nmi_handler: perf_event_nmi_handler() delta_ns: 3080351 handled: 1
|
/linux-5.10/kernel/irq/ |
D | spurious.c | 185 * If 99,900 of the previous 100,000 interrupts have not been handled 249 * But for 'irqfixup == 2' we also do it for handled interrupts if in try_misrouted_irq() 297 * handled an interrupt and we check whether that number in note_interrupt() 313 int handled; in note_interrupt() local 334 * care about the high bits of the handled in note_interrupt() 338 handled = atomic_read(&desc->threads_handled); in note_interrupt() 339 handled |= SPURIOUS_DEFERRED; in note_interrupt() 340 if (handled != desc->threads_handled_last) { in note_interrupt() 350 desc->threads_handled_last = handled; in note_interrupt() 375 * handled we never trigger the spurious in note_interrupt() [all …]
|
/linux-5.10/Documentation/admin-guide/ |
D | devices.txt | 198 loop devices is handled by mount(8) or losetup(8). 207 Partitions are handled in the same way as for IDE 519 Partitions are handled the same way as for IDE disks 530 Partitions are handled the same way as for the first 638 Partitions are handled in the same way as for IDE 726 Partitions are handled the same way as for the first 744 Partitions are handled the same way as for the first 871 Partitions are handled in the same way as for IDE 895 Partitions are handled in the same way as for IDE 948 Partitions are handled as for major 48. [all …]
|
/linux-5.10/drivers/media/i2c/ |
D | tc358743.c | 923 bool *handled) in tc358743_cec_handler() argument 956 if (handled) in tc358743_cec_handler() 957 *handled = true; in tc358743_cec_handler() 972 if (handled) in tc358743_cec_handler() 973 *handled = true; in tc358743_cec_handler() 1046 bool *handled) in tc358743_hdmi_audio_int_handler() argument 1059 static void tc358743_csi_err_int_handler(struct v4l2_subdev *sd, bool *handled) in tc358743_csi_err_int_handler() argument 1067 bool *handled) in tc358743_hdmi_misc_int_handler() argument 1088 if (handled) in tc358743_hdmi_misc_int_handler() 1089 *handled = true; in tc358743_hdmi_misc_int_handler() [all …]
|
/linux-5.10/arch/mips/cavium-octeon/executive/ |
D | cvmx-interrupt-decodes.c | 80 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() 100 /*gmx_rx_int_en.s.lenerr = 1; // Length errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() 102 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() 125 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() 145 /*gmx_rx_int_en.s.lenerr = 1; // Length errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() 147 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() 167 /*gmx_rx_int_en.s.lenerr = 1; // Length errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() 169 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() 190 /*gmx_rx_int_en.s.lenerr = 1; // Length errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() 192 /*gmx_rx_int_en.s.fcserr = 1; // FCS errors are handled when we get work */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() [all …]
|
/linux-5.10/drivers/iio/accel/ |
D | mma9551_core.c | 211 * Locking is not handled inside the function. Callers should ensure they 236 * Locking is not handled inside the function. Callers should ensure they 261 * Locking is not handled inside the function. Callers should ensure they 286 * Locking is not handled inside the function. Callers should ensure they 317 * Locking is not handled inside the function. Callers should ensure they 344 * Locking is not handled inside the function. Callers should ensure they 374 * Locking is not handled inside the function. Callers should ensure they 413 * Locking is not handled inside the function. Callers should ensure they 452 * Locking is not handled inside the function. Callers should ensure they 487 * Locking is not handled inside the function. Callers should ensure they [all …]
|
/linux-5.10/Documentation/leds/ |
D | ledtrig-usbport.rst | 10 listed as separated entries in a "ports" subdirectory. Selecting is handled by 24 2) Device with a physical port handled by few controllers 28 port may be handled by ohci-platform, ehci-platform and xhci-hcd. If there is
|
/linux-5.10/net/switchdev/ |
D | switchdev.c | 112 .handled = false, in switchdev_port_attr_notify() 119 WARN_ON(!attr_info.handled); in switchdev_port_attr_notify() 123 if (!attr_info.handled) in switchdev_port_attr_notify() 233 .handled = false, in switchdev_port_obj_notify() 239 WARN_ON(!obj_info.handled); in switchdev_port_obj_notify() 242 if (!obj_info.handled) in switchdev_port_obj_notify() 464 port_obj_info->handled = true; in __switchdev_handle_port_obj_add() 519 port_obj_info->handled = true; in __switchdev_handle_port_obj_del() 571 port_attr_info->handled = true; in __switchdev_handle_port_attr_set()
|
/linux-5.10/drivers/usb/cdns3/ |
D | trace.h | 525 int handled), 526 TP_ARGS(priv_req, current_index, handled), 530 __field(unsigned int, handled) 539 __entry->handled = handled; 548 __entry->handled ? "handled" : "not handled", 557 int handled), 558 TP_ARGS(priv_req, current_index, handled)
|
/linux-5.10/drivers/staging/comedi/drivers/ |
D | amplc_pc236_common.c | 125 bool handled; in pc236_interrupt() local 127 handled = pc236_intr_check(dev); in pc236_interrupt() 128 if (dev->attached && handled) { in pc236_interrupt() 132 return IRQ_RETVAL(handled); in pc236_interrupt()
|
/linux-5.10/drivers/gpu/drm/mga/ |
D | mga_irq.c | 53 int handled = 0; in mga_driver_irq_handler() local 62 handled = 1; in mga_driver_irq_handler() 81 handled = 1; in mga_driver_irq_handler() 84 if (handled) in mga_driver_irq_handler()
|
/linux-5.10/tools/testing/selftests/arm64/signal/ |
D | test_signals_utils.c | 78 * and are meant to return true when signal is handled successfully: 80 * unexpected in that context and it was NOT handled; default_handler will 180 fprintf(stderr, "Handled SIG_UNSUPP\n"); in default_handler() 183 fprintf(stderr, "Handled SIG_TRIG\n"); in default_handler() 186 fprintf(stderr, "Handled SIG_OK\n"); in default_handler() 189 fprintf(stderr, "Handled SIG_COPYCTX\n"); in default_handler()
|
/linux-5.10/drivers/xen/xen-pciback/ |
D | conf_space.c | 206 int err = 0, handled = 0; in xen_pcibk_config_write() local 237 /* handled is set true here, but not every byte in xen_pcibk_config_write() 239 * every byte is handled is unnecessary as the in xen_pcibk_config_write() 243 handled = 1; in xen_pcibk_config_write() 247 if (!handled && !err) { in xen_pcibk_config_write() 248 /* By default, anything not specificially handled above is in xen_pcibk_config_write() 250 * that anything not specifically handled above is writable. in xen_pcibk_config_write()
|