aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/badblocks.h
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2016-01-06 12:19:22 -0800
committerDan Williams <dan.j.williams@intel.com>2016-01-09 08:39:04 -0800
commitd3b407fb3f782bd915db64e266010ea30a2d381e (patch)
tree2f6b62c418f28892adcdd6a52a2b874b64e34fa7 /include/linux/badblocks.h
parentlibnvdimm, pmem: move definition of nvdimm_namespace_add_poison to nd.h (diff)
downloadwireguard-linux-d3b407fb3f782bd915db64e266010ea30a2d381e.tar.xz
wireguard-linux-d3b407fb3f782bd915db64e266010ea30a2d381e.zip
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 'include/linux/badblocks.h')
-rw-r--r--include/linux/badblocks.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/badblocks.h b/include/linux/badblocks.h
index 929344630b51..2d98c026c57f 100644
--- a/include/linux/badblocks.h
+++ b/include/linux/badblocks.h
@@ -48,6 +48,6 @@ ssize_t badblocks_show(struct badblocks *bb, char *page, int unack);
ssize_t badblocks_store(struct badblocks *bb, const char *page, size_t len,
int unack);
int badblocks_init(struct badblocks *bb, int enable);
-void badblocks_free(struct badblocks *bb);
+void badblocks_exit(struct badblocks *bb);
#endif