* [PATCH] btrfs-progs: add always option to restore's looping prompt
@ 2014-07-29 0:03 Justin Maggard
2014-07-29 1:11 ` Qu Wenruo
0 siblings, 1 reply; 2+ messages in thread
From: Justin Maggard @ 2014-07-29 0:03 UTC (permalink / raw)
To: linux-btrfs; +Cc: Justin Maggard
If you are using btrfs restore to try to recover a very large or
fragmented file, you may encounter _lots_ of prompts requiring
you to press 'y' to continue because we are looping a lot.
Add the option to press 'a', to supress these prompts for the rest
of the file.
---
cmds-restore.c | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/cmds-restore.c b/cmds-restore.c
index 96b97e1..ae95d5a 100644
--- a/cmds-restore.c
+++ b/cmds-restore.c
@@ -410,17 +410,19 @@ static int ask_to_continue(const char *file)
char *ret;
printf("We seem to be looping a lot on %s, do you want to keep going "
- "on ? (y/N): ", file);
+ "on ? (y/N/a): ", file);
again:
ret = fgets(buf, 2, stdin);
if (*ret == '\n' || tolower(*ret) == 'n')
- return 1;
+ return 0;
+ if (tolower(*ret) == 'a')
+ return 2;
if (tolower(*ret) != 'y') {
printf("Please enter either 'y' or 'n': ");
goto again;
}
- return 0;
+ return 1;
}
@@ -588,11 +590,14 @@ static int copy_file(struct btrfs_root *root, int fd, struct btrfs_key *key,
}
while (1) {
- if (loops++ >= 1024) {
+ if (loops >= 0 && loops++ >= 1024) {
ret = ask_to_continue(file);
- if (ret)
+ if (ret == 0)
break;
- loops = 0;
+ else if (ret == 1)
+ loops = 0;
+ else if (ret == 2)
+ loops = -1;
}
if (path->slots[0] >= btrfs_header_nritems(leaf)) {
do {
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] btrfs-progs: add always option to restore's looping prompt
2014-07-29 0:03 [PATCH] btrfs-progs: add always option to restore's looping prompt Justin Maggard
@ 2014-07-29 1:11 ` Qu Wenruo
0 siblings, 0 replies; 2+ messages in thread
From: Qu Wenruo @ 2014-07-29 1:11 UTC (permalink / raw)
To: Justin Maggard, linux-btrfs
Hi Justin,
Thanks for the patch first, comment inlined below.
-------- Original Message --------
Subject: [PATCH] btrfs-progs: add always option to restore's looping prompt
From: Justin Maggard <jmaggard10@gmail.com>
To: <linux-btrfs@vger.kernel.org>
Date: 2014年07月29日 08:03
> If you are using btrfs restore to try to recover a very large or
> fragmented file, you may encounter _lots_ of prompts requiring
> you to press 'y' to continue because we are looping a lot.
>
> Add the option to press 'a', to supress these prompts for the rest
> of the file.
> ---
> cmds-restore.c | 17 +++++++++++------
> 1 file changed, 11 insertions(+), 6 deletions(-)
>
> diff --git a/cmds-restore.c b/cmds-restore.c
> index 96b97e1..ae95d5a 100644
> --- a/cmds-restore.c
> +++ b/cmds-restore.c
> @@ -410,17 +410,19 @@ static int ask_to_continue(const char *file)
> char *ret;
>
> printf("We seem to be looping a lot on %s, do you want to keep going "
> - "on ? (y/N): ", file);
> + "on ? (y/N/a): ", file);
> again:
> ret = fgets(buf, 2, stdin);
> if (*ret == '\n' || tolower(*ret) == 'n')
> - return 1;
> + return 0;
> + if (tolower(*ret) == 'a')
> + return 2;
> if (tolower(*ret) != 'y') {
> printf("Please enter either 'y' or 'n': ");
Since option 'a' is added, it would be better to change the prompt and
add 'a' to it.
> goto again;
> }
>
> - return 0;
> + return 1;
> }
If add any comment or change the return value from immediate number to
more meaningful defined number,
it would be much more easier to understand and expend.
Especially when the return value has difference meaning with original one.
>
>
> @@ -588,11 +590,14 @@ static int copy_file(struct btrfs_root *root, int fd, struct btrfs_key *key,
> }
>
> while (1) {
> - if (loops++ >= 1024) {
> + if (loops >= 0 && loops++ >= 1024) {
> ret = ask_to_continue(file);
> - if (ret)
> + if (ret == 0)
> break;
> - loops = 0;
> + else if (ret == 1)
> + loops = 0;
> + else if (ret == 2)
> + loops = -1;
> }
> if (path->slots[0] >= btrfs_header_nritems(leaf)) {
> do {
Also, just a suggestion and you can ignore it without any problem,
utils.c provide ask_to_continue() function to provide similar behavior,
what about improve the one in utils.c
and reuse the ask_to_continue() function?
Thanks,
Qu
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-07-29 1:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-29 0:03 [PATCH] btrfs-progs: add always option to restore's looping prompt Justin Maggard
2014-07-29 1:11 ` Qu Wenruo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).