Home
last modified time | relevance | path

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

/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/drivers/infiniband/hw/mlx4/
Dmain.c2689 struct ib_event_work *ew = in handle_bonded_port_state_event() local
2691 struct mlx4_ib_dev *ibdev = ew->ib_dev; in handle_bonded_port_state_event()
2696 kfree(ew); in handle_bonded_port_state_event()
2729 struct ib_event_work *ew; in mlx4_ib_event() local
2735 ew = kmalloc(sizeof(*ew), GFP_ATOMIC); in mlx4_ib_event()
2736 if (!ew) in mlx4_ib_event()
2738 INIT_WORK(&ew->work, handle_bonded_port_state_event); in mlx4_ib_event()
2739 ew->ib_dev = ibdev; in mlx4_ib_event()
2740 queue_work(wq, &ew->work); in mlx4_ib_event()
2774 ew = kmalloc(sizeof *ew, GFP_ATOMIC); in mlx4_ib_event()
[all …]
Dmad.c1033 struct ib_event_work *ew = container_of(work, struct ib_event_work, work); in handle_port_mgmt_change_event() local
1034 struct mlx4_ib_dev *dev = ew->ib_dev; in handle_port_mgmt_change_event()
1035 struct mlx4_eqe *eqe = &(ew->ib_eqe); in handle_port_mgmt_change_event()
1091 kfree(ew); in handle_port_mgmt_change_event()
/linux-4.1.27/drivers/scsi/
Dsg.c148 struct execute_work ew; member
170 struct execute_work ew; member
1268 struct sg_request *srp = container_of(work, struct sg_request, ew.work); in sg_rq_end_io_usercontext()
1368 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext); in sg_rq_end_io()
1369 schedule_work(&srp->ew.work); in sg_rq_end_io()
2169 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work); in sg_remove_sfp_usercontext()
2204 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext); in sg_remove_sfp()
2205 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()
437 &sdp->ew); in scsi_device_dev_release()
/linux-4.1.27/include/scsi/
Dscsi_device.h195 struct execute_work ew; /* used to get process context on put */ member
/linux-4.1.27/kernel/
Dworkqueue.c3042 int execute_in_process_context(work_func_t fn, struct execute_work *ew) in execute_in_process_context() argument
3045 fn(&ew->work); in execute_in_process_context()
3049 INIT_WORK(&ew->work, fn); in execute_in_process_context()
3050 schedule_work(&ew->work); in execute_in_process_context()