From patchwork Fri Jun 3 07:52:43 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhanghailiang X-Patchwork-Id: 9152109 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id C50956072B for ; Fri, 3 Jun 2016 08:20:18 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B17AA2675C for ; Fri, 3 Jun 2016 08:20:18 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A5A0828309; Fri, 3 Jun 2016 08:20:18 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 73E682675C for ; Fri, 3 Jun 2016 08:20:09 +0000 (UTC) Received: from localhost ([::1]:53167 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8kKu-0005YF-J7 for patchwork-qemu-devel@patchwork.kernel.org; Fri, 03 Jun 2016 04:20:08 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41687) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8jw9-0007Yn-Hf for qemu-devel@nongnu.org; Fri, 03 Jun 2016 03:54:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b8jw7-0004zR-JE for qemu-devel@nongnu.org; Fri, 03 Jun 2016 03:54:32 -0400 Received: from szxga03-in.huawei.com ([119.145.14.66]:24875) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8jw6-0004yz-Tq for qemu-devel@nongnu.org; Fri, 03 Jun 2016 03:54:31 -0400 Received: from 172.24.1.36 (EHLO szxeml422-hub.china.huawei.com) ([172.24.1.36]) by szxrg03-dlp.huawei.com (MOS 4.4.3-GA FastPath queued) with ESMTP id CCR25166; Fri, 03 Jun 2016 15:53:31 +0800 (CST) Received: from localhost (10.177.24.212) by szxeml422-hub.china.huawei.com (10.82.67.152) with Microsoft SMTP Server id 14.3.235.1; Fri, 3 Jun 2016 15:53:18 +0800 From: zhanghailiang To: , , , Date: Fri, 3 Jun 2016 15:52:43 +0800 Message-ID: <1464940366-9880-32-git-send-email-zhang.zhanghailiang@huawei.com> X-Mailer: git-send-email 2.7.2.windows.1 In-Reply-To: <1464940366-9880-1-git-send-email-zhang.zhanghailiang@huawei.com> References: <1464940366-9880-1-git-send-email-zhang.zhanghailiang@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.177.24.212] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A090205.575137A1.0094, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0, ip=0.0.0.0, so=2013-05-26 15:14:31, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: c93bb5123a2b235ca8f04313fbef7d5f X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 119.145.14.66 Subject: [Qemu-devel] [PATCH COLO-Frame v17 31/34] net: Add notifier/callback for netdev init X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: xiecl.fnst@cn.fujitsu.com, lizhijian@cn.fujitsu.com, Jason Wang , yunhong.jiang@intel.com, eddie.dong@intel.com, peter.huangpeng@huawei.com, zhanghailiang , arei.gonglei@huawei.com, stefanha@redhat.com, zhangchen.fnst@cn.fujitsu.com, hongyang.yang@easystack.cn Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP We can register some callback for this notifier, this will be used by COLO to register a callback which will add each netdev a buffer filter. Signed-off-by: zhanghailiang Cc: Jason Wang Cc: Yang Hongyang --- v17: - Rename netdev_init_add_notifier() to netdev_register_init_notifier() v16: - Simplify the codes by using some helpers in QEMU v14: - New patch --- include/net/net.h | 3 +++ net/net.c | 12 ++++++++++++ 2 files changed, 15 insertions(+) diff --git a/include/net/net.h b/include/net/net.h index a69e382..c5ebab3 100644 --- a/include/net/net.h +++ b/include/net/net.h @@ -8,6 +8,7 @@ #include "net/queue.h" #include "migration/vmstate.h" #include "qapi-types.h" +#include "qemu/notify.h" #define MAC_FMT "%02X:%02X:%02X:%02X:%02X:%02X" #define MAC_ARG(x) ((uint8_t *)(x))[0], ((uint8_t *)(x))[1], \ @@ -194,6 +195,8 @@ struct NICInfo { int nvectors; }; +void netdev_register_init_notifier(Notifier *notify); + extern int nb_nics; extern NICInfo nd_table[MAX_NICS]; extern const char *host_net_devices[]; diff --git a/net/net.c b/net/net.c index 5f3e5a9..b19f107 100644 --- a/net/net.c +++ b/net/net.c @@ -56,6 +56,9 @@ static VMChangeStateEntry *net_change_state_entry; static QTAILQ_HEAD(, NetClientState) net_clients; +static NotifierList netdev_init_notifiers = + NOTIFIER_LIST_INITIALIZER(netdev_init_notifiers); + const char *host_net_devices[] = { "tap", "socket", @@ -929,6 +932,10 @@ static int net_init_nic(const NetClientOptions *opts, const char *name, return idx; } +void netdev_register_init_notifier(Notifier *notify) +{ + notifier_list_add(&netdev_init_notifiers, notify); +} static int (* const net_client_init_fun[NET_CLIENT_OPTIONS_KIND__MAX])( const NetClientOptions *opts, @@ -1015,6 +1022,11 @@ static int net_client_init1(const void *object, int is_netdev, Error **errp) } return -1; } + if (is_netdev) { + const Netdev *netdev = object; + + notifier_list_notify(&netdev_init_notifiers, netdev->id); + } return 0; }