From patchwork Fri Jun 29 03:23:14 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander 'lynxis' Couzens X-Patchwork-Id: 936573 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=lists.openwrt.org (client-ip=2607:7c80:54:e::133; helo=bombadil.infradead.org; envelope-from=openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=fe80.eu Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="VPtcpq+x"; dkim-atps=neutral Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41H26s3JHjz9s01 for ; Fri, 29 Jun 2018 13:23:49 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:MIME-Version:Cc:List-Subscribe: List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id:Subject:Message-Id: Date:To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=hm32dEQQg35vQhHDx+AU7Zw0DBpXLlucZkY19IEzVMs=; b=VPtcpq+xNjBS2Z o5dbEuwd86m1l/gvQ6EBQ2a6Y2exMYjR9I9V9OGdBpdWOHkfuzHohG8WuoIdMN8rBq2a2+wsCrv8E 9/ZFiMdiEFO2lVR3anQVGbFKD7P/tIRVkTjRWY9Ytaek5DfHFfVevMrn4oNSQVzbeT87dyc8iVFk/ DWvgTC1iYFDq1y5qqiNptBVwEaSWPCtAU3lztcReF7VUGDrtoAPLtWw6s6XqALgSPZlCwsLhx/9Po qgBkns8k7DI5XV00hs0Qpdq7JZlPSrsO0KjaCXqRgSBhEIaIzwsDojcXdvofCmRqhDGprZEgJWGGF 0BcXHXMR/+u8nou4d8OA==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1fYk0d-0007Y7-2U; Fri, 29 Jun 2018 03:23:43 +0000 Received: from mail.base45.de ([2001:67c:2050:320::77]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1fYk0Y-0007Wy-DM for openwrt-devel@lists.openwrt.org; Fri, 29 Jun 2018 03:23:41 +0000 Received: from p200300f00bc58f003862bf6fe76ba789.dip0.t-ipconnect.de ([2003:f0:bc5:8f00:3862:bf6f:e76b:a789] helo=lazus.yip) by mail.base45.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1fYk0H-0007Qt-SO; Fri, 29 Jun 2018 03:23:21 +0000 From: Alexander Couzens To: openwrt-devel@lists.openwrt.org Date: Fri, 29 Jun 2018 05:23:14 +0200 Message-Id: <20180629032315.7906-1-lynxis@fe80.eu> X-Mailer: git-send-email 2.18.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20180628_202338_612222_AE92F729 X-CRM114-Status: UNSURE ( 6.81 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -0.0 (/) X-Spam-Report: SpamAssassin version 3.4.1 on bombadil.infradead.org summary: Content analysis details: (-0.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record Subject: [OpenWrt-Devel] [PATCH 1/2] Introduce new interface event "create" (IFEV_CREATE) X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Hans Dedecker , Alexander Couzens MIME-Version: 1.0 Sender: "openwrt-devel" Errors-To: openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org "create" will be called before the proto handlers initialised. Acked-by: Hans Dedecker --- interface-event.c | 1 + interface.c | 1 + interface.h | 2 ++ 3 files changed, 4 insertions(+) diff --git a/interface-event.c b/interface-event.c index 86e8f5488da8..a40f6dc883d3 100644 --- a/interface-event.c +++ b/interface-event.c @@ -38,6 +38,7 @@ static const char * const eventnames[] = { [IFEV_FREE] = "free", [IFEV_RELOAD] = "reload", [IFEV_LINK_UP] = "iflink", + [IFEV_CREATE] = "create", }; static void diff --git a/interface.c b/interface.c index 2a23984922a1..400c605efc0c 100644 --- a/interface.c +++ b/interface.c @@ -1275,6 +1275,7 @@ interface_update(struct vlist_tree *tree, struct vlist_node *node_new, set_config_state(if_old, IFC_REMOVE); } else if (node_new) { D(INTERFACE, "Create interface '%s'\n", if_new->name); + interface_event(if_new, IFEV_CREATE); proto_init_interface(if_new, if_new->config); interface_claim_device(if_new); netifd_ubus_add_interface(if_new); diff --git a/interface.h b/interface.h index 0e58f69c26e0..e5639eb326cd 100644 --- a/interface.h +++ b/interface.h @@ -28,6 +28,8 @@ enum interface_event { IFEV_FREE, IFEV_RELOAD, IFEV_LINK_UP, + /* send when a new interface created. This is before proto handlers has been attached. */ + IFEV_CREATE, }; enum interface_state {