From patchwork Mon Jan 21 03:53:41 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kai-Heng Feng X-Patchwork-Id: 1028259 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43jd2d6QyDz9sN8; Mon, 21 Jan 2019 14:54:01 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1glQer-0003Mq-9k; Mon, 21 Jan 2019 03:53:57 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.86_2) (envelope-from ) id 1glQeq-0003MY-Ec for kernel-team@lists.ubuntu.com; Mon, 21 Jan 2019 03:53:56 +0000 Received: from 61-220-137-37.hinet-ip.hinet.net ([61.220.137.37] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1glQep-0007GI-Kp for kernel-team@lists.ubuntu.com; Mon, 21 Jan 2019 03:53:56 +0000 From: Kai-Heng Feng To: kernel-team@lists.ubuntu.com Subject: [C] [PATCH 1/3] UBUNTU: SAUCE: staging: rtlwifi: allow RTLWIFI_DEBUG_ST to be disabled Date: Mon, 21 Jan 2019 11:53:41 +0800 Message-Id: <20190121035344.30126-3-kai.heng.feng@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190121035344.30126-1-kai.heng.feng@canonical.com> References: <20190121035344.30126-1-kai.heng.feng@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" From: Seth Forshee BugLink: https://bugs.launchpad.net/bugs/1806472 Also default the option to off as with RTLWIFI_DEBUG, which seems like a more reasonable default. Signed-off-by: Seth Forshee Signed-off-by: Kai-Heng Feng --- drivers/staging/rtlwifi/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtlwifi/Kconfig b/drivers/staging/rtlwifi/Kconfig index 7b4276f5c41f..f8e185dfe2a8 100644 --- a/drivers/staging/rtlwifi/Kconfig +++ b/drivers/staging/rtlwifi/Kconfig @@ -7,6 +7,6 @@ config R8822BE wireless network adapters. config RTLWIFI_DEBUG_ST - bool + bool "Debugging output for Realtek RTL8822BE driver" depends on R8822BE - default y + default n From patchwork Mon Jan 21 03:53:43 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kai-Heng Feng X-Patchwork-Id: 1028261 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43jd2p52kpz9sN6; Mon, 21 Jan 2019 14:54:10 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1glQez-0003R2-La; Mon, 21 Jan 2019 03:54:05 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.86_2) (envelope-from ) id 1glQey-0003QS-Fp for kernel-team@lists.ubuntu.com; Mon, 21 Jan 2019 03:54:04 +0000 Received: from 61-220-137-37.hinet-ip.hinet.net ([61.220.137.37] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1glQex-0007Gn-N8 for kernel-team@lists.ubuntu.com; Mon, 21 Jan 2019 03:54:04 +0000 From: Kai-Heng Feng To: kernel-team@lists.ubuntu.com Subject: [C] [PATCH 2/3] UBUNTU: [Config] CONFIG_RTLWIFI_DEBUG_ST=n Date: Mon, 21 Jan 2019 11:53:43 +0800 Message-Id: <20190121035344.30126-5-kai.heng.feng@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190121035344.30126-1-kai.heng.feng@canonical.com> References: <20190121035344.30126-1-kai.heng.feng@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" From: Seth Forshee BugLink: https://bugs.launchpad.net/bugs/1806472 This is very similar to the CONFIG_RTLWIFI_DEBUG option for the non-staging driver, and since that is disabled it should also be disabled in the staging driver, especially now that the staging driver will be signed. Signed-off-by: Seth Forshee Signed-off-by: Kai-Heng Feng --- debian.master/config/config.common.ubuntu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian.master/config/config.common.ubuntu b/debian.master/config/config.common.ubuntu index e8ee19e5ee50..cd7a883032d8 100644 --- a/debian.master/config/config.common.ubuntu +++ b/debian.master/config/config.common.ubuntu @@ -7746,7 +7746,7 @@ CONFIG_RTLLIB_CRYPTO_TKIP=m CONFIG_RTLLIB_CRYPTO_WEP=m CONFIG_RTLWIFI=m # CONFIG_RTLWIFI_DEBUG is not set -CONFIG_RTLWIFI_DEBUG_ST=y +# CONFIG_RTLWIFI_DEBUG_ST is not set CONFIG_RTLWIFI_PCI=m CONFIG_RTLWIFI_USB=m CONFIG_RTL_CARDS=m From patchwork Mon Jan 21 03:53:44 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kai-Heng Feng X-Patchwork-Id: 1028262 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43jd2t41x2z9sN6; Mon, 21 Jan 2019 14:54:14 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1glQf3-0003T9-Vw; Mon, 21 Jan 2019 03:54:09 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.86_2) (envelope-from ) id 1glQf2-0003SW-Hk for kernel-team@lists.ubuntu.com; Mon, 21 Jan 2019 03:54:08 +0000 Received: from 61-220-137-37.hinet-ip.hinet.net ([61.220.137.37] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1glQf1-0007H4-OR for kernel-team@lists.ubuntu.com; Mon, 21 Jan 2019 03:54:08 +0000 From: Kai-Heng Feng To: kernel-team@lists.ubuntu.com Subject: [B/C] [PATCH 3/3] UBUNTU: SAUCE: Add r8822be to signature inclusion list Date: Mon, 21 Jan 2019 11:53:44 +0800 Message-Id: <20190121035344.30126-6-kai.heng.feng@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190121035344.30126-1-kai.heng.feng@canonical.com> References: <20190121035344.30126-1-kai.heng.feng@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" BugLink: https://bugs.launchpad.net/bugs/1806472 r8822be is sent and maintained by pkshih@realtek.com, so it's in a good shape. Let's add it to signature inclusion list. Signed-off-by: Kai-Heng Feng --- drivers/staging/signature-inclusion | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/signature-inclusion b/drivers/staging/signature-inclusion index e9f5bb53c5c7..f7f19616a9fc 100644 --- a/drivers/staging/signature-inclusion +++ b/drivers/staging/signature-inclusion @@ -12,6 +12,7 @@ r8188eu.ko r8192e_pci.ko r8192u_usb.ko r8712u.ko +r8822be.ko rtllib_crypt_ccmp.ko rtllib_crypt_tkip.ko rtllib_crypt_wep.ko