[Qemu-devel] [PATCH v2] rbd: wire up snapshot removal and rollback functionality

2012-01-11 Thread Gregory Farnum
Signed-off-by: Greg Farnum --- Remove redundant warnings and add Kevin to the CC. block/rbd.c | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/block/rbd.c b/block/rbd.c index 7a2384c..475e362 100644 --- a/block/rbd.c +++ b/block/rbd.c @@ -787,6 +787,

Re: [Qemu-devel] [PATCH]: set up rbd snapshot handling

2012-01-11 Thread Gregory Farnum
On Wed, Jan 11, 2012 at 1:58 AM, Stefan Hajnoczi wrote: > On Tue, Jan 10, 2012 at 8:01 PM, Gregory Farnum > wrote: >> +static int qemu_rbd_snap_remove(BlockDriverState *bs, >> +                                const char *snapshot_name) >> +{ >> +    BDRVRBDState

[Qemu-devel] [PATCH]: set up rbd snapshot handling

2012-01-10 Thread Gregory Farnum
rbd: wire up snapshot removal and rollback functionality Signed-off-by: Greg Farnum Reviewed-by: Josh Durgin --- block/rbd.c | 32 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/block/rbd.c b/block/rbd.c index 7a2384c..f52c1ca 100644 --- a/blo