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 DA7BBE7AD76 for ; Tue, 3 Oct 2023 15:58:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232133AbjJCP6G (ORCPT ); Tue, 3 Oct 2023 11:58:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55570 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232405AbjJCP6G (ORCPT ); Tue, 3 Oct 2023 11:58:06 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.153.233]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 43B3BA6 for ; Tue, 3 Oct 2023 08:58:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1696348683; x=1727884683; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=lxmXif7Xf5xWURSx06Y8mElbJZAu6Y48oDVhy06YMaA=; b=Ba8N854Mmv8vFlFd/qPmgm/dBf0Cwyb+uV2s5FluHlY7Um7eVbTFsC2u tG/uta2ORZZ1fZ27qRT/iE/0AmWX4zHGtXrkXHw9NVR/y2QAbuw7+Hrma q5dL+6efHydZKSg0diQAw/9vHOYGSD9JK8VocgxcNgBLw1oV1fJ9FPvjd dMZc1/wqGtoGMvaNyS/osE0ddR6zZIKFzXFTKhlugufjVt8hpqV6GQzHd XG2l596xVPyA6/9GNktl8M3SDO6gmNNvXw+rgyIujqj0xplYFrnIQXEnN ayj0Segvc0HiYEno8Po+mvSapZs9DnCchVczvuzLRR5vTwmoCeZv/kAK0 Q==; X-CSE-ConnectionGUID: UN0vVTApTxqn/ZTTWdgekA== X-CSE-MsgGUID: GhIA+DyMR9Wp22x4vyLOTw== X-ThreatScanner-Verdict: Negative X-IronPort-AV: E=Sophos;i="6.03,197,1694761200"; d="scan'208";a="8147459" X-Amp-Result: SKIPPED(no attachment in message) Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa1.microchip.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES128-GCM-SHA256; 03 Oct 2023 08:58:03 -0700 Received: from chn-vm-ex03.mchp-main.com (10.10.85.151) 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, 3 Oct 2023 08:57:33 -0700 Received: from brunhilda.pdev.net (10.10.85.11) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server id 15.1.2507.21 via Frontend Transport; Tue, 3 Oct 2023 08:57:33 -0700 From: Don Brace To: CC: Subject: [PATCH v5 0/6] smartpqi man page updates Date: Tue, 3 Oct 2023 11:00:18 -0500 Message-ID: <20231003160024.231729-1-don.brace@microchip.com> X-Mailer: git-send-email 2.42.0.296.g493f462273 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-man@vger.kernel.org These patches are based the man page content found in git://git.kernel.org/pub/scm/docs/man-pages/man-pages.git The Linux man page smartpqi.4 is out-of-date with the man page provided by our out-of-box driver. This patch series brings the Linux man page up to date. The changes are: smarpqi-update-copyright-and-email-addresses The copyright, email, and URLs have changed to Microchip. smartpqi-update-module-parameter-descriptions We changed some descriptions of some of our module parameters. Clarifies what their default values are. smartpqi-add-module-parameter_disable_managed_interrupts We added a new module parameter to allow users to disable how interrupts are managed allowing them to change affinity. smartpqi-add-module-parameter_ctrl_ready_timeout We added a new module parameter to allow users to change how long the driver waits for the controller becomes ready. The default is 180 seconds and can be changed from 30-1800 seconds. The longer wait times are useful for large configurations. smartpqi-update_FILES_section Minor change to the FILES section. The word "Logical" was changed to "Disk" since HBA disks are also supported. smartpqi-update-host-attribute-descriptions Updated the descriptions of existing host attributes accessed through sysfs. smartpqi-update-device-attribute-descriptions Updated the descriptions of existing device attributes accessed through sysfs. smartpqi-add-host-attributes We added some new host attributes: enable_stream_detection: For RAID5/6 sequential write operations, this can help increase IOPS. Reduces Read/Modify/Write operations. This is for AIO capable devices. (Volumes consisting of non-rotating media). enable_r5_writes: Send down RAID 5 write operations down the AIO path. enable_r6_writes: Send down RAID 6 write operations down the AIO path. smartpqi-add-device-attributes We added some new device attributes: lunid - SCSI LUN ID unique_id - 16-byte ID that uniquely identifies the device within the controller. path_info - Host:Bus:Target:Lun (h:b:t:l), device type, Active/Inactive raid_bypass_cnt - Count of the number of request sent down the AIO path. sas_ncq_prio_enable - Enables SATA NCQ priority support. smartpqi-add-sg-entry-to-see_also Simple addition of the sg(4) driver to the SEE ALSO section. Changes since V4: Added patch smartpqi-add-HISTORY-section Added HISTORY section to explain that the sysfs entry for 'version' was replaced by two new sysfs entries: driver_version, and firmware_version. Suggested-by: Alejandro Colomar Link: https://lore.kernel.org/linux-man/ZRtgG396-1Cj4gn2@debian/ smartpqi: add module parameter ctrl_ready_timeout Minor update to parameter description due to suggestion by: Alejandro Colomar Link: https://lore.kernel.org/linux-man/ZRtfS8DIxlqNN-XH@debian/ Changes since V3: Updated content for the following pages due to reviews by: Alejandro Colomar smartpqi: add module parameter ctrl_ready_timeout Link: https://lore.kernel.org/linux-man/axwssorupkp6fv3b7zqgjyd243exvhlw7rle2ftyy43jxhm4yf@woxzbz4hm766/ smartpqi: update FILES section Link: https://lore.kernel.org/linux-man/fwpvmbussvf2zzug5bsqhrd7mvwcvdllvna6a4ngke3hw6w5am@b4icgpgirck4/ smartpqi: update host attribute descriptions Link: https://lore.kernel.org/linux-man/ss7k5ooeoi7y56j6otvdpwhgd5yltzk6nt5l6ujiiupxzpmrdx@zrcvhw364ejx/ smartpqi: add host attributes Link: https://lore.kernel.org/linux-man/nbt3jt7busx6akj7ykaxs7df6vlbbxtvcdy4ckvlp7saol3djl@rb6ckz3lzzot/ smartpqi: add device attributes Link: https://lore.kernel.org/linux-man/ytcsqleu53iwpn5gsjmmuoqz2cy5oegvvafwlwxn422bcn3a5e@ne3khvixxzuq/ The other patches have already been applied and were removed from the remaining patch set after a rebase. Thanks for your attention and reviews for these patches. Changes since V2: Resending due to bad e-mail address for maintainer. Changes since V1: Broke up the large patch into multiple smaller patches due to review by: Alejandro Colomar Link: https://lore.kernel.org/all/096ed4d5-945f-5ac9-eba3-c9be5d32cfe8@kernel.org/ --- Don Brace (6): smartpqi: add module parameter ctrl_ready_timeout smartpqi: update FILES section smartpqi: update host attribute descriptions smartpqi: add host attributes smartpqi: add device attributes smartpqi: add HISTORY section man4/smartpqi.4 | 194 +++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 174 insertions(+), 20 deletions(-) -- 2.42.0.296.g493f462273