Skip to content

Commit

Permalink
Staging: hv: Move probe_failed_work_item from vm_device
Browse files Browse the repository at this point in the history
In preparation for consolidating all device related state into
struct hv_device, move probe_failed_work_item from vm_device to
hv_device.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Abhishek Kane <v-abkane@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Mar 7, 2011
1 parent 4af27d7 commit a3c7fe9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion drivers/staging/hv/vmbus.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@


struct vm_device {
struct work_struct probe_failed_work_item;
struct hv_guid class_id;
struct hv_guid device_id;
int probe_error;
Expand Down
3 changes: 3 additions & 0 deletions drivers/staging/hv/vmbus_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#define _VMBUS_API_H_

#include <linux/device.h>
#include <linux/workqueue.h>

#define MAX_PAGE_BUFFER_COUNT 16
#define MAX_MULTIPAGE_BUFFER_COUNT 32 /* 128K */
Expand Down Expand Up @@ -117,6 +118,8 @@ struct hv_device {

char name[64];

struct work_struct probe_failed_work_item;

/* the device type id of this device */
struct hv_guid dev_type;

Expand Down
5 changes: 3 additions & 2 deletions drivers/staging/hv/vmbus_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,7 @@ static int vmbus_probe(struct device *child_device)
drv_to_hv_drv(child_device->driver);
struct vm_device *device_ctx =
device_to_vm_device(child_device);
struct hv_device *dev = &device_ctx->device_obj;

/* Let the specific open-source driver handles the probe if it can */
if (drv->driver.probe) {
Expand All @@ -915,9 +916,9 @@ static int vmbus_probe(struct device *child_device)
dev_name(child_device), child_device,
child_device->driver->name, ret);

INIT_WORK(&device_ctx->probe_failed_work_item,
INIT_WORK(&dev->probe_failed_work_item,
vmbus_probe_failed_cb);
schedule_work(&device_ctx->probe_failed_work_item);
schedule_work(&dev->probe_failed_work_item);
}
} else {
DPRINT_ERR(VMBUS_DRV, "probe() method not set for driver - %s",
Expand Down

0 comments on commit a3c7fe9

Please sign in to comment.