[dm-devel] [PATCH] dm: make dm_table_alloc_md_mempools static

Mikulas Patocka mpatocka at redhat.com
Thu Feb 13 18:43:32 UTC 2014


Make the function dm_table_alloc_md_mempools static because it is not
called from another module.

Signed-off-by: Mikulas Patocka <mpatocka at redhat.com>

---
 drivers/md/dm-table.c |    2 +-
 drivers/md/dm.h       |    1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

Index: linux-3.14-rc1/drivers/md/dm-table.c
===================================================================
--- linux-3.14-rc1.orig/drivers/md/dm-table.c	2014-02-06 13:37:06.000000000 +0100
+++ linux-3.14-rc1/drivers/md/dm-table.c	2014-02-06 13:37:17.000000000 +0100
@@ -957,7 +957,7 @@ bool dm_table_request_based(struct dm_ta
 	return dm_table_get_type(t) == DM_TYPE_REQUEST_BASED;
 }
 
-int dm_table_alloc_md_mempools(struct dm_table *t)
+static int dm_table_alloc_md_mempools(struct dm_table *t)
 {
 	unsigned type = dm_table_get_type(t);
 	unsigned per_bio_data_size = 0;
Index: linux-3.14-rc1/drivers/md/dm.h
===================================================================
--- linux-3.14-rc1.orig/drivers/md/dm.h	2014-02-06 13:36:53.000000000 +0100
+++ linux-3.14-rc1/drivers/md/dm.h	2014-02-06 13:37:01.000000000 +0100
@@ -73,7 +73,6 @@ unsigned dm_table_get_type(struct dm_tab
 struct target_type *dm_table_get_immutable_target_type(struct dm_table *t);
 bool dm_table_request_based(struct dm_table *t);
 bool dm_table_supports_discards(struct dm_table *t);
-int dm_table_alloc_md_mempools(struct dm_table *t);
 void dm_table_free_md_mempools(struct dm_table *t);
 struct dm_md_mempools *dm_table_get_md_mempools(struct dm_table *t);
 




More information about the dm-devel mailing list