* [Qemu-devel] [PATCH] qemu-img: mandate argument to 'qemu-img check --repair'
@ 2014-03-24 18:38 Prasad Joshi
2014-03-24 18:57 ` Leandro Dorileo
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Prasad Joshi @ 2014-03-24 18:38 UTC (permalink / raw)
To: prasadjoshi.linux; +Cc: kwolf, qemu-trivial, pl, qemu-devel, stefanha, pbonzini
qemu-img check --repair option accepts an argument. The argument to
--repair switch can either be 'all' or 'leak'. Fix the long option to
mandate argument with --repair switch.
The patch fixes following segmentation fault
Core was generated by `qemu-img check -f qcow2 --repair all t.qcow2'.
Program terminated with signal 11, Segmentation fault.
0 in img_check (argc=6, argv=0x7fffab9b8a10) at qemu-img.c:588
588 if (!strcmp(optarg, "leaks")) {
(gdb) bt
0 img_check (argc=6, argv=0x7fffab9b8a10) at qemu-img.c:588
1 __libc_start_main () from /lib/x86_64-linux-gnu/libc.so.6
2 _start ()
(gdb)
Signed-off-by: Prasad Joshi <prasadjoshi.linux@gmail.com>
---
qemu-img.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qemu-img.c b/qemu-img.c
index 2e40cc1..77d946b 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -565,7 +565,7 @@ static int img_check(int argc, char **argv)
static const struct option long_options[] = {
{"help", no_argument, 0, 'h'},
{"format", required_argument, 0, 'f'},
- {"repair", no_argument, 0, 'r'},
+ {"repair", required_argument, 0, 'r'},
{"output", required_argument, 0, OPTION_OUTPUT},
{0, 0, 0, 0}
};
--
1.8.1.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] qemu-img: mandate argument to 'qemu-img check --repair'
2014-03-24 18:38 [Qemu-devel] [PATCH] qemu-img: mandate argument to 'qemu-img check --repair' Prasad Joshi
@ 2014-03-24 18:57 ` Leandro Dorileo
2014-03-25 11:07 ` [Qemu-devel] [PATCH for-2.0] " Kevin Wolf
2014-03-25 12:41 ` [Qemu-devel] [PATCH] " Stefan Hajnoczi
2 siblings, 0 replies; 4+ messages in thread
From: Leandro Dorileo @ 2014-03-24 18:57 UTC (permalink / raw)
To: Prasad Joshi; +Cc: kwolf, qemu-trivial, pl, qemu-devel, stefanha, pbonzini
On Tue, Mar 25, 2014 at 12:08:54AM +0530, Prasad Joshi wrote:
> qemu-img check --repair option accepts an argument. The argument to
> --repair switch can either be 'all' or 'leak'. Fix the long option to
> mandate argument with --repair switch.
>
> The patch fixes following segmentation fault
>
> Core was generated by `qemu-img check -f qcow2 --repair all t.qcow2'.
> Program terminated with signal 11, Segmentation fault.
> 0 in img_check (argc=6, argv=0x7fffab9b8a10) at qemu-img.c:588
> 588 if (!strcmp(optarg, "leaks")) {
> (gdb) bt
> 0 img_check (argc=6, argv=0x7fffab9b8a10) at qemu-img.c:588
> 1 __libc_start_main () from /lib/x86_64-linux-gnu/libc.so.6
> 2 _start ()
> (gdb)
>
> Signed-off-by: Prasad Joshi <prasadjoshi.linux@gmail.com>
Patch looks good to me.
Reviewed-by: Leandro Dorileo <l@dorileo.org>
> ---
> qemu-img.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/qemu-img.c b/qemu-img.c
> index 2e40cc1..77d946b 100644
> --- a/qemu-img.c
> +++ b/qemu-img.c
> @@ -565,7 +565,7 @@ static int img_check(int argc, char **argv)
> static const struct option long_options[] = {
> {"help", no_argument, 0, 'h'},
> {"format", required_argument, 0, 'f'},
> - {"repair", no_argument, 0, 'r'},
> + {"repair", required_argument, 0, 'r'},
> {"output", required_argument, 0, OPTION_OUTPUT},
> {0, 0, 0, 0}
> };
> --
> 1.8.1.2
>
>
--
Leandro Dorileo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH for-2.0] qemu-img: mandate argument to 'qemu-img check --repair'
2014-03-24 18:38 [Qemu-devel] [PATCH] qemu-img: mandate argument to 'qemu-img check --repair' Prasad Joshi
2014-03-24 18:57 ` Leandro Dorileo
@ 2014-03-25 11:07 ` Kevin Wolf
2014-03-25 12:41 ` [Qemu-devel] [PATCH] " Stefan Hajnoczi
2 siblings, 0 replies; 4+ messages in thread
From: Kevin Wolf @ 2014-03-25 11:07 UTC (permalink / raw)
To: Prasad Joshi; +Cc: qemu-trivial, pl, qemu-devel, stefanha, pbonzini
Am 24.03.2014 um 19:38 hat Prasad Joshi geschrieben:
> qemu-img check --repair option accepts an argument. The argument to
> --repair switch can either be 'all' or 'leak'. Fix the long option to
> mandate argument with --repair switch.
>
> The patch fixes following segmentation fault
>
> Core was generated by `qemu-img check -f qcow2 --repair all t.qcow2'.
> Program terminated with signal 11, Segmentation fault.
> 0 in img_check (argc=6, argv=0x7fffab9b8a10) at qemu-img.c:588
> 588 if (!strcmp(optarg, "leaks")) {
> (gdb) bt
> 0 img_check (argc=6, argv=0x7fffab9b8a10) at qemu-img.c:588
> 1 __libc_start_main () from /lib/x86_64-linux-gnu/libc.so.6
> 2 _start ()
> (gdb)
>
> Signed-off-by: Prasad Joshi <prasadjoshi.linux@gmail.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Stefan, this should still go into 2.0.
Kevin
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] qemu-img: mandate argument to 'qemu-img check --repair'
2014-03-24 18:38 [Qemu-devel] [PATCH] qemu-img: mandate argument to 'qemu-img check --repair' Prasad Joshi
2014-03-24 18:57 ` Leandro Dorileo
2014-03-25 11:07 ` [Qemu-devel] [PATCH for-2.0] " Kevin Wolf
@ 2014-03-25 12:41 ` Stefan Hajnoczi
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2014-03-25 12:41 UTC (permalink / raw)
To: Prasad Joshi; +Cc: kwolf, qemu-trivial, pl, qemu-devel, stefanha, pbonzini
On Tue, Mar 25, 2014 at 12:08:54AM +0530, Prasad Joshi wrote:
> qemu-img check --repair option accepts an argument. The argument to
> --repair switch can either be 'all' or 'leak'. Fix the long option to
> mandate argument with --repair switch.
>
> The patch fixes following segmentation fault
>
> Core was generated by `qemu-img check -f qcow2 --repair all t.qcow2'.
> Program terminated with signal 11, Segmentation fault.
> 0 in img_check (argc=6, argv=0x7fffab9b8a10) at qemu-img.c:588
> 588 if (!strcmp(optarg, "leaks")) {
> (gdb) bt
> 0 img_check (argc=6, argv=0x7fffab9b8a10) at qemu-img.c:588
> 1 __libc_start_main () from /lib/x86_64-linux-gnu/libc.so.6
> 2 _start ()
> (gdb)
>
> Signed-off-by: Prasad Joshi <prasadjoshi.linux@gmail.com>
> ---
> qemu-img.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Thanks, applied to my block tree:
https://github.com/stefanha/qemu/commits/block
Stefan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-03-25 12:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-24 18:38 [Qemu-devel] [PATCH] qemu-img: mandate argument to 'qemu-img check --repair' Prasad Joshi
2014-03-24 18:57 ` Leandro Dorileo
2014-03-25 11:07 ` [Qemu-devel] [PATCH for-2.0] " Kevin Wolf
2014-03-25 12:41 ` [Qemu-devel] [PATCH] " Stefan Hajnoczi
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).