From patchwork Mon Apr 8 18:06:16 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Pedersen X-Patchwork-Id: 2410751 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 674483FC71 for ; Mon, 8 Apr 2013 18:08:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934986Ab3DHSIC (ORCPT ); Mon, 8 Apr 2013 14:08:02 -0400 Received: from mail-pa0-f52.google.com ([209.85.220.52]:34384 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934675Ab3DHSIB (ORCPT ); Mon, 8 Apr 2013 14:08:01 -0400 Received: by mail-pa0-f52.google.com with SMTP id fb10so3372575pad.25 for ; Mon, 08 Apr 2013 11:08:00 -0700 (PDT) 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:in-reply-to :references:x-gm-message-state; bh=okBujBvvnNOF/VZEM5O8HKyopemWtbUs5Ox25H08LGI=; b=eaTOV/gdLXJqRlqqRnsOmNtJA7tTaT5AA7RfSVnwRdaXB5G9dnYuCyAs6ehjwCbSdc lwAy+sBl9y7IXtE44KEZIQHuSGduPjPsl/ceT9Q8dUJwCVU/uitjvUVnK+eBoxOheOnl JcOZVAhsC8wp0MJq32y8cyP+EdjacDIxr2f4BAyaRsrd9NU52T4ksDadu4QroPK/lI9E AEk59To8YaOR2HASQ0VRfqPKJVIfWSGP9riVDWhQmn5vxQ5VC+GgfPhR3xEctTxWd0HI dkiB6l6XnKq0dgWCJ3ZxWNtdqRGYBmuN6sRyom3bzomNY3rt78qAifYaq9eU3ZRshMjQ qclA== X-Received: by 10.66.197.228 with SMTP id ix4mr38751790pac.91.1365444480328; Mon, 08 Apr 2013 11:08:00 -0700 (PDT) Received: from cable.lan (70-35-43-50.static.wiline.com. [70.35.43.50]) by mx.google.com with ESMTPS id pa2sm40603095pac.9.2013.04.08.11.07.57 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 08 Apr 2013 11:07:58 -0700 (PDT) From: Thomas Pedersen To: Johannes Berg Cc: linux-wirelss , open80211s , Thomas Pedersen Subject: [PATCH 5/6] mac80211: stringify another plink state Date: Mon, 8 Apr 2013 11:06:16 -0700 Message-Id: <1365444377-9959-5-git-send-email-thomas@cozybit.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1365444377-9959-1-git-send-email-thomas@cozybit.com> References: <1365444377-9959-1-git-send-email-thomas@cozybit.com> X-Gm-Message-State: ALoCoQk6oKF2JwlIF7m0iFzcbmebzR9TttsX5v48ITaGCu7XGzQ7lruvW+N19Kta/uvD4+tChSGv Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org The patch "mac80211: stringify mesh peering events" missed an opportunity to print the peering state as a string. Signed-off-by: Thomas Pedersen --- net/mac80211/mesh_plink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/mac80211/mesh_plink.c b/net/mac80211/mesh_plink.c index 937e06f..cdd4183 100644 --- a/net/mac80211/mesh_plink.c +++ b/net/mac80211/mesh_plink.c @@ -544,8 +544,8 @@ static void mesh_plink_timer(unsigned long data) return; } mpl_dbg(sta->sdata, - "Mesh plink timer for %pM fired on state %d\n", - sta->sta.addr, sta->plink_state); + "Mesh plink timer for %pM fired on state %s\n", + sta->sta.addr, mplstates[sta->plink_state]); reason = 0; llid = sta->llid; plid = sta->plid;