X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=fsck.c;h=19f7be67739a5f1a0751e4f9dcb1460a4f45084b;hp=5f95b74fa1ed74dd5aca25e4bad749b42aa7068f;hb=c458b9d45e7c6ddda6285fca3797fddff815bd0a;hpb=3689799ede7bba230ca544ac953392b428c3d662 diff --git a/fsck.c b/fsck.c index 5f95b74f..19f7be67 100644 --- a/fsck.c +++ b/fsck.c @@ -571,6 +571,7 @@ static int check_disk_storage_columns(struct osl_table *t) out_close_hash_tree: osl_close_table(hash_tree_table, 0); free(hashes); + hashes = NULL; out: clear_rbtrees(t); /* TODO why are we doing that here? Seems odd */ return ret; @@ -750,7 +751,7 @@ static int dump_row(struct osl_table *t, unsigned row_num, const char *row_dir) if (!t->num_disk_storage_columns) return 1; dsnc = t->disk_storage_name_column; - ret = get_mapped_object(t, dsnc, i, &obj); + ret = get_mapped_object(t, dsnc, row_num, &obj); if (ret < 0) return ret; hash_object(&obj, hash); @@ -788,12 +789,12 @@ static int dump_rows(char *dump_dir, struct osl_table *t) current_dir = make_message("%s/rows_%u-%u", dump_dir, i, i + 999); PARA_NOTICE_LOG("dumping rows %u - %u\n", i, i + 999); ret = para_mkdir(current_dir, 0777); - if (ret < 0) + if (ret < 0 && !is_errno(-ret, EEXIST)) goto out; } row_dir = make_message("%s/row_%03u", current_dir, i); ret = para_mkdir(row_dir, 0777); - if (ret < 0) { + if (ret < 0 && !is_errno(-ret, EEXIST)) { free(row_dir); goto out; } @@ -812,13 +813,18 @@ static int dump_table(char *dump_dir, struct osl_table_description *desc) struct osl_table *t = NULL; int fd, ret = fsck_init(desc, &t); char *desc_file; + char *table_dump_dir = NULL; if (ret < 0) goto out; ret = para_mkdir(dump_dir, 0777); - if (ret < 0) + if (ret < 0 && !is_errno(-ret, EEXIST)) + goto out; + table_dump_dir = make_message("%s/%s", dump_dir, desc->name); + ret = para_mkdir(table_dump_dir, 0777); + if (ret < 0 && !is_errno(-ret, EEXIST)) goto out; - desc_file = make_message("%s/table_description.c", dump_dir); + desc_file = make_message("%s/table_description.c", table_dump_dir); ret = para_open(desc_file, O_WRONLY | O_CREAT | O_EXCL, 0644); free(desc_file); if (ret < 0) @@ -828,8 +834,9 @@ static int dump_table(char *dump_dir, struct osl_table_description *desc) close(fd); if (ret < 0) goto out; - ret = dump_rows(dump_dir, t); + ret = dump_rows(table_dump_dir, t); out: + free(table_dump_dir); fsck_cleanup(t); return ret; } @@ -920,7 +927,7 @@ static int check_all_tables(char *base_dir) return ret; } -int main(__a_unused int argc, char **argv) +int main(int argc, char **argv) { int i, ret; char *base_dir = NULL;