From patchwork Tue Nov 13 09:15:30 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Quartulli X-Patchwork-Id: 2475 Return-Path: Received: from contumacia.investici.org (contumacia.investici.org [178.255.144.35]) by open-mesh.org (Postfix) with ESMTPS id 9C94F60138B for ; Tue, 13 Nov 2012 10:16:31 +0100 (CET) Authentication-Results: open-mesh.org; dkim=pass reason="1024-bit key; insecure key" header.d=autistici.org header.i=@autistici.org header.b=p64nSdvQ; dkim-adsp=pass; dkim-atps=neutral Received: from [178.255.144.35] (contumacia [178.255.144.35]) (Authenticated sender: ordex@autistici.org) by localhost (Postfix) with ESMTPSA id 681ABE8910; Tue, 13 Nov 2012 09:16:30 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 contumacia.investici.org 681ABE8910 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1352798190; bh=Aa8ODaZCKGj3M/vZ+DnP3Eh2JRJh1Kriw78KApihGQY=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=p64nSdvQehukVkQ2D0OjZLwJbF7KA6Qwo9okK+PXo2M6ItJUYghwh41RFu1uS2q1P UEOxz02k3P+PuaB+Q8tRMeEbk01yQlasTczb3iFayGlUF+bpGrLc9xa8HPCVNHXj0f cXDceNNHwpVLgAlJCvic5hiR4ljZPB7Pirj8xH+w= From: Antonio Quartulli To: davem@davemloft.net Date: Tue, 13 Nov 2012 10:15:30 +0100 Message-Id: <1352798139-19458-3-git-send-email-ordex@autistici.org> X-Mailer: git-send-email 1.8.0 In-Reply-To: <1352798139-19458-1-git-send-email-ordex@autistici.org> References: <1352798139-19458-1-git-send-email-ordex@autistici.org> Cc: netdev@vger.kernel.org, b.a.t.m.a.n@lists.open-mesh.org Subject: [B.A.T.M.A.N.] [PATCH 02/11] batman-adv: fix wrong spinlock inline comment 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: Tue, 13 Nov 2012 09:16:31 -0000 Signed-off-by: Antonio Quartulli --- net/batman-adv/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/batman-adv/types.h b/net/batman-adv/types.h index 8ce16c1..e8a1b18 100644 --- a/net/batman-adv/types.h +++ b/net/batman-adv/types.h @@ -303,7 +303,7 @@ struct batadv_priv { struct hlist_head forw_bcast_list; struct batadv_hashtable *orig_hash; spinlock_t forw_bat_list_lock; /* protects forw_bat_list */ - spinlock_t forw_bcast_list_lock; /* protects */ + spinlock_t forw_bcast_list_lock; /* protects forw_bcast_list */ struct delayed_work orig_work; struct batadv_hard_iface __rcu *primary_if; /* rcu protected pointer */ struct batadv_algo_ops *bat_algo_ops;