Home
last modified time | relevance | path

Searched refs:ew (Results 1 – 12 of 12) sorted by relevance

/linux-4.4.14/arch/cris/include/arch-v32/arch/hwregs/
Dextmem_defs.h90 unsigned int ew : 3; member
109 unsigned int ew : 3; member
128 unsigned int ew : 3; member
147 unsigned int ew : 3; member
166 unsigned int ew : 3; member
185 unsigned int ew : 3; member
204 unsigned int ew : 3; member
223 unsigned int ew : 3; member
242 unsigned int ew : 3; member
261 unsigned int ew : 3; member
[all …]
Dbif_core_defs.h90 unsigned int ew : 3; member
107 unsigned int ew : 3; member
124 unsigned int ew : 3; member
145 unsigned int ew : 3; member
/linux-4.4.14/arch/cris/include/arch-v32/mach-fs/mach/hwregs/
Dbif_core_defs.h90 unsigned int ew : 3; member
107 unsigned int ew : 3; member
124 unsigned int ew : 3; member
145 unsigned int ew : 3; member
/linux-4.4.14/arch/cris/include/arch-v32/mach-a3/mach/hwregs/
Dpio_defs.h220 unsigned int ew : 3; member
232 unsigned int ew : 3; member
244 unsigned int ew : 3; member
/linux-4.4.14/arch/tile/include/gxio/
Dmpipe.h1444 uint_reg_t ew[2], in gxio_mpipe_equeue_put_at_aux()
1454 ew[0] |= !((slot >> equeue->log2_num_entries) & 1); in gxio_mpipe_equeue_put_at_aux()
1461 __gxio_mmio_write64(&edesc_p->words[1], ew[1]); in gxio_mpipe_equeue_put_at_aux()
1462 __gxio_mmio_write64(&edesc_p->words[0], ew[0]); in gxio_mpipe_equeue_put_at_aux()
/linux-4.4.14/drivers/infiniband/hw/mlx4/
Dmain.c2717 struct ib_event_work *ew = in handle_bonded_port_state_event() local
2719 struct mlx4_ib_dev *ibdev = ew->ib_dev; in handle_bonded_port_state_event()
2724 kfree(ew); in handle_bonded_port_state_event()
2757 struct ib_event_work *ew; in mlx4_ib_event() local
2763 ew = kmalloc(sizeof(*ew), GFP_ATOMIC); in mlx4_ib_event()
2764 if (!ew) in mlx4_ib_event()
2766 INIT_WORK(&ew->work, handle_bonded_port_state_event); in mlx4_ib_event()
2767 ew->ib_dev = ibdev; in mlx4_ib_event()
2768 queue_work(wq, &ew->work); in mlx4_ib_event()
2802 ew = kmalloc(sizeof *ew, GFP_ATOMIC); in mlx4_ib_event()
[all …]
Dmad.c1051 struct ib_event_work *ew = container_of(work, struct ib_event_work, work); in handle_port_mgmt_change_event() local
1052 struct mlx4_ib_dev *dev = ew->ib_dev; in handle_port_mgmt_change_event()
1053 struct mlx4_eqe *eqe = &(ew->ib_eqe); in handle_port_mgmt_change_event()
1109 kfree(ew); in handle_port_mgmt_change_event()
/linux-4.4.14/drivers/net/ethernet/sgi/
Dioc3-eth.c513 uint16_t *ew; in ioc3_tcpudp_checksum() local
549 ew = (uint16_t *) eh; in ioc3_tcpudp_checksum()
550 ehsum = ew[0] + ew[1] + ew[2] + ew[3] + ew[4] + ew[5] + ew[6]; in ioc3_tcpudp_checksum()
/linux-4.4.14/drivers/scsi/
Dsg.c148 struct execute_work ew; member
170 struct execute_work ew; member
1274 struct sg_request *srp = container_of(work, struct sg_request, ew.work); in sg_rq_end_io_usercontext()
1374 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext); in sg_rq_end_io()
1375 schedule_work(&srp->ew.work); in sg_rq_end_io()
2175 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work); in sg_remove_sfp_usercontext()
2210 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext); in sg_remove_sfp()
2211 schedule_work(&sfp->ew.work); in sg_remove_sfp()
Dscsi_sysfs.c400 sdev = container_of(work, struct scsi_device, ew.work); in scsi_device_dev_release_usercontext()
439 &sdp->ew); in scsi_device_dev_release()
/linux-4.4.14/include/scsi/
Dscsi_device.h196 struct execute_work ew; /* used to get process context on put */ member
/linux-4.4.14/kernel/
Dworkqueue.c3005 int execute_in_process_context(work_func_t fn, struct execute_work *ew) in execute_in_process_context() argument
3008 fn(&ew->work); in execute_in_process_context()
3012 INIT_WORK(&ew->work, fn); in execute_in_process_context()
3013 schedule_work(&ew->work); in execute_in_process_context()