From patchwork Fri Apr 8 06:26:34 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhanghailiang X-Patchwork-Id: 8781301 Return-Path: X-Original-To: patchwork-qemu-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 4A5FE9F659 for ; Fri, 8 Apr 2016 06:50:36 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id A82E52027D for ; Fri, 8 Apr 2016 06:50:35 +0000 (UTC) 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.kernel.org (Postfix) with ESMTPS id E8CCD20274 for ; Fri, 8 Apr 2016 06:50:34 +0000 (UTC) Received: from localhost ([::1]:54397 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoQFW-0002q0-DN for patchwork-qemu-devel@patchwork.kernel.org; Fri, 08 Apr 2016 02:50:34 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39969) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoPut-0002wD-UB for qemu-devel@nongnu.org; Fri, 08 Apr 2016 02:29:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aoPuo-0007EA-HN for qemu-devel@nongnu.org; Fri, 08 Apr 2016 02:29:15 -0400 Received: from szxga01-in.huawei.com ([58.251.152.64]:30949) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoPun-0007Dg-EF for qemu-devel@nongnu.org; Fri, 08 Apr 2016 02:29:10 -0400 Received: from 172.24.1.137 (EHLO szxeml434-hub.china.huawei.com) ([172.24.1.137]) by szxrg01-dlp.huawei.com (MOS 4.3.7-GA FastPath queued) with ESMTP id DII24390; Fri, 08 Apr 2016 14:28:56 +0800 (CST) Received: from localhost (10.177.24.212) by szxeml434-hub.china.huawei.com (10.82.67.225) with Microsoft SMTP Server id 14.3.235.1; Fri, 8 Apr 2016 14:28:50 +0800 From: zhanghailiang To: Date: Fri, 8 Apr 2016 14:26:34 +0800 Message-ID: <1460096797-14916-33-git-send-email-zhang.zhanghailiang@huawei.com> X-Mailer: git-send-email 2.7.2.windows.1 In-Reply-To: <1460096797-14916-1-git-send-email-zhang.zhanghailiang@huawei.com> References: <1460096797-14916-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.0A020202.57074FA9.00DB, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0, ip=0.0.0.0, so=2013-06-18 04:22:30, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: a55113077fd1c1b5b8a791d1a3d51adb X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 58.251.152.64 Subject: [Qemu-devel] [PATCH COLO-Frame v16 32/35] 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, quintela@redhat.com, armbru@redhat.com, Jason Wang , yunhong.jiang@intel.com, eddie.dong@intel.com, peter.huangpeng@huawei.com, dgilbert@redhat.com, zhanghailiang , arei.gonglei@huawei.com, stefanha@redhat.com, amit.shah@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-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org 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 --- 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 73e4c46..d8abe7a 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 MAX_QUEUE_NUM 1024 @@ -176,6 +177,8 @@ struct NICInfo { int nvectors; }; +void netdev_init_add_notifier(Notifier *notify); + extern int nb_nics; extern NICInfo nd_table[MAX_NICS]; extern int default_net; diff --git a/net/net.c b/net/net.c index 0ad6217..6d846f4 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", @@ -931,6 +934,10 @@ static int net_init_nic(const NetClientOptions *opts, const char *name, return idx; } +void netdev_init_add_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, @@ -1017,6 +1024,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; }