From mboxrd@z Thu Jan 1 00:00:00 1970 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 B8960E7D27E for ; Tue, 26 Sep 2023 19:13:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229580AbjIZTNH (ORCPT ); Tue, 26 Sep 2023 15:13:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55628 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235679AbjIZTND (ORCPT ); Tue, 26 Sep 2023 15:13:03 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.153.233]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7008411D for ; Tue, 26 Sep 2023 12:12:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1695755578; x=1727291578; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=DNSZIsYar+ky9doixI2jU3jKzeiFysX5pLNUjp1layA=; b=U0fLkACNq11KVlacVNxNnivcZLWVUGw4yDYBFa9ImP0DCaNPNA+e/+rY FlGCrcz8uJG2rhgj8fIH0huPdHzD61h1xPrUjg6GBzp4LvRVLiWIL0az7 oEJiDgiUuymDVotHMV86QYtGcLqvEFHXI4irB5Sjx4oFpF7nB4IB+HXKR U0uPL99JT5x78q5J5f2GxLSlJ2UNqx7q+TC3jEfGE6i8uGJKtfGVPPxfs NpxVlSZUtM9LPZz6a9tkIYTjycBiHkwjLk+PJZs+zNcBLm7jIbLHfU7O2 GWN1jNqLd5WHNbSaLqVf+/v76YToIrJgXow2hkRq2NpCdgCqW7nCMAeiH g==; X-CSE-ConnectionGUID: QkVnHYi7QvGtzdlA0nOndg== X-CSE-MsgGUID: Ih2Ud+8jS3C6ASeCFELh+Q== X-ThreatScanner-Verdict: Negative X-IronPort-AV: E=Sophos;i="6.03,178,1694761200"; d="scan'208";a="237306755" X-Amp-Result: SKIPPED(no attachment in message) Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa5.microchip.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES128-GCM-SHA256; 26 Sep 2023 12:12:56 -0700 Received: from chn-vm-ex04.mchp-main.com (10.10.85.152) by chn-vm-ex02.mchp-main.com (10.10.85.144) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.21; Tue, 26 Sep 2023 12:12:54 -0700 Received: from brunhilda.pdev.net (10.10.85.11) by chn-vm-ex04.mchp-main.com (10.10.85.152) with Microsoft SMTP Server id 15.1.2507.21 via Frontend Transport; Tue, 26 Sep 2023 12:12:54 -0700 From: Don Brace To: , CC: Subject: [PATCH v3 04/10] smartpqi: add module parameter ctrl_ready_timeout Date: Tue, 26 Sep 2023 14:11:59 -0500 Message-ID: <20230926191206.627678-5-don.brace@microchip.com> X-Mailer: git-send-email 2.42.0.158.g94e83dcf5b In-Reply-To: <20230926191206.627678-1-don.brace@microchip.com> References: <20230926191206.627678-1-don.brace@microchip.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-man@vger.kernel.org Allow user to change the length of time that the driver will wait for the controller to become ready. Reviewed-by: Scott Benesh Reviewed-by: Scott Teel Reviewed-by: Mike McGowen Reviewed-by: Kevin Barnett Signed-off-by: Don Brace --- man4/smartpqi.4 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/man4/smartpqi.4 b/man4/smartpqi.4 index 613ef330aef1..f04472836210 100644 --- a/man4/smartpqi.4 +++ b/man4/smartpqi.4 @@ -17,6 +17,7 @@ smartpqi \- Microchip Smart Storage SCSI driver .RB [ expose_ld_first= { 0 | 1 }] .RB [ hide_vsep= { 0 | 1 }] .RB [ disable_managed_interrupts= { 0 | 1 }] +.RB [ ctrl_ready_timeout= { 0 | 30-1800 }] .YS .SH DESCRIPTION .B smartpqi @@ -107,6 +108,11 @@ Disables driver utilization of Linux kernel managed interrupts for controllers. The managed interrupts feature automatically distributes interrupts to all available CPUs and assigns SMP affinity. The default value is 0 (managed interrupts enabled). +.TP +.BR ctrl_ready_timeout= { 0 | 30-1800 } +This option specifies the timeout in seconds for the driver to wait +for controller ready. The valid range is 0 or 30-1800. The default value +is 0, which causes the driver to use a timeout of 180 seconds. .SH FILES .SS Device nodes Logical drives are accessed via the SCSI disk driver -- 2.42.0.158.g94e83dcf5b