From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38774) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acqHu-00057s-1I for qemu-devel@nongnu.org; Mon, 07 Mar 2016 03:13:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1acqHq-00014r-QU for qemu-devel@nongnu.org; Mon, 07 Mar 2016 03:13:09 -0500 Received: from [59.151.112.132] (port=23480 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acqHp-00012l-V2 for qemu-devel@nongnu.org; Mon, 07 Mar 2016 03:13:06 -0500 References: <1457092906-19828-1-git-send-email-zhangchen.fnst@cn.fujitsu.com> <1457092906-19828-2-git-send-email-zhangchen.fnst@cn.fujitsu.com> <56DD2DBF.9040709@redhat.com> From: Zhang Chen Message-ID: <56DD3841.7030502@cn.fujitsu.com> Date: Mon, 7 Mar 2016 16:13:53 +0800 MIME-Version: 1.0 In-Reply-To: <56DD2DBF.9040709@redhat.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH V3 1/3] net/filter-mirror: Change filter_mirror_send interface List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jason Wang , qemu devel Cc: Li Zhijian , Gui jianfeng , "eddie.dong" , zhanghailiang , "Dr. David Alan Gilbert" , Yang Hongyang On 03/07/2016 03:29 PM, Jason Wang wrote: > > On 03/04/2016 08:01 PM, Zhang Chen wrote: >> Change filter_mirror_send interface to make it easier >> to used by other filter >> >> Signed-off-by: Zhang Chen >> Signed-off-by: Wen Congyang >> --- >> net/filter-mirror.c | 10 +++++----- >> 1 file changed, 5 insertions(+), 5 deletions(-) >> >> diff --git a/net/filter-mirror.c b/net/filter-mirror.c >> index ee13d94..4ff7619 100644 >> --- a/net/filter-mirror.c >> +++ b/net/filter-mirror.c >> @@ -33,11 +33,10 @@ typedef struct MirrorState { >> CharDriverState *chr_out; >> } MirrorState; >> >> -static int filter_mirror_send(NetFilterState *nf, >> +static int filter_mirror_send(CharDriverState *chr_out, >> const struct iovec *iov, >> int iovcnt) > The indent looks odds here, please send an independent patch to fix this > by the way. OK, I will fix it and send an independent patch latter~~ Thanks zhangchen > Thanks > > > . > -- Thanks zhangchen