From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:47466) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UChsw-00004q-JO for qemu-devel@nongnu.org; Mon, 04 Mar 2013 21:45:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UChsv-00005a-45 for qemu-devel@nongnu.org; Mon, 04 Mar 2013 21:45:46 -0500 Received: from mail-la0-x233.google.com ([2a00:1450:4010:c03::233]:37531) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UChsu-00005T-N5 for qemu-devel@nongnu.org; Mon, 04 Mar 2013 21:45:44 -0500 Received: by mail-la0-f51.google.com with SMTP id fo13so5724891lab.10 for ; Mon, 04 Mar 2013 18:45:43 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <20130304143556.GC3981@stefanha-thinkpad.redhat.com> References: <1362316883-7948-1-git-send-email-qemulist@gmail.com> <1362316883-7948-2-git-send-email-qemulist@gmail.com> <20130304143556.GC3981@stefanha-thinkpad.redhat.com> From: liu ping fan Date: Tue, 5 Mar 2013 10:45:23 +0800 Message-ID: Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [Qemu-devel] [PATCH 1/3] net: spread hub on AioContexts List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: mdroth , Paolo Bonzini , qemu-devel@nongnu.org, Anthony Liguori , "Michael S. Tsirkin" On Mon, Mar 4, 2013 at 10:35 PM, Stefan Hajnoczi wrote: > On Sun, Mar 03, 2013 at 09:21:20PM +0800, Liu Ping Fan wrote: >> @@ -44,6 +47,7 @@ typedef ssize_t (NetReceiveIOV)(NetClientState *, const struct iovec *, int); >> typedef void (NetCleanup) (NetClientState *); >> typedef void (LinkStatusChanged)(NetClientState *); >> typedef void (NetClientDestructor)(NetClientState *); >> +typedef void (NetClientReside)(NetClientState *, AioContext *); > > I suggest renaming to NetClientBindAioContext or NetClientBindCtx. > "Reside" is passive (like to "I live in France") whereas "bind" is an > action ("I am moving to France"). Will fix. Thanks