From patchwork Fri Apr 29 19:15:15 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 15993 Return-Path: X-Original-To: patchwork@open-mesh.org Delivered-To: patchwork@open-mesh.org Received: from open-mesh.org (localhost [IPv6:::1]) by open-mesh.org (Postfix) with ESMTP id 8FA74822E0; Fri, 29 Apr 2016 21:16:03 +0200 (CEST) Authentication-Results: open-mesh.org; dmarc=none header.from=narfation.org Authentication-Results: open-mesh.org; dkim=fail reason="verification failed; unprotected key" header.d=narfation.org header.i=@narfation.org header.b=n5RzblJs; dkim-adsp=fail (unprotected policy); dkim-atps=neutral Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=79.140.41.39; helo=v3-1039.vlinux.de; envelope-from=sven@narfation.org; receiver=b.a.t.m.a.n@lists.open-mesh.org Authentication-Results: open-mesh.org; dmarc=pass header.from=narfation.org Received: from v3-1039.vlinux.de (narfation.org [79.140.41.39]) by open-mesh.org (Postfix) with ESMTPS id 48D9B804C3 for ; Fri, 29 Apr 2016 21:15:17 +0200 (CEST) Received: from sven-edge.localnet (p200300C593C12BFD0000000000002E16.dip0.t-ipconnect.de [IPv6:2003:c5:93c1:2bfd::2e16]) by v3-1039.vlinux.de (Postfix) with ESMTPSA id 7AFD41100F1; Fri, 29 Apr 2016 21:15:16 +0200 (CEST) Authentication-Results: v3-1039.vlinux.de; dmarc=none header.from=narfation.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=narfation.org; s=20121; t=1461957316; bh=rj2NVKcAFcnXT08CEALpCP9veR9ul5ZKVUpkG/U3NDM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=n5RzblJswZP2noTf2She7mXxKtobu0FhrlYW8zqg0XoCzBh9YD1YZubdm1OlwZOKy lhcR5DGgaQNiQt/OeQAS9AenYUuEuucfyHrLFjoXEti9uVXSkT3llqGPFSEb67c29c mFEgrKIY+MzoYGtplbNRFB7sjKp4xz83hUGUCZ6w= From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Fri, 29 Apr 2016 21:15:15 +0200 Message-ID: <3524730.XqCTiFIBvg@sven-edge> User-Agent: KMail/4.14.10 (Linux/4.5.0-1-amd64; KDE/4.14.14; x86_64; ; ) In-Reply-To: <1461875848-11720-8-git-send-email-andrew@lunn.ch> References: <1461875848-11720-1-git-send-email-andrew@lunn.ch> <1461875848-11720-8-git-send-email-andrew@lunn.ch> MIME-Version: 1.0 Subject: Re: [B.A.T.M.A.N.] [PATCH 07/10] batman-adv: add B.A.T.M.A.N. V bat_{orig, neigh}_dump implementations X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking Errors-To: b.a.t.m.a.n-bounces@lists.open-mesh.org Sender: "B.A.T.M.A.N" On Thursday 28 April 2016 22:37:25 Andrew Lunn wrote: > From: Matthias Schiffer > > Signed-off-by: Matthias Schiffer > --- > include/uapi/linux/batman_adv.h | 1 + > net/batman-adv/bat_v.c | 250 > ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 251 insertions(+) You can find the missing includes in the attached patch Kind regards, Sven From: Sven Eckelmann Date: Fri, 29 Apr 2016 20:58:10 +0200 Subject: [PATCH] missing includes 7 --- net/batman-adv/bat_v.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/net/batman-adv/bat_v.c b/net/batman-adv/bat_v.c index 1630684..cb890b7 100644 --- a/net/batman-adv/bat_v.c +++ b/net/batman-adv/bat_v.c @@ -21,14 +21,19 @@ #include #include #include +#include +#include #include #include #include +#include #include #include #include #include #include +#include +#include #include #include "bat_v_elp.h" @@ -39,6 +44,8 @@ #include "originator.h" #include "packet.h" +struct sk_buff; + static void batadv_v_iface_activate(struct batadv_hard_iface *hard_iface) { /* B.A.T.M.A.N. V does not use any queuing mechanism, therefore it can