From patchwork Wed Mar 22 17:18:56 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Martin Kaistra X-Patchwork-Id: 666525 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E8C04C6FD1F for ; Wed, 22 Mar 2023 17:20:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231411AbjCVRUW (ORCPT ); Wed, 22 Mar 2023 13:20:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42410 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231336AbjCVRUF (ORCPT ); Wed, 22 Mar 2023 13:20:05 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E7A3C67001 for ; Wed, 22 Mar 2023 10:19:45 -0700 (PDT) From: Martin Kaistra DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1679505551; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=1xAvpC4TCARjPnoyt9sroIuRnOYaccB3ZahHvfk/vGg=; b=OAjT5potCcJH/zK8+ZaN8EHkUPP+OCCozl5hb6FzP4M1GW2eQQ98yU7w5i+23DVkGekVuG 0kaknpRS29SQ+yuLnQVKnRnd79/pGhiQJEGn2Y4+tasJe1pUgQE98A/l5ZdwL6AKuUdKp6 0o0uuJxIWJI3AnMq5GbBmJLnWwpnHGpOxpSRIyfZ9VQkqpoQ1eybitgBG7F6B2mTWqVz8L LqphqBKz2h7nIHeo9J3pdq73Z8+MWhN/izH7RPiQDU+eFkqABSCck2eDZFu/tQ7RNEA17O hqiKedvxypaZUvW6j68HLyVGjV05nfSeGHFDAZJqxQWRbvBin6FfPxnLf4XDZQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1679505551; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=1xAvpC4TCARjPnoyt9sroIuRnOYaccB3ZahHvfk/vGg=; b=9njd6Q7rIdKur7c8VoobsLrFP4Cfdz5LOBe7vg4PciAgL2BsJvRJKGwW1YXw92ran6k3p2 AVm0pHt1nKdPsMCA== To: linux-wireless@vger.kernel.org Cc: Jes Sorensen , Kalle Valo , Ping-Ke Shih , Bitterblue Smith , Sebastian Andrzej Siewior Subject: [RFC PATCH 05/14] wifi: rtl8xxxu: Allow setting rts threshold to -1 Date: Wed, 22 Mar 2023 18:18:56 +0100 Message-Id: <20230322171905.492855-6-martin.kaistra@linutronix.de> In-Reply-To: <20230322171905.492855-1-martin.kaistra@linutronix.de> References: <20230322171905.492855-1-martin.kaistra@linutronix.de> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org The default setting in hostapd.conf for rts threshold is -1, which means disabled. Allow to set it. Signed-off-by: Martin Kaistra Reviewed-by: Ping-Ke Shih --- drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c index f8380a2d51ae2..b233c66a7a5a8 100644 --- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c +++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c @@ -6592,7 +6592,7 @@ static void rtl8xxxu_configure_filter(struct ieee80211_hw *hw, static int rtl8xxxu_set_rts_threshold(struct ieee80211_hw *hw, u32 rts) { - if (rts > 2347) + if (rts > 2347 && rts != (u32)-1) return -EINVAL; return 0;