Re: [PATCH] qcow2: remove QCowL2Meta parameter from handle_copied

2020-03-10 Thread John Snow
On 3/10/20 7:19 AM, Alberto Garcia wrote: > On Tue 10 Mar 2020 03:04:47 AM CET, John Snow wrote: >>> static int handle_copied(BlockDriverState *bs, uint64_t guest_offset, >>> -uint64_t *host_offset, uint64_t *bytes, QCowL2Meta **m) >>> +uint64_t *host_offset, uint64_t *bytes) >>> { >>>

Re: [PATCH] qcow2: remove QCowL2Meta parameter from handle_copied

2020-03-10 Thread Alberto Garcia
On Tue 10 Mar 2020 03:04:47 AM CET, John Snow wrote: >> static int handle_copied(BlockDriverState *bs, uint64_t guest_offset, >> -uint64_t *host_offset, uint64_t *bytes, QCowL2Meta **m) >> +uint64_t *host_offset, uint64_t *bytes) >> { >> BDRVQcow2State *s = bs->opaque; >> int l2

Re: [PATCH] qcow2: remove QCowL2Meta parameter from handle_copied

2020-03-09 Thread John Snow
CC qemu-block and qcow2 maintainers (Use scripts/get_maintainer.pl to identify maintainers.) On 3/9/20 12:35 PM, Yi Li wrote: > The QCowL2Meta **m parameter is not used > > Signed-off-by: Yi Li > --- > block/qcow2-cluster.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff

[PATCH] qcow2: remove QCowL2Meta parameter from handle_copied

2020-03-09 Thread Yi Li
The QCowL2Meta **m parameter is not used Signed-off-by: Yi Li --- block/qcow2-cluster.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/block/qcow2-cluster.c b/block/qcow2-cluster.c index 17f1363..db9efa5 100644 --- a/block/qcow2-cluster.c +++ b/block/qcow2-cluster.c @@ -