From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from sender-of-o57.zoho.eu (sender-of-o57.zoho.eu [136.143.169.57]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id F3C431494C3 for ; Sat, 14 Mar 2026 23:50:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=pass smtp.client-ip=136.143.169.57 ARC-Seal:i=2; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773532252; cv=pass; b=WWJBO0QYuwy509WJ67BRHXbgg8mxE/lDpAq+SRmIdgkiFziM+XpwFcPY3y7aMuG6010qV/U2NGSnTjgW8ATuR1xFjc4f/Bkp8BhEWwfjbdTDjFbAqgtInelAxS9WgGIVgUAr0LwF5yO3W3HN68bk1gzONBRo/S14sR1vCEFtNds= ARC-Message-Signature:i=2; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773532252; c=relaxed/simple; bh=rs0tBxnsp9+ge4opshQ+D8qTIMYgCK8bpEcBXAtDs2s=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=R5ISu10Knb0L73x3kppv7HCQ5TZXh4QtOKou605/PLo9VAf9upDL3b2otTQD8H1F3McD2qZsBy+a1l6zOO0QX70Phg/yr8AFikOZQSlyEVd+aV9+fTBLz6WqCytIP7WOnVF377yDBYiBHg4Hj5zlXNT2ip8G0lFNnoIYwZqgOz0= ARC-Authentication-Results:i=2; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=objecting.org; spf=pass smtp.mailfrom=objecting.org; dkim=pass (1024-bit key) header.d=objecting.org header.i=objecting@objecting.org header.b=JHbdrIG4; arc=pass smtp.client-ip=136.143.169.57 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=objecting.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=objecting.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=objecting.org header.i=objecting@objecting.org header.b="JHbdrIG4" ARC-Seal: i=1; a=rsa-sha256; t=1773532245; cv=none; d=zohomail.eu; s=zohoarc; b=YXbt/uuMpZMDqhgBeTf4XFPo7lWmegN06Wz6av+EDZ94ZNYPai0HxEXtxF3ntjRc8zh4WXpihgmgjg9zky51TauP7nKGz4IGdnzmOylDL4QOdLLKS5xH6dx+GqkuM8IJbKMTxdZPKfQeuK5uxoUE4okCX3MRX0c7ZgiJwWRTYgY= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.eu; s=zohoarc; t=1773532245; h=Content-Transfer-Encoding:Cc:Cc:Date:Date:From:From:MIME-Version:Message-ID:Subject:Subject:To:To:Message-Id:Reply-To; bh=kzYlQrzVHU3efc/Ex+TD6PzJfOW0VrMcYKAjyWidQqo=; b=BnekrxO7sB9dN555sCz++PxRafsnhMGwG3CQjtVFiCejs3eUPuzCMxcAt2/XXXhXJqWhgiEARzh0sADv1qZ8UJql046SqEkUyQXT6knhV7Q6LLQX7CfGv6og2qxL4m34gaKYYWeqbqT7lg/oULU9W4viQP4FfDaQkZ7pCN4jXUg= ARC-Authentication-Results: i=1; mx.zohomail.eu; dkim=pass header.i=objecting.org; spf=pass smtp.mailfrom=objecting@objecting.org; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1773532245; s=zmail; d=objecting.org; i=objecting@objecting.org; h=From:From:To:To:Cc:Cc:Subject:Subject:Date:Date:Message-Id:Message-Id:MIME-Version:Content-Transfer-Encoding:Reply-To; bh=kzYlQrzVHU3efc/Ex+TD6PzJfOW0VrMcYKAjyWidQqo=; b=JHbdrIG4IFEh+dBroxyHOczHQL/sPd541l54l9WAt4ywQK82kBLMA+gn4nj3XSPm x/Yd5v9/0qSSNu3v11RwF/oyDI6RlKNrWssB42F8Aj6g89A6tob6f5uu2NQzgCzVsv4 cZF/F8WLdZVr6gOdG3A2bllTuEXCzhgTtXhlWVig= Received: by mx.zoho.eu with SMTPS id 1773532243907977.8160578369527; Sun, 15 Mar 2026 00:50:43 +0100 (CET) From: Josh Law To: NeilBrown , Andrew Morton Cc: Chuck Lever , linux-kernel@vger.kernel.org Subject: [PATCH v2 0/2] lib/lwq: fixes for test module hang and unload Date: Sat, 14 Mar 2026 23:50:40 +0000 Message-Id: <20260314235042.189833-1-objecting@objecting.org> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-ZohoMailClient: External This series contains two fixes for the lib/lwq test module: 1. Fix a potential kthread_stop() hang by checking kthread_should_stop() inside the wait_var_event() condition. 2. Add a missing module_exit() declaration to allow the test module to be unloaded after insertion. Changes since v1: - Resend with the relevant recipients added from file history and blame. - Add Neil Brown and Andrew Morton to To:. - Add Chuck Lever and linux-kernel@vger.kernel.org to Cc:. - No code changes. Josh Law (2): lib/lwq: fix potential kthread_stop() hang in test lib/lwq: add missing module_exit for test module lib/lwq.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) -- 2.34.1