Received: by 10.192.165.156 with SMTP id m28csp69019imm; Tue, 10 Apr 2018 16:36:38 -0700 (PDT) X-Google-Smtp-Source: AIpwx4+dBkJcp90PKd0WVByJXy55S6DpchKDVzfCZkuaeydlTPLUQRp+ec5f5WF0ACExLJP7zoiE X-Received: by 2002:a17:902:7e08:: with SMTP id b8-v6mr2451647plm.386.1523403398076; Tue, 10 Apr 2018 16:36:38 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1523403398; cv=none; d=google.com; s=arc-20160816; b=pa1+UC59rdvILj/WAU4nEZRzdf/fVNyVoPecfIv1179CKpnpHVQv8fKcSYQFyjS3vm GwBtzd0B3ASx6ZWVe8t2bIBm5HIqx0tzeGawmBlfoJkYEJ+Me5UP9V+uUcXzCE9VqFK/ pmJYvsrqGmN1j4g/ScEt6kH1ZLmVppvkvTEWqrfM26n9PUs5mk47p5+/ADd9ZxU6OxnE McXMk0lRe6eBQ7T9e9AVpPAE3pkWkgxSvrK+fqDgc78Epn6iaEM0Ld4emEhTmV9UagtY IvYAuG9i6RPIpgsaZvDdyRr77nKMlyszv6yCPXaPbgykE4DmnAUY21RrOEoUZx3DpBc9 5Egw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=LzYD4BPP+ZvHGZpc824plZ1vfwsCpcdyL8+OqmDnh50=; b=jq9gMUE1ct3v0NyiLxVzJvbzcalfJyCUPJF/NJ212AKrJVOBckFMKIrf2/S6GWiBlH zWnK4CKJ0f3PsS4uNIg9yTJGQ683mVbQ+8rd2+rsq3gH6NB30QgU8hdaLul+Gl913Ct6 cIEyN03uPhxe+PHrNmwvyqj0Ine8dyh9+kIUWYDXSP0P0uhk77RBBN/30jdroBIBQqUp ZqRoM5izdu3V/4AofSdXoX+GMqH0yg2DVq/LQfWOwKwi0jgYCg6qgkNaLxQynUIybZpU A3lidM0xUkyfiqYzPQAlwWBYAlYxE8uefNexPyoKfMBOQEdl2rOHoELdgyNDg5G2mQP6 TpTg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r1si2839758pfb.247.2018.04.10.16.36.01; Tue, 10 Apr 2018 16:36:38 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754594AbeDJXbG (ORCPT + 99 others); Tue, 10 Apr 2018 19:31:06 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:39176 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754102AbeDJW2l (ORCPT ); Tue, 10 Apr 2018 18:28:41 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id E3377D09; Tue, 10 Apr 2018 22:28:40 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Stanislaw Gruszka , Enrico Mioso , Kalle Valo , Sasha Levin Subject: [PATCH 4.15 065/168] rt2x00: do not pause queue unconditionally on error path Date: Wed, 11 Apr 2018 00:23:27 +0200 Message-Id: <20180410212802.964674567@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180410212800.144079021@linuxfoundation.org> References: <20180410212800.144079021@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Stanislaw Gruszka [ Upstream commit 6dd80efd75ce7c2dbd9f117cf585ee2b33a42ee1 ] Pausing queue without checking threshold is racy with txdone path. Moreover we do not need pause queue on any error, but only if queue is full - in case when we send RTS frame ( other cases of almost full queue are already handled in rt2x00queue_write_tx_frame() ). Patch fixes of theoretically possible problem of pausing empty queue. Signed-off-by: Stanislaw Gruszka Tested-by: Enrico Mioso Signed-off-by: Kalle Valo Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- drivers/net/wireless/ralink/rt2x00/rt2x00mac.c | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) --- a/drivers/net/wireless/ralink/rt2x00/rt2x00mac.c +++ b/drivers/net/wireless/ralink/rt2x00/rt2x00mac.c @@ -142,15 +142,25 @@ void rt2x00mac_tx(struct ieee80211_hw *h if (!rt2x00dev->ops->hw->set_rts_threshold && (tx_info->control.rates[0].flags & (IEEE80211_TX_RC_USE_RTS_CTS | IEEE80211_TX_RC_USE_CTS_PROTECT))) { - if (rt2x00queue_available(queue) <= 1) - goto exit_fail; + if (rt2x00queue_available(queue) <= 1) { + /* + * Recheck for full queue under lock to avoid race + * conditions with rt2x00lib_txdone(). + */ + spin_lock(&queue->tx_lock); + if (rt2x00queue_threshold(queue)) + rt2x00queue_pause_queue(queue); + spin_unlock(&queue->tx_lock); + + goto exit_free_skb; + } if (rt2x00mac_tx_rts_cts(rt2x00dev, queue, skb)) - goto exit_fail; + goto exit_free_skb; } if (unlikely(rt2x00queue_write_tx_frame(queue, skb, control->sta, false))) - goto exit_fail; + goto exit_free_skb; /* * Pausing queue has to be serialized with rt2x00lib_txdone(). Note @@ -164,10 +174,6 @@ void rt2x00mac_tx(struct ieee80211_hw *h return; - exit_fail: - spin_lock(&queue->tx_lock); - rt2x00queue_pause_queue(queue); - spin_unlock(&queue->tx_lock); exit_free_skb: ieee80211_free_txskb(hw, skb); }