retval = ext2fs_new_block2(fs, 0, ctx->block_found_map, &blk);
if (retval == EXT2_ET_BLOCK_ALLOC_FAIL &&
fix_problem(ctx, PR_3_LPF_NO_SPACE, &pctx)) {
- printf("Delete some files and re-run e2fsck.\n\n");
+ fix_problem(ctx, PR_3_NO_SPACE_TO_RECOVER, &pctx);
ctx->lost_and_found = EXT2_ROOT_INO;
return 0;
}
ctx->inode_used_map, &ino);
if (retval == EXT2_ET_INODE_ALLOC_FAIL &&
fix_problem(ctx, PR_3_LPF_NO_SPACE, &pctx)) {
- printf("Delete some files and re-run e2fsck.\n\n");
+ fix_problem(ctx, PR_3_NO_SPACE_TO_RECOVER, &pctx);
ctx->lost_and_found = EXT2_ROOT_INO;
return 0;
}
N_("Cannot allocate space for /@l.\nPlace lost files in root directory instead"),
PROMPT_NULL, 0 },
+ /* Delete some files and re-run e2fsck. */
+ { PR_3_NO_SPACE_TO_RECOVER,
+ N_("Insufficient space to recover lost files!\nMove data off the @f and re-run e2fsck.\n\n"),
+ PROMPT_NONE, 0 },
+
/* Pass 3A Directory Optimization */
/* Pass 3A: Optimizing directories */
/* Cannot allocate lost+found */
#define PR_3_LPF_NO_SPACE 0x030019
+/* Insufficient space to recover lost files */
+#define PR_3_NO_SPACE_TO_RECOVER 0x03001A
+
/*
* Pass 3a --- rehashing diretories
*/
Cannot allocate space for /lost+found.
Place lost files in root directory instead? yes
-Delete some files and re-run e2fsck.
+Insufficient space to recover lost files!
+Move data off the filesystem and re-run e2fsck.
Pass 3A: Optimizing directories
Pass 4: Checking reference counts
Cannot allocate space for /lost+found.
Place lost files in root directory instead? yes
-Delete some files and re-run e2fsck.
+Insufficient space to recover lost files!
+Move data off the filesystem and re-run e2fsck.
Pass 4: Checking reference counts
Pass 5: Checking group summary information