Re: [Qemu-devel] [PATCH] block: Use bdrv functions to replace file operation in cow.c

2011-11-04 Thread Stefan Hajnoczi
On Fri, Nov 04, 2011 at 03:43:04PM +0800, Li Zhi Hui wrote: > Since common file operation functions lack of error detection, > so change them to bdrv series functions. > > Signed-off-by: Li Zhi Hui > --- > block/cow.c | 63 +- > 1 files

Re: [Qemu-devel] [PATCH] block: Use bdrv functions to replace file operation in cow.c

2011-11-04 Thread Markus Armbruster
Li Zhi Hui writes: > Since common file operation functions lack of error detection, > so change them to bdrv series functions. Looks like a few indentation fixes crept in as well. Best to keep such style cleanups well separated from functional changes.

[Qemu-devel] [PATCH] block: Use bdrv functions to replace file operation in cow.c

2011-11-04 Thread Li Zhi Hui
Since common file operation functions lack of error detection, so change them to bdrv series functions. Signed-off-by: Li Zhi Hui --- block/cow.c | 63 +- 1 files changed, 36 insertions(+), 27 deletions(-) diff --git a/block/cow.c b/blo