diff options
author | Ian Campbell <ian.campbell@citrix.com> | 2009-12-04 10:33:54 -0500 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2010-08-07 12:26:39 -0400 |
commit | 203fd61f42fec81f43bc5abbf2d3755e04e000af (patch) | |
tree | 6069f457c559327b52f5fe2b68d74d625dd80057 /drivers/block/xen-blkfront.c | |
parent | 96dccab1d63cb35d3f5e75d2ef275fdbff4d5f3b (diff) |
xen: use less generic names in blkfront driver.
All Xen frontend drivers have a couple of identically named functions which
makes figuring out which device went wrong from a stacktrace harder than it
needs to be. Rename them to something specificto the device type.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Cc: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'drivers/block/xen-blkfront.c')
-rw-r--r-- | drivers/block/xen-blkfront.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c index 91374282755d..304009e77c73 100644 --- a/drivers/block/xen-blkfront.c +++ b/drivers/block/xen-blkfront.c | |||
@@ -651,7 +651,7 @@ fail: | |||
651 | 651 | ||
652 | 652 | ||
653 | /* Common code used when first setting up, and when resuming. */ | 653 | /* Common code used when first setting up, and when resuming. */ |
654 | static int talk_to_backend(struct xenbus_device *dev, | 654 | static int talk_to_blkback(struct xenbus_device *dev, |
655 | struct blkfront_info *info) | 655 | struct blkfront_info *info) |
656 | { | 656 | { |
657 | const char *message = NULL; | 657 | const char *message = NULL; |
@@ -756,7 +756,7 @@ static int blkfront_probe(struct xenbus_device *dev, | |||
756 | info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0); | 756 | info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0); |
757 | dev_set_drvdata(&dev->dev, info); | 757 | dev_set_drvdata(&dev->dev, info); |
758 | 758 | ||
759 | err = talk_to_backend(dev, info); | 759 | err = talk_to_blkback(dev, info); |
760 | if (err) { | 760 | if (err) { |
761 | kfree(info); | 761 | kfree(info); |
762 | dev_set_drvdata(&dev->dev, NULL); | 762 | dev_set_drvdata(&dev->dev, NULL); |
@@ -851,7 +851,7 @@ static int blkfront_resume(struct xenbus_device *dev) | |||
851 | 851 | ||
852 | blkif_free(info, info->connected == BLKIF_STATE_CONNECTED); | 852 | blkif_free(info, info->connected == BLKIF_STATE_CONNECTED); |
853 | 853 | ||
854 | err = talk_to_backend(dev, info); | 854 | err = talk_to_blkback(dev, info); |
855 | if (info->connected == BLKIF_STATE_SUSPENDED && !err) | 855 | if (info->connected == BLKIF_STATE_SUSPENDED && !err) |
856 | err = blkif_recover(info); | 856 | err = blkif_recover(info); |
857 | 857 | ||
@@ -955,13 +955,13 @@ static void blkfront_closing(struct xenbus_device *dev) | |||
955 | /** | 955 | /** |
956 | * Callback received when the backend's state changes. | 956 | * Callback received when the backend's state changes. |
957 | */ | 957 | */ |
958 | static void backend_changed(struct xenbus_device *dev, | 958 | static void blkback_changed(struct xenbus_device *dev, |
959 | enum xenbus_state backend_state) | 959 | enum xenbus_state backend_state) |
960 | { | 960 | { |
961 | struct blkfront_info *info = dev_get_drvdata(&dev->dev); | 961 | struct blkfront_info *info = dev_get_drvdata(&dev->dev); |
962 | struct block_device *bd; | 962 | struct block_device *bd; |
963 | 963 | ||
964 | dev_dbg(&dev->dev, "blkfront:backend_changed.\n"); | 964 | dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state); |
965 | 965 | ||
966 | switch (backend_state) { | 966 | switch (backend_state) { |
967 | case XenbusStateInitialising: | 967 | case XenbusStateInitialising: |
@@ -1068,7 +1068,7 @@ static struct xenbus_driver blkfront = { | |||
1068 | .probe = blkfront_probe, | 1068 | .probe = blkfront_probe, |
1069 | .remove = blkfront_remove, | 1069 | .remove = blkfront_remove, |
1070 | .resume = blkfront_resume, | 1070 | .resume = blkfront_resume, |
1071 | .otherend_changed = backend_changed, | 1071 | .otherend_changed = blkback_changed, |
1072 | .is_ready = blkfront_is_ready, | 1072 | .is_ready = blkfront_is_ready, |
1073 | }; | 1073 | }; |
1074 | 1074 | ||