From patchwork Sat Feb 16 19:22:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Pedersen X-Patchwork-Id: 2152431 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 3AFCFDF2A1 for ; Sat, 16 Feb 2013 19:23:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754058Ab3BPTXm (ORCPT ); Sat, 16 Feb 2013 14:23:42 -0500 Received: from mail-da0-f48.google.com ([209.85.210.48]:38190 "EHLO mail-da0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754049Ab3BPTXm (ORCPT ); Sat, 16 Feb 2013 14:23:42 -0500 Received: by mail-da0-f48.google.com with SMTP id v40so1904679dad.21 for ; Sat, 16 Feb 2013 11:23:41 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=0HnNvfVt9M9ofPTwD4GdScsCOEqf50tdp1X3btk1KTw=; b=pKN1Va5npMOnWfj6QdPYadAnMZv8v33GzcFK9Xze+xrWfwOrQc5sluIt6EBlAm1Dyk TCF40o/bwtNNOdSw8ZbUyDeMXpZyfqvkFyLdSyJyd7y303h5OaqY+D/XkF+AFFnGOZSt 7s9Dj8SgHaHXzJ6ebdqQToFZ/YQRTah519S+60EGvOZnEPd2fqr77szPIDLDLZDs6zK/ SD2NLMYNHaT1YocLzN5/3aR3Lc8dbUhZX68hfxsGpdx7aMfKslbOKMg7jPz7109zp9Dd bJxbv1U2tc8UYjUnrv8pHnd1HAvKONEcvnNdGUXsfEXW7kOGLFVMaPGV3k7xjEWIkMjh kAAg== X-Received: by 10.68.137.41 with SMTP id qf9mr16716368pbb.126.1361042621615; Sat, 16 Feb 2013 11:23:41 -0800 (PST) Received: from cable.lan (70-35-43-50.static.wiline.com. [70.35.43.50]) by mx.google.com with ESMTPS id bi8sm97881205pab.15.2013.02.16.11.23.38 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 16 Feb 2013 11:23:39 -0800 (PST) From: Thomas Pedersen To: johannes@sipsolutions.net Cc: linux-wireless@vger.kernel.org, devel@lists.open80211s.org, Thomas Pedersen Subject: [RFC] mac80211: make CONFIG_MAC80211_MESH=y default Date: Sat, 16 Feb 2013 11:22:31 -0800 Message-Id: <1361042551-15598-1-git-send-email-thomas@cozybit.com> X-Mailer: git-send-email 1.7.10.4 X-Gm-Message-State: ALoCoQlPHgrdAfl2gpUaMOpJzjtNS4pwVL7wE6A+DYC0lV6rLZtEAWsBfzlNtxP97rrn8SxPb2vq Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org Increases mac80211 memory use by about 95K. At least Ubuntu, Debian, and Arch Linux already enable this in their default kernels. Signed-off-by: Thomas Pedersen --- net/mac80211/Kconfig | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/net/mac80211/Kconfig b/net/mac80211/Kconfig index 0ecf947..4ca2a49 100644 --- a/net/mac80211/Kconfig +++ b/net/mac80211/Kconfig @@ -80,14 +80,15 @@ comment "Some wireless drivers require a rate control algorithm" depends on MAC80211 && MAC80211_HAS_RC=n config MAC80211_MESH - bool "Enable mac80211 mesh networking (pre-802.11s) support" - depends on MAC80211 && EXPERIMENTAL + bool "Enable mac80211 mesh networking (802.11s) support" + depends on MAC80211 + default y ---help--- - This options enables support of Draft 802.11s mesh networking. - The implementation is based on Draft 2.08 of the Mesh Networking - amendment. However, no compliance with that draft is claimed or even - possible, as drafts leave a number of identifiers to be defined after - ratification. For more information visit http://o11s.org/. + This options enables support for 802.11s mesh networking. The + implementation is based on the 11s amendment introduced in IEEE + 802.11-2012. An effort has been made to be standard-compliant, so If + you notice something amiss, please contact the maintainers. For more + information visit http://o11s.org/. config MAC80211_LEDS bool "Enable LED triggers"