aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJun'ichi Nomura <j-nomura@ce.jp.nec.com>2008-02-08 02:10:04 +0000
committerAlasdair G Kergon <agk@redhat.com>2008-02-08 02:10:04 +0000
commit82d601dc076deb5f348cc3a70f57248bc976ae0c (patch)
tree9047dc31a5fde553b64b96bc5b426065b77772c2 /drivers
parentdm: table remove unused variable (diff)
downloadlinux-dev-82d601dc076deb5f348cc3a70f57248bc976ae0c.tar.xz
linux-dev-82d601dc076deb5f348cc3a70f57248bc976ae0c.zip
dm: table remove unused total
"total = 0" does nothing. Signed-off-by: Jun'ichi Nomura <j-nomura@ce.jp.nec.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/md/dm-table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c
index d2eb3c593682..444a4fb64328 100644
--- a/drivers/md/dm-table.c
+++ b/drivers/md/dm-table.c
@@ -804,7 +804,7 @@ static int setup_indexes(struct dm_table *t)
return -ENOMEM;
/* set up internal nodes, bottom-up */
- for (i = t->depth - 2, total = 0; i >= 0; i--) {
+ for (i = t->depth - 2; i >= 0; i--) {
t->index[i] = indexes;
indexes += (KEYS_PER_NODE * t->counts[i]);
setup_btree_index(i, t);