From patchwork Thu Aug 8 04:58:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Lindner X-Patchwork-Id: 3228 Return-Path: Received: from nm35-vm6.bullet.mail.sg3.yahoo.com (nm35-vm6.bullet.mail.sg3.yahoo.com [106.10.151.61]) by open-mesh.org (Postfix) with ESMTPS id B49616021B9 for ; Thu, 8 Aug 2013 06:59:22 +0200 (CEST) Received: from [106.10.166.122] by nm35.bullet.mail.sg3.yahoo.com with NNFMP; 08 Aug 2013 04:59:19 -0000 Received: from [106.10.167.130] by tm11.bullet.mail.sg3.yahoo.com with NNFMP; 08 Aug 2013 04:59:19 -0000 Received: from [127.0.0.1] by smtp103.mail.sg3.yahoo.com with NNFMP; 08 Aug 2013 04:59:19 -0000 X-Yahoo-Newman-Id: 573660.22203.bm@smtp103.mail.sg3.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: zMesRMEVM1mjaEOAFvIv4vOLrY3ixkvd9GwV9Wdj6Hs7JtG Ep7rRTpZgESFmneAkQZ8B3W2qn87R25P3sN5EYijd5jiJ68w1O15RTbTrjOC JcXmauoUxqSKJ7GPLeGhVXINEXdvLekVdHmAP9FEoYES.JIeO8RnuVO4Sf1. 9oxc.VY4U8GAO8mfTLi5WtQxxye6WB1KvyfQoQqrJ.F4rBIrDLGmIwjhavyE yvexZoSARXRke1x68KoIuoBwyUG5uTit8bxCPAzUP4gml6NM_NVjEWQVNJDD sy6EUXYxKjlk8NSnv5dB1YMtAlPB0C8oB5y0j1CgiOUwUd36QUabW5wBuev_ zzKFTBMblAOmZhA0aU6VlOfgzOsi_sjAeg00Ut_pcC.Nz1qhLT0qmro3Cs7N HWTvIQxwGh5nOeixMkF9WZ5x2F4D0uelkt3Ia7O_eTx2Opy1jx.HEtLK2Nge XXbFEDmZd0VPdWYKYWTOSljtN.Rgyabp8CtJeIOmVcQInfKxmp4V40zqbAl1 RVzAlKdaFKP9L9L4gJ8G1eVS1Pu8- X-Yahoo-SMTP: tW.h3tiswBBMXO2coYcbPigGD5Lt6zY_.Zc- X-Rocket-Received: from localhost (lindner_marek@42.98.131.159 with ) by smtp103.mail.sg3.yahoo.com with SMTP; 07 Aug 2013 21:59:19 -0700 PDT From: Marek Lindner To: b.a.t.m.a.n@lists.open-mesh.org Date: Thu, 8 Aug 2013 12:58:46 +0800 Message-Id: <1375937926-20506-1-git-send-email-lindner_marek@yahoo.de> X-Mailer: git-send-email 1.7.10.4 Cc: Marek Lindner Subject: [B.A.T.M.A.N.] [PATCH] batman-adv: fix compat compile error X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Aug 2013 04:59:23 -0000 Introduced by e4ff5c153dab054a6cd1c4132f87bc5e77127456 ("batman-adv: add sysfs framework for VLAN") Signed-off-by: Marek Lindner --- compat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat.c b/compat.c index fcd5bec..68c2258 100644 --- a/compat.c +++ b/compat.c @@ -31,7 +31,7 @@ void batadv_free_rcu_orig_vlan(struct rcu_head *rcu) { struct batadv_orig_node_vlan *vlan; - vlan = container_of(rcu, structbatadv_orig_node_vlan, rcu); + vlan = container_of(rcu, struct batadv_orig_node_vlan, rcu); kfree(vlan); }