From 313176636ee8c24cf1464cfec159d41ffcffacb3 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Mon, 27 Mar 2006 04:34:38 +0000 Subject: Remove ident arg from getinfo_super; Add a 'name' field to 'info' to compensate. Signed-off-by: Neil Brown --- Grow.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Grow.c') diff --git a/Grow.c b/Grow.c index 4432922..04de455 100644 --- a/Grow.c +++ b/Grow.c @@ -835,7 +835,6 @@ int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt for (i=old_disks; iss->load_super(st, fdlist[i], &super, NULL)) continue; - st->ss->getinfo_super(&dinfo, &id, super); + st->ss->getinfo_super(&dinfo, super); free(super); super = NULL; if (lseek64(fdlist[i], (dinfo.data_offset + dinfo.component_size - 8) <<9, @@ -893,7 +892,7 @@ int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt if (st->ss->load_super(st, fdlist[j], &super, NULL)) /* FIXME should be this be an error */ continue; - st->ss->getinfo_super(&dinfo, &id, super); + st->ss->getinfo_super(&dinfo, super); free(super); super = NULL; offsets[j] = dinfo.data_offset; } @@ -916,7 +915,7 @@ int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt if (fdlist[j] < 0) continue; if (st->ss->load_super(st, fdlist[j], &super, NULL)) continue; - st->ss->getinfo_super(&dinfo, &id, super); + st->ss->getinfo_super(&dinfo, super); dinfo.reshape_progress = __le64_to_cpu(bsb.length); st->ss->update_super(&dinfo, super, "_reshape_progress",NULL,0); st->ss->store_super(st, fdlist[j], super); -- cgit