diff options
author | Hannes Reinecke <hare@suse.de> | 2012-03-28 13:41:24 -0400 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2012-03-28 13:41:24 -0400 |
commit | 574ce07eb0014069f1da763c219bb30ea4c266ec (patch) | |
tree | f5f5543a30f2e2937cfd96dea28ae17f4b0c9544 /drivers/md | |
parent | fe878f34df89ad4af758f40bbec829807dc93a00 (diff) |
dm table: simplify call to free_devices
free_devices in dm_table.c already uses list_for_each(), so we don't
need to check if the list is empty.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-table.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c index 63cc54289aff..a3d1e18317f4 100644 --- a/drivers/md/dm-table.c +++ b/drivers/md/dm-table.c | |||
@@ -268,8 +268,7 @@ void dm_table_destroy(struct dm_table *t) | |||
268 | vfree(t->highs); | 268 | vfree(t->highs); |
269 | 269 | ||
270 | /* free the device list */ | 270 | /* free the device list */ |
271 | if (t->devices.next != &t->devices) | 271 | free_devices(&t->devices); |
272 | free_devices(&t->devices); | ||
273 | 272 | ||
274 | dm_free_md_mempools(t->mempools); | 273 | dm_free_md_mempools(t->mempools); |
275 | 274 | ||