/linux-4.1.27/drivers/media/v4l2-core/ |
D | v4l2-event.c | 33 static unsigned sev_pos(const struct v4l2_subscribed_event *sev, unsigned idx) in sev_pos() argument 35 idx += sev->first; in sev_pos() 36 return idx >= sev->elems ? idx - sev->elems : idx; in sev_pos() 59 kev->sev->first = sev_pos(kev->sev, 1); in __v4l2_event_dequeue() 60 kev->sev->in_use--; in __v4l2_event_dequeue() 99 struct v4l2_subscribed_event *sev; in v4l2_event_subscribed() local 103 list_for_each_entry(sev, &fh->subscribed, list) in v4l2_event_subscribed() 104 if (sev->type == type && sev->id == id) in v4l2_event_subscribed() 105 return sev; in v4l2_event_subscribed() 113 struct v4l2_subscribed_event *sev; in __v4l2_event_queue_fh() local [all …]
|
D | v4l2-ctrls.c | 1226 struct v4l2_subscribed_event *sev; in send_event() local 1232 list_for_each_entry(sev, &ctrl->ev_subs, node) in send_event() 1233 if (sev->fh != fh || in send_event() 1234 (sev->flags & V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK)) in send_event() 1235 v4l2_event_queue_fh(sev->fh, &ev); in send_event() 1737 struct v4l2_subscribed_event *sev, *next_sev; in v4l2_ctrl_handler_free() local 1751 list_for_each_entry_safe(sev, next_sev, &ctrl->ev_subs, node) in v4l2_ctrl_handler_free() 1752 list_del(&sev->node); in v4l2_ctrl_handler_free() 3364 static int v4l2_ctrl_add_event(struct v4l2_subscribed_event *sev, unsigned elems) in v4l2_ctrl_add_event() argument 3366 struct v4l2_ctrl *ctrl = v4l2_ctrl_find(sev->fh->ctrl_handler, sev->id); in v4l2_ctrl_add_event() [all …]
|
/linux-4.1.27/include/ras/ |
D | ras_event.h | 30 u8 sev), 32 TP_ARGS(mem, err_seq, fru_id, fru_text, sev), 37 __field(u8, sev) 51 __entry->sev = sev; 68 cper_severity_str(__entry->sev),
|
/linux-4.1.27/include/media/ |
D | v4l2-event.h | 78 struct v4l2_subscribed_event *sev; member 89 int (*add)(struct v4l2_subscribed_event *sev, unsigned elems); 90 void (*del)(struct v4l2_subscribed_event *sev);
|
/linux-4.1.27/arch/x86/kernel/acpi/ |
D | apei.c | 52 void arch_apei_report_mem_error(int sev, struct cper_sec_mem_err *mem_err) in arch_apei_report_mem_error() argument 55 apei_mce_report_mem_error(sev, mem_err); in arch_apei_report_mem_error()
|
/linux-4.1.27/sound/core/seq/ |
D | seq_queue.c | 659 struct snd_seq_event sev; in queue_broadcast_event() local 661 sev = *ev; in queue_broadcast_event() 663 sev.flags = SNDRV_SEQ_TIME_STAMP_TICK|SNDRV_SEQ_TIME_MODE_ABS; in queue_broadcast_event() 664 sev.time.tick = q->timer->tick.cur_tick; in queue_broadcast_event() 665 sev.queue = q->queue; in queue_broadcast_event() 666 sev.data.queue.queue = q->queue; in queue_broadcast_event() 669 sev.source.client = SNDRV_SEQ_CLIENT_SYSTEM; in queue_broadcast_event() 670 sev.source.port = SNDRV_SEQ_PORT_SYSTEM_TIMER; in queue_broadcast_event() 671 sev.dest.client = SNDRV_SEQ_ADDRESS_SUBSCRIBERS; in queue_broadcast_event() 672 snd_seq_kernel_client_dispatch(SNDRV_SEQ_CLIENT_SYSTEM, &sev, atomic, hop); in queue_broadcast_event()
|
/linux-4.1.27/include/acpi/ |
D | ghes.h | 51 void ghes_edac_report_mem_error(struct ghes *ghes, int sev, 59 static inline void ghes_edac_report_mem_error(struct ghes *ghes, int sev, in ghes_edac_report_mem_error() argument
|
D | apei.h | 46 void arch_apei_report_mem_error(int sev, struct cper_sec_mem_err *mem_err);
|
/linux-4.1.27/arch/arm64/kernel/ |
D | smp_spin_table.c | 100 sev(); in smp_spin_table_cpu_prepare() 117 sev(); in smp_spin_table_cpu_boot()
|
/linux-4.1.27/drivers/acpi/apei/ |
D | ghes.c | 391 static void ghes_handle_memory_failure(struct acpi_hest_generic_data *gdata, int sev) in ghes_handle_memory_failure() argument 415 if (sev == GHES_SEV_RECOVERABLE && sec_sev == GHES_SEV_RECOVERABLE) in ghes_handle_memory_failure() 426 int sev, sec_sev; in ghes_do_proc() local 429 sev = ghes_severity(estatus->error_severity); in ghes_do_proc() 436 ghes_edac_report_mem_error(ghes, sev, mem_err); in ghes_do_proc() 438 arch_apei_report_mem_error(sev, mem_err); in ghes_do_proc() 439 ghes_handle_memory_failure(gdata, sev); in ghes_do_proc() 446 if (sev == GHES_SEV_RECOVERABLE && in ghes_do_proc() 455 aer_severity = cper_severity_to_aer(sev); in ghes_do_proc() 803 int sev, sev_global = -1; in ghes_notify_nmi() local [all …]
|
D | apei-base.c | 775 void __weak arch_apei_report_mem_error(int sev, in arch_apei_report_mem_error() argument
|
/linux-4.1.27/arch/x86/kernel/cpu/mcheck/ |
D | mce-severity.c | 39 unsigned char sev; member 48 #define MCESEV(s, m, c...) { .sev = MCE_ ## s ## _SEVERITY, .msg = m, ## c } 265 if (s->sev >= MCE_UC_SEVERITY && ctx == IN_KERNEL) { in mce_severity_intel() 269 return s->sev; in mce_severity_intel()
|
/linux-4.1.27/drivers/s390/char/ |
D | tape_3590.h | 94 unsigned int sev:2; member 106 unsigned int sev:2; member
|
D | tape_3590.c | 1268 "RC=%02x-%04x-%02x\n", sense->fmt.f70.sev, sense->mc, in tape_3590_print_era_msg() 1279 sense->fmt.f71.sev, device->cdev->id.dev_model, in tape_3590_print_era_msg() 1290 sense->fmt.f71.sev, device->cdev->id.dev_model, in tape_3590_print_era_msg()
|
/linux-4.1.27/arch/arm/common/ |
D | vlock.S | 46 sev 106 sev
|
D | mcpm_entry.c | 362 sev(); in __mcpm_cpu_down() 378 sev(); in __mcpm_outbound_leave_critical()
|
D | mcpm_head.S | 164 sev
|
D | bL_switcher.c | 87 sev(); in bL_do_switch()
|
/linux-4.1.27/drivers/media/usb/uvc/ |
D | uvc_ctrl.c | 1222 struct v4l2_subscribed_event *sev; in uvc_ctrl_send_event() local 1230 list_for_each_entry(sev, &mapping->ev_subs, node) { in uvc_ctrl_send_event() 1231 if (sev->fh && (sev->fh != &handle->vfh || in uvc_ctrl_send_event() 1232 (sev->flags & V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK) || in uvc_ctrl_send_event() 1234 v4l2_event_queue_fh(sev->fh, &ev); in uvc_ctrl_send_event() 1305 static int uvc_ctrl_add_event(struct v4l2_subscribed_event *sev, unsigned elems) in uvc_ctrl_add_event() argument 1307 struct uvc_fh *handle = container_of(sev->fh, struct uvc_fh, vfh); in uvc_ctrl_add_event() 1316 ctrl = uvc_find_control(handle->chain, sev->id, &mapping); in uvc_ctrl_add_event() 1322 list_add_tail(&sev->node, &mapping->ev_subs); in uvc_ctrl_add_event() 1323 if (sev->flags & V4L2_EVENT_SUB_FL_SEND_INITIAL) { in uvc_ctrl_add_event() [all …]
|
/linux-4.1.27/arch/arm64/include/asm/ |
D | barrier.h | 23 #define sev() asm volatile("sev" : : : "memory") macro
|
/linux-4.1.27/arch/arm/include/asm/ |
D | barrier.h | 11 #define sev() __asm__ __volatile__ ("sev" : : : "memory") macro
|
D | spinlock.h | 36 #define SEV __ALT_SMP_ASM(WASM(sev), WASM(nop))
|
/linux-4.1.27/arch/arm/mach-bcm/ |
D | kona_smp.c | 180 sev(); in bcm_boot_secondary()
|
/linux-4.1.27/drivers/edac/ |
D | ghes_edac.c | 188 void ghes_edac_report_mem_error(struct ghes *ghes, int sev, in ghes_edac_report_mem_error() argument 221 switch (sev) { in ghes_edac_report_mem_error()
|
/linux-4.1.27/Documentation/zh_CN/arm64/ |
D | booting.txt | 199 发出 sev 指令。当对 cpu-release-addr 所指位置的读取操作返回非零值
|
/linux-4.1.27/arch/ia64/include/asm/ |
D | pal.h | 581 sev : 5, /* Bus error severity*/ member 738 #define pmci_bus_error_severity pme_bus.sev
|
/linux-4.1.27/Documentation/arm64/ |
D | booting.txt | 202 to reduce the overhead of the busy-loop and a sev will be issued by
|