diff options
author | Dan Williams <dan.j.williams@intel.com> | 2016-01-06 12:19:22 -0800 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2016-01-09 08:39:04 -0800 |
commit | d3b407fb3f782bd915db64e266010ea30a2d381e (patch) | |
tree | 2f6b62c418f28892adcdd6a52a2b874b64e34fa7 /drivers | |
parent | ad9a8bde2cb19f6876f964fc48acc8b6a2f325ff (diff) | |
download | linux-d3b407fb3f782bd915db64e266010ea30a2d381e.tar.bz2 |
badblocks: rename badblocks_free to badblocks_exit
For symmetry with badblocks_init() make it clear that this path only
destroys incremental allocations of a badblocks instance, and does not
free the badblocks instance itself.
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/md/md.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 1e48aa9de352..96a991821ae6 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -710,7 +710,7 @@ void md_rdev_clear(struct md_rdev *rdev) put_page(rdev->bb_page); rdev->bb_page = NULL; } - badblocks_free(&rdev->badblocks); + badblocks_exit(&rdev->badblocks); } EXPORT_SYMBOL_GPL(md_rdev_clear); |