Symbol: scsi_event
drivers/scsi/lpfc/lpfc_nl.h
137
struct lpfc_scsi_event_header scsi_event;
drivers/scsi/lpfc/lpfc_nl.h
144
struct lpfc_scsi_event_header scsi_event;
drivers/scsi/lpfc/lpfc_scsi.c
3603
fast_path_evt->un.check_cond_evt.scsi_event.event_type =
drivers/scsi/lpfc/lpfc_scsi.c
3605
fast_path_evt->un.check_cond_evt.scsi_event.subcategory =
drivers/scsi/lpfc/lpfc_scsi.c
3607
fast_path_evt->un.check_cond_evt.scsi_event.lun =
drivers/scsi/lpfc/lpfc_scsi.c
3609
memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwpn,
drivers/scsi/lpfc/lpfc_scsi.c
3611
memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwnn,
drivers/scsi/lpfc/lpfc_scsi.c
6002
struct lpfc_scsi_event_header scsi_event;
drivers/scsi/lpfc/lpfc_scsi.c
6028
scsi_event.event_type = FC_REG_SCSI_EVENT;
drivers/scsi/lpfc/lpfc_scsi.c
6029
scsi_event.subcategory = LPFC_EVENT_LUNRESET;
drivers/scsi/lpfc/lpfc_scsi.c
6030
scsi_event.lun = lun_id;
drivers/scsi/lpfc/lpfc_scsi.c
6031
memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
drivers/scsi/lpfc/lpfc_scsi.c
6032
memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
drivers/scsi/lpfc/lpfc_scsi.c
6035
sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
drivers/scsi/lpfc/lpfc_scsi.c
6080
struct lpfc_scsi_event_header scsi_event;
drivers/scsi/lpfc/lpfc_scsi.c
6123
scsi_event.event_type = FC_REG_SCSI_EVENT;
drivers/scsi/lpfc/lpfc_scsi.c
6124
scsi_event.subcategory = LPFC_EVENT_TGTRESET;
drivers/scsi/lpfc/lpfc_scsi.c
6125
scsi_event.lun = 0;
drivers/scsi/lpfc/lpfc_scsi.c
6126
memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
drivers/scsi/lpfc/lpfc_scsi.c
6127
memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
drivers/scsi/lpfc/lpfc_scsi.c
6130
sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
drivers/scsi/scsi_lib.c
2635
static void scsi_evt_emit(struct scsi_device *sdev, struct scsi_event *evt)
drivers/scsi/scsi_lib.c
2696
struct scsi_event *evt;
drivers/scsi/scsi_lib.c
2708
evt = list_entry(this, struct scsi_event, node);
drivers/scsi/scsi_lib.c
2723
void sdev_evt_send(struct scsi_device *sdev, struct scsi_event *evt)
drivers/scsi/scsi_lib.c
2751
struct scsi_event *sdev_evt_alloc(enum scsi_device_event evt_type,
drivers/scsi/scsi_lib.c
2754
struct scsi_event *evt = kzalloc_obj(struct scsi_event, gfpflags);
drivers/scsi/scsi_lib.c
2791
struct scsi_event *evt = sdev_evt_alloc(evt_type, gfpflags);
drivers/scsi/scsi_sysfs.c
470
struct scsi_event *evt;
drivers/scsi/scsi_sysfs.c
472
evt = list_entry(this, struct scsi_event, node);
include/scsi/scsi_device.h
483
extern struct scsi_event *sdev_evt_alloc(enum scsi_device_event evt_type,
include/scsi/scsi_device.h
485
extern void sdev_evt_send(struct scsi_device *sdev, struct scsi_event *evt);