Commit 9efd21e1 authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman

Staging: hv: Use the probe function in struct hv_driver

Use the newly introduced probe function.
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarAbhishek Kane <v-abkane@microsoft.com>
Signed-off-by: default avatarHank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent db1c1969
...@@ -140,7 +140,7 @@ MODULE_PARM_DESC(ring_size, "Ring buffer size (in bytes)"); ...@@ -140,7 +140,7 @@ MODULE_PARM_DESC(ring_size, "Ring buffer size (in bytes)");
* There is a circular dependency involving blkvsc_probe() * There is a circular dependency involving blkvsc_probe()
* and block_ops. * and block_ops.
*/ */
static int blkvsc_probe(struct device *dev); static int blkvsc_probe(struct hv_device *dev);
static int blk_vsc_on_device_add(struct hv_device *device, static int blk_vsc_on_device_add(struct hv_device *device,
void *additional_info) void *additional_info)
...@@ -882,7 +882,7 @@ static int blkvsc_drv_init(void) ...@@ -882,7 +882,7 @@ static int blkvsc_drv_init(void)
drv->driver.name = storvsc_drv_obj->base.name; drv->driver.name = storvsc_drv_obj->base.name;
drv->driver.probe = blkvsc_probe; drv->probe = blkvsc_probe;
drv->driver.remove = blkvsc_remove; drv->driver.remove = blkvsc_remove;
drv->driver.shutdown = blkvsc_shutdown; drv->driver.shutdown = blkvsc_shutdown;
...@@ -937,11 +937,10 @@ static void blkvsc_drv_exit(void) ...@@ -937,11 +937,10 @@ static void blkvsc_drv_exit(void)
/* /*
* blkvsc_probe - Add a new device for this driver * blkvsc_probe - Add a new device for this driver
*/ */
static int blkvsc_probe(struct device *device) static int blkvsc_probe(struct hv_device *dev)
{ {
struct storvsc_driver_object *storvsc_drv_obj = struct storvsc_driver_object *storvsc_drv_obj =
drv_to_stordrv(device->driver); drv_to_stordrv(dev->device.driver);
struct hv_device *device_obj = device_to_hv_device(device);
struct block_device_context *blkdev = NULL; struct block_device_context *blkdev = NULL;
struct storvsc_device_info device_info; struct storvsc_device_info device_info;
...@@ -961,7 +960,7 @@ static int blkvsc_probe(struct device *device) ...@@ -961,7 +960,7 @@ static int blkvsc_probe(struct device *device)
spin_lock_init(&blkdev->lock); spin_lock_init(&blkdev->lock);
blkdev->request_pool = kmem_cache_create(dev_name(&device_obj->device), blkdev->request_pool = kmem_cache_create(dev_name(&dev->device),
sizeof(struct blkvsc_request), 0, sizeof(struct blkvsc_request), 0,
SLAB_HWCACHE_ALIGN, NULL); SLAB_HWCACHE_ALIGN, NULL);
if (!blkdev->request_pool) { if (!blkdev->request_pool) {
...@@ -971,17 +970,17 @@ static int blkvsc_probe(struct device *device) ...@@ -971,17 +970,17 @@ static int blkvsc_probe(struct device *device)
/* Call to the vsc driver to add the device */ /* Call to the vsc driver to add the device */
ret = storvsc_drv_obj->base.dev_add(device_obj, &device_info); ret = storvsc_drv_obj->base.dev_add(dev, &device_info);
if (ret != 0) if (ret != 0)
goto cleanup; goto cleanup;
blkdev->device_ctx = device_obj; blkdev->device_ctx = dev;
/* this identified the device 0 or 1 */ /* this identified the device 0 or 1 */
blkdev->target = device_info.target_id; blkdev->target = device_info.target_id;
/* this identified the ide ctrl 0 or 1 */ /* this identified the ide ctrl 0 or 1 */
blkdev->path = device_info.path_id; blkdev->path = device_info.path_id;
dev_set_drvdata(device, blkdev); dev_set_drvdata(&dev->device, blkdev);
ret = stor_vsc_get_major_info(&device_info, &major_info); ret = stor_vsc_get_major_info(&device_info, &major_info);
...@@ -1041,7 +1040,7 @@ static int blkvsc_probe(struct device *device) ...@@ -1041,7 +1040,7 @@ static int blkvsc_probe(struct device *device)
return ret; return ret;
remove: remove:
storvsc_drv_obj->base.dev_rm(device_obj); storvsc_drv_obj->base.dev_rm(dev);
cleanup: cleanup:
if (blkdev) { if (blkdev) {
......
...@@ -832,23 +832,22 @@ static void mousevsc_hid_close(struct hid_device *hid) ...@@ -832,23 +832,22 @@ static void mousevsc_hid_close(struct hid_device *hid)
{ {
} }
static int mousevsc_probe(struct device *device) static int mousevsc_probe(struct hv_device *dev)
{ {
int ret = 0; int ret = 0;
struct mousevsc_drv_obj *mousevsc_drv_obj = struct mousevsc_drv_obj *mousevsc_drv_obj =
drv_to_mousedrv(device->driver); drv_to_mousedrv(dev->device.driver);
struct hv_device *device_obj = device_to_hv_device(device);
struct input_device_context *input_dev_ctx; struct input_device_context *input_dev_ctx;
input_dev_ctx = kmalloc(sizeof(struct input_device_context), input_dev_ctx = kmalloc(sizeof(struct input_device_context),
GFP_KERNEL); GFP_KERNEL);
dev_set_drvdata(device, input_dev_ctx); dev_set_drvdata(&dev->device, input_dev_ctx);
/* Call to the vsc driver to add the device */ /* Call to the vsc driver to add the device */
ret = mousevsc_drv_obj->base.dev_add(device_obj, NULL); ret = mousevsc_drv_obj->base.dev_add(dev, NULL);
if (ret != 0) { if (ret != 0) {
DPRINT_ERR(INPUTVSC_DRV, "unable to add input vsc device"); DPRINT_ERR(INPUTVSC_DRV, "unable to add input vsc device");
...@@ -1023,7 +1022,7 @@ static int __init mousevsc_init(void) ...@@ -1023,7 +1022,7 @@ static int __init mousevsc_init(void)
drv->driver.name = input_drv_obj->base.name; drv->driver.name = input_drv_obj->base.name;
drv->driver.probe = mousevsc_probe; drv->probe = mousevsc_probe;
drv->driver.remove = mousevsc_remove; drv->driver.remove = mousevsc_remove;
/* The driver belongs to vmbus */ /* The driver belongs to vmbus */
......
...@@ -340,11 +340,10 @@ static void netvsc_send_garp(struct work_struct *w) ...@@ -340,11 +340,10 @@ static void netvsc_send_garp(struct work_struct *w)
} }
static int netvsc_probe(struct device *device) static int netvsc_probe(struct hv_device *dev)
{ {
struct netvsc_driver *net_drv_obj = struct netvsc_driver *net_drv_obj =
drv_to_netvscdrv(device->driver); drv_to_netvscdrv(dev->device.driver);
struct hv_device *device_obj = device_to_hv_device(device);
struct net_device *net = NULL; struct net_device *net = NULL;
struct net_device_context *net_device_ctx; struct net_device_context *net_device_ctx;
struct netvsc_device_info device_info; struct netvsc_device_info device_info;
...@@ -361,16 +360,16 @@ static int netvsc_probe(struct device *device) ...@@ -361,16 +360,16 @@ static int netvsc_probe(struct device *device)
netif_carrier_off(net); netif_carrier_off(net);
net_device_ctx = netdev_priv(net); net_device_ctx = netdev_priv(net);
net_device_ctx->device_ctx = device_obj; net_device_ctx->device_ctx = dev;
net_device_ctx->avail = ring_size; net_device_ctx->avail = ring_size;
dev_set_drvdata(device, net); dev_set_drvdata(&dev->device, net);
INIT_WORK(&net_device_ctx->work, netvsc_send_garp); INIT_WORK(&net_device_ctx->work, netvsc_send_garp);
/* Notify the netvsc driver of the new device */ /* Notify the netvsc driver of the new device */
ret = net_drv_obj->base.dev_add(device_obj, &device_info); ret = net_drv_obj->base.dev_add(dev, &device_info);
if (ret != 0) { if (ret != 0) {
free_netdev(net); free_netdev(net);
dev_set_drvdata(device, NULL); dev_set_drvdata(&dev->device, NULL);
netdev_err(net, "unable to add netvsc device (ret %d)\n", ret); netdev_err(net, "unable to add netvsc device (ret %d)\n", ret);
return ret; return ret;
...@@ -397,12 +396,12 @@ static int netvsc_probe(struct device *device) ...@@ -397,12 +396,12 @@ static int netvsc_probe(struct device *device)
net->features = NETIF_F_SG; net->features = NETIF_F_SG;
SET_ETHTOOL_OPS(net, &ethtool_ops); SET_ETHTOOL_OPS(net, &ethtool_ops);
SET_NETDEV_DEV(net, device); SET_NETDEV_DEV(net, &dev->device);
ret = register_netdev(net); ret = register_netdev(net);
if (ret != 0) { if (ret != 0) {
/* Remove the device and release the resource */ /* Remove the device and release the resource */
net_drv_obj->base.dev_rm(device_obj); net_drv_obj->base.dev_rm(dev);
free_netdev(net); free_netdev(net);
} }
...@@ -501,7 +500,7 @@ static int netvsc_drv_init(int (*drv_init)(struct hv_driver *drv)) ...@@ -501,7 +500,7 @@ static int netvsc_drv_init(int (*drv_init)(struct hv_driver *drv))
drv->driver.name = net_drv_obj->base.name; drv->driver.name = net_drv_obj->base.name;
drv->driver.probe = netvsc_probe; drv->probe = netvsc_probe;
drv->driver.remove = netvsc_remove; drv->driver.remove = netvsc_remove;
/* The driver belongs to vmbus */ /* The driver belongs to vmbus */
......
...@@ -123,7 +123,7 @@ static int stor_vsc_initialize(struct hv_driver *driver) ...@@ -123,7 +123,7 @@ static int stor_vsc_initialize(struct hv_driver *driver)
} }
/* Static decl */ /* Static decl */
static int storvsc_probe(struct device *dev); static int storvsc_probe(struct hv_device *dev);
static int storvsc_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *scmnd); static int storvsc_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *scmnd);
static int storvsc_device_alloc(struct scsi_device *); static int storvsc_device_alloc(struct scsi_device *);
static int storvsc_device_configure(struct scsi_device *); static int storvsc_device_configure(struct scsi_device *);
...@@ -213,7 +213,7 @@ static int storvsc_drv_init(void) ...@@ -213,7 +213,7 @@ static int storvsc_drv_init(void)
drv->driver.name = storvsc_drv_obj->base.name; drv->driver.name = storvsc_drv_obj->base.name;
drv->driver.probe = storvsc_probe; drv->probe = storvsc_probe;
drv->driver.remove = storvsc_remove; drv->driver.remove = storvsc_remove;
/* The driver belongs to vmbus */ /* The driver belongs to vmbus */
...@@ -320,12 +320,11 @@ static void storvsc_drv_exit(void) ...@@ -320,12 +320,11 @@ static void storvsc_drv_exit(void)
/* /*
* storvsc_probe - Add a new device for this driver * storvsc_probe - Add a new device for this driver
*/ */
static int storvsc_probe(struct device *device) static int storvsc_probe(struct hv_device *device)
{ {
int ret; int ret;
struct storvsc_driver_object *storvsc_drv_obj = struct storvsc_driver_object *storvsc_drv_obj =
drv_to_stordrv(device->driver); drv_to_stordrv(device->device.driver);
struct hv_device *device_obj = device_to_hv_device(device);
struct Scsi_Host *host; struct Scsi_Host *host;
struct host_device_context *host_device_ctx; struct host_device_context *host_device_ctx;
struct storvsc_device_info device_info; struct storvsc_device_info device_info;
...@@ -340,16 +339,16 @@ static int storvsc_probe(struct device *device) ...@@ -340,16 +339,16 @@ static int storvsc_probe(struct device *device)
return -ENOMEM; return -ENOMEM;
} }
dev_set_drvdata(device, host); dev_set_drvdata(&device->device, host);
host_device_ctx = (struct host_device_context *)host->hostdata; host_device_ctx = (struct host_device_context *)host->hostdata;
memset(host_device_ctx, 0, sizeof(struct host_device_context)); memset(host_device_ctx, 0, sizeof(struct host_device_context));
host_device_ctx->port = host->host_no; host_device_ctx->port = host->host_no;
host_device_ctx->device_ctx = device_obj; host_device_ctx->device_ctx = device;
host_device_ctx->request_pool = host_device_ctx->request_pool =
kmem_cache_create(dev_name(&device_obj->device), kmem_cache_create(dev_name(&device->device),
sizeof(struct storvsc_cmd_request), 0, sizeof(struct storvsc_cmd_request), 0,
SLAB_HWCACHE_ALIGN, NULL); SLAB_HWCACHE_ALIGN, NULL);
...@@ -360,8 +359,8 @@ static int storvsc_probe(struct device *device) ...@@ -360,8 +359,8 @@ static int storvsc_probe(struct device *device)
device_info.port_number = host->host_no; device_info.port_number = host->host_no;
/* Call to the vsc driver to add the device */ /* Call to the vsc driver to add the device */
ret = storvsc_drv_obj->base.dev_add(device_obj, ret = storvsc_drv_obj->base.dev_add(device, (void *)&device_info);
(void *)&device_info);
if (ret != 0) { if (ret != 0) {
DPRINT_ERR(STORVSC_DRV, "unable to add scsi vsc device"); DPRINT_ERR(STORVSC_DRV, "unable to add scsi vsc device");
kmem_cache_destroy(host_device_ctx->request_pool); kmem_cache_destroy(host_device_ctx->request_pool);
...@@ -381,11 +380,11 @@ static int storvsc_probe(struct device *device) ...@@ -381,11 +380,11 @@ static int storvsc_probe(struct device *device)
host->max_channel = STORVSC_MAX_CHANNELS - 1; host->max_channel = STORVSC_MAX_CHANNELS - 1;
/* Register the HBA and start the scsi bus scan */ /* Register the HBA and start the scsi bus scan */
ret = scsi_add_host(host, device); ret = scsi_add_host(host, &device->device);
if (ret != 0) { if (ret != 0) {
DPRINT_ERR(STORVSC_DRV, "unable to add scsi host device"); DPRINT_ERR(STORVSC_DRV, "unable to add scsi host device");
storvsc_drv_obj->base.dev_rm(device_obj); storvsc_drv_obj->base.dev_rm(device);
kmem_cache_destroy(host_device_ctx->request_pool); kmem_cache_destroy(host_device_ctx->request_pool);
scsi_host_put(host); scsi_host_put(host);
......
...@@ -319,10 +319,10 @@ static int vmbus_probe(struct device *child_device) ...@@ -319,10 +319,10 @@ static int vmbus_probe(struct device *child_device)
int ret = 0; int ret = 0;
struct hv_driver *drv = struct hv_driver *drv =
drv_to_hv_drv(child_device->driver); drv_to_hv_drv(child_device->driver);
struct hv_device *dev = device_to_hv_device(child_device);
/* Let the specific open-source driver handles the probe if it can */ if (drv->probe) {
if (drv->driver.probe) { ret = drv->probe(dev);
ret = drv->driver.probe(child_device);
if (ret != 0) if (ret != 0)
pr_err("probe failed for device %s (%d)\n", pr_err("probe failed for device %s (%d)\n",
dev_name(child_device), ret); dev_name(child_device), ret);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment