From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yang Hongyang Subject: Re: [PATCH v3 4/5] tools/libxc: error handling for the postcopy() callback Date: Tue, 26 Jan 2016 15:02:50 +0800 Message-ID: <56A71A1A.6060104@easystack.cn> References: <1452235131-1861-1-git-send-email-wency@cn.fujitsu.com> <1452235131-1861-5-git-send-email-wency@cn.fujitsu.com> <56A71612.8030709@easystack.cn> <56A716C7.4060007@cn.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <56A716C7.4060007@cn.fujitsu.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Wen Congyang , xen devel , Andrew Cooper Cc: Shriram Rajagopalan , Ian Jackson , Changlong Xie , Wei Liu , Ian Campbell List-Id: xen-devel@lists.xenproject.org On 01/26/2016 02:48 PM, Wen Congyang wrote: > On 01/26/2016 02:45 PM, Yang Hongyang wrote: >> ditto >> >> Reviewed-by: Yang Hongyang > > The newest version is v5, and this series is in the staging now. Sorry for the noise...I saw the series too late, please ignore my comments... > > Thanks for your review. > Wen Congyang > >> >> On 01/08/2016 02:38 PM, Wen Congyang wrote: >>> Signed-off-by: Wen Congyang >>> Reviewed-by: Andrew Cooper >>> --- >>> tools/libxc/xc_sr_save.c | 4 +++- >>> 1 file changed, 3 insertions(+), 1 deletion(-) >>> >>> diff --git a/tools/libxc/xc_sr_save.c b/tools/libxc/xc_sr_save.c >>> index e532168..e4ba560 100644 >>> --- a/tools/libxc/xc_sr_save.c >>> +++ b/tools/libxc/xc_sr_save.c >>> @@ -791,7 +791,9 @@ static int save(struct xc_sr_context *ctx, uint16_t guest_type) >>> if ( rc ) >>> goto err; >>> >>> - ctx->save.callbacks->postcopy(ctx->save.callbacks->data); >>> + rc = ctx->save.callbacks->postcopy(ctx->save.callbacks->data); >>> + if ( rc <= 0 ) >>> + goto err; >>> >>> rc = ctx->save.callbacks->checkpoint(ctx->save.callbacks->data); >>> if ( rc <= 0 ) >>> >> > > > > -- Thanks, Yang