Re: [Qemu-devel] [PATCH v15 05/14] block: Add bdrv_set_backing_hd()

2014-03-06 Thread Fam Zheng
On Wed, 02/26 17:35, Jeff Cody wrote: > On Sun, Feb 23, 2014 at 09:54:46AM +0800, Fam Zheng wrote: > > This is the common but non-trivial steps to assign or change the > > backing_hd of BDS. > > > > Signed-off-by: Fam Zheng > > --- > > block.c | 46 +

Re: [Qemu-devel] [PATCH v15 05/14] block: Add bdrv_set_backing_hd()

2014-02-26 Thread Jeff Cody
On Sun, Feb 23, 2014 at 09:54:46AM +0800, Fam Zheng wrote: > This is the common but non-trivial steps to assign or change the > backing_hd of BDS. > > Signed-off-by: Fam Zheng > --- > block.c | 46 ++ > include/block/block.h | 1 + > 2 f

Re: [Qemu-devel] [PATCH v15 05/14] block: Add bdrv_set_backing_hd()

2014-02-26 Thread Jeff Cody
On Sun, Feb 23, 2014 at 09:54:46AM +0800, Fam Zheng wrote: > This is the common but non-trivial steps to assign or change the > backing_hd of BDS. > > Signed-off-by: Fam Zheng > --- > block.c | 46 ++ > include/block/block.h | 1 + > 2 f

[Qemu-devel] [PATCH v15 05/14] block: Add bdrv_set_backing_hd()

2014-02-22 Thread Fam Zheng
This is the common but non-trivial steps to assign or change the backing_hd of BDS. Signed-off-by: Fam Zheng --- block.c | 46 ++ include/block/block.h | 1 + 2 files changed, 39 insertions(+), 8 deletions(-) diff --git a/block.c b/bloc