Searched refs:hv_dev (Results 1 - 10 of 10) sorted by relevance

/linux-master/drivers/input/serio/
H A Dhyperv-keyboard.c90 struct hv_device *hv_dev; member in struct:hv_kbd_dev
100 static void hv_kbd_on_receive(struct hv_device *hv_dev, argument
103 struct hv_kbd_dev *kbd_dev = hv_get_drvdata(hv_dev);
119 dev_err(&hv_dev->device,
138 dev_err(&hv_dev->device,
172 pm_wakeup_hard_event(&hv_dev->device);
177 dev_err(&hv_dev->device,
182 static void hv_kbd_handle_received_packet(struct hv_device *hv_dev, argument
220 dev_err(&hv_dev->device,
227 hv_kbd_on_receive(hv_dev, ms
241 struct hv_device *hv_dev = context; local
254 hv_kbd_connect_to_vsp(struct hv_device *hv_dev) argument
314 hv_kbd_probe(struct hv_device *hv_dev, const struct hv_vmbus_device_id *dev_id) argument
372 hv_kbd_remove(struct hv_device *hv_dev) argument
383 hv_kbd_suspend(struct hv_device *hv_dev) argument
390 hv_kbd_resume(struct hv_device *hv_dev) argument
[all...]
/linux-master/drivers/hv/
H A Dvmbus_drv.c48 static struct device *hv_dev; variable in typeref:struct:device
85 if (hv_dev == NULL)
130 struct hv_device *hv_dev = device_to_hv_device(dev); local
132 if (!hv_dev->channel)
134 return sysfs_emit(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
141 struct hv_device *hv_dev = device_to_hv_device(dev); local
143 if (!hv_dev->channel)
145 return sysfs_emit(buf, "%d\n", hv_dev->channel->state);
152 struct hv_device *hv_dev = device_to_hv_device(dev); local
154 if (!hv_dev
163 struct hv_device *hv_dev = device_to_hv_device(dev); local
175 struct hv_device *hv_dev = device_to_hv_device(dev); local
187 struct hv_device *hv_dev = device_to_hv_device(dev); local
197 struct hv_device *hv_dev = device_to_hv_device(dev); local
211 struct hv_device *hv_dev = device_to_hv_device(dev); local
224 struct hv_device *hv_dev = device_to_hv_device(dev); local
237 struct hv_device *hv_dev = device_to_hv_device(dev); local
250 struct hv_device *hv_dev = device_to_hv_device(dev); local
263 struct hv_device *hv_dev = device_to_hv_device(dev); local
276 struct hv_device *hv_dev = device_to_hv_device(dev); local
288 struct hv_device *hv_dev = device_to_hv_device(dev); local
307 struct hv_device *hv_dev = device_to_hv_device(dev); local
326 struct hv_device *hv_dev = device_to_hv_device(dev); local
345 struct hv_device *hv_dev = device_to_hv_device(dev); local
364 struct hv_device *hv_dev = device_to_hv_device(dev); local
382 struct hv_device *hv_dev = device_to_hv_device(dev); local
400 struct hv_device *hv_dev = device_to_hv_device(dev); local
418 struct hv_device *hv_dev = device_to_hv_device(dev); local
437 struct hv_device *hv_dev = device_to_hv_device(dev); local
456 struct hv_device *hv_dev = device_to_hv_device(dev); local
475 struct hv_device *hv_dev = device_to_hv_device(dev); local
507 struct hv_device *hv_dev = device_to_hv_device(dev); local
517 struct hv_device *hv_dev = device_to_hv_device(dev); local
527 struct hv_device *hv_dev = device_to_hv_device(dev); local
540 struct hv_device *hv_dev = device_to_hv_device(dev); local
593 const struct hv_device *hv_dev = device_to_hv_device(dev); local
815 struct hv_device *hv_dev = device_to_hv_device(device); local
950 struct hv_device *hv_dev = device_to_hv_device(device); local
[all...]
H A Dhv_balloon.c2082 static int balloon_suspend(struct hv_device *hv_dev) argument
2084 struct hv_dynmem_device *dm = hv_get_drvdata(hv_dev);
2086 tasklet_disable(&hv_dev->channel->callback_event);
2094 vmbus_close(hv_dev->channel);
2097 tasklet_enable(&hv_dev->channel->callback_event);
/linux-master/drivers/uio/
H A Duio_hv_generic.c98 struct hv_device *hv_dev = chan->device_obj; local
99 struct hv_uio_private_data *pdata = hv_get_drvdata(hv_dev);
112 struct hv_device *hv_dev = channel->primary_channel->device_obj; local
113 struct hv_uio_private_data *pdata = hv_get_drvdata(hv_dev);
156 struct hv_device *hv_dev = new_sc->primary_channel->device_obj; local
157 struct device *device = &hv_dev->device;
/linux-master/drivers/scsi/
H A Dstorvsc_drv.c1916 static bool hv_dev_is_fc(struct hv_device *hv_dev) argument
1918 return guid_equal(&fc_guid.guid, &hv_dev->dev_type);
2144 static int storvsc_suspend(struct hv_device *hv_dev) argument
2146 struct storvsc_device *stor_device = hv_get_drvdata(hv_dev);
2154 vmbus_close(hv_dev->channel);
2164 static int storvsc_resume(struct hv_device *hv_dev) argument
2168 ret = storvsc_connect_to_vsp(hv_dev, aligned_ringbuffer_size,
2169 hv_dev_is_fc(hv_dev));
/linux-master/drivers/net/hyperv/
H A Dnetvsc.c975 void netvsc_dma_unmap(struct hv_device *hv_dev, argument
987 dma_unmap_single(&hv_dev->device, packet->dma_range[i].dma,
1012 static int netvsc_dma_map(struct hv_device *hv_dev, argument
1034 dma = dma_map_single(&hv_dev->device, src, len,
1036 if (dma_mapping_error(&hv_dev->device, dma)) {
H A Drndis_filter.c1291 struct hv_device *hv_dev = ndev_ctx->device_ctx; local
1304 ret = vmbus_sendpacket(hv_dev->channel, init_packet,
H A Dhyperv_net.h1803 void netvsc_dma_unmap(struct hv_device *hv_dev,
/linux-master/drivers/pci/controller/
H A Dpci-hyperv.c2360 struct hv_pci_dev *hv_dev; local
2363 hv_dev = get_pcichild_wslot(hbus, devfn_to_wslot(dev->devfn));
2364 if (!hv_dev)
2367 if (hv_dev->desc.flags & HV_PCI_DEVICE_FLAG_NUMA_AFFINITY &&
2368 hv_dev->desc.virtual_numa_node < num_possible_nodes())
2377 hv_dev->desc.virtual_numa_node));
2379 put_pcichild(hv_dev);
/linux-master/net/vmw_vsock/
H A Dhyperv_transport.c895 static int hvs_suspend(struct hv_device *hv_dev) argument

Completed in 150 milliseconds