aboutsummaryrefslogtreecommitdiff
path: root/drivers/md/dm-mpath.c
diff options
context:
space:
mode:
authorGravatar Mike Snitzer <snitzer@redhat.com> 2015-02-23 16:36:41 -0500
committerGravatar Mike Snitzer <snitzer@redhat.com> 2015-03-31 12:03:49 -0400
commit52b09914af86fa3e728175c1125c91520e437b2f (patch)
treef2cea55f24fb5273f60927cc9314a318f6754fa1 /drivers/md/dm-mpath.c
parentdm: rename __dm_get_reserved_ios() helper to __dm_get_module_param() (diff)
downloadlinux-52b09914af86fa3e728175c1125c91520e437b2f.tar.gz
linux-52b09914af86fa3e728175c1125c91520e437b2f.tar.bz2
linux-52b09914af86fa3e728175c1125c91520e437b2f.zip
dm: remove unnecessary wrapper around blk_lld_busy
There is no need for DM to export a wrapper around the already exported blk_lld_busy(). Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md/dm-mpath.c')
-rw-r--r--drivers/md/dm-mpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c
index d376dc87716e..add6391f3f8e 100644
--- a/drivers/md/dm-mpath.c
+++ b/drivers/md/dm-mpath.c
@@ -1627,7 +1627,7 @@ static int __pgpath_busy(struct pgpath *pgpath)
{
struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
- return dm_underlying_device_busy(q);
+ return blk_lld_busy(q);
}
/*