From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 930EF4410E for ; Thu, 30 May 2024 13:17:59 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8412940EE4; Thu, 30 May 2024 13:17:59 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id A3D9340608 for ; Thu, 30 May 2024 13:17:55 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id 9D6BD12367B; Thu, 30 May 2024 13:17:55 +0200 (CEST) Subject: |WARNING| pw140459 [PATCH v3 21/30] net/ixgbe/base: add support for E610 Admin Command Interface In-Reply-To: <23c3f21d8d94aa3ccdc659b663cc98e7d836634e.1717067519.git.anatoly.burakov@intel.com> References: <23c3f21d8d94aa3ccdc659b663cc98e7d836634e.1717067519.git.anatoly.burakov@intel.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Anatoly Burakov Message-Id: <20240530111755.9D6BD12367B@dpdk.org> Date: Thu, 30 May 2024 13:17:55 +0200 (CEST) X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: automatic DPDK test reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: test-report-bounces@dpdk.org Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/140459 _coding style issues_ WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #73: Add low level support for Admin Command Interface (ACI). ACI is the WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #73: Add low level support for Admin Command Interface (ACI). ACI is the WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #75: the following ACI features: WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #112: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:13: + * ixgbe_init_aci - initialization routine for Admin Command Interface WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #115: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:16: + * Initialize the ACI lock. WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #117: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:18: +void ixgbe_init_aci(struct ixgbe_hw *hw) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #119: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:20: + ixgbe_init_lock(&hw->aci.lock); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #123: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:24: + * ixgbe_shutdown_aci - shutdown routine for Admin Command Interface WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #126: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:27: + * Destroy the ACI lock. WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #128: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:29: +void ixgbe_shutdown_aci(struct ixgbe_hw *hw) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #130: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:31: + ixgbe_destroy_lock(&hw->aci.lock); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #134: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:35: + * ixgbe_should_retry_aci_send_cmd_execute - decide if ACI command should WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #134: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:35: + * ixgbe_should_retry_aci_send_cmd_execute - decide if ACI command should WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #136: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:37: + * @opcode: ACI opcode WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #138: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:39: + * Check if ACI command should be sent again depending on the provided opcode. WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #143: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:44: +STATIC bool ixgbe_should_retry_aci_send_cmd_execute(u16 opcode) CHECK:BRACES: Blank lines aren't necessary after an open brace '{' #145: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:46: +{ + WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #147: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:48: + case ixgbe_aci_opc_disable_rxen: WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #148: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:49: + case ixgbe_aci_opc_get_phy_caps: WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #149: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:50: + case ixgbe_aci_opc_get_link_status: WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #150: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:51: + case ixgbe_aci_opc_get_link_topo: WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #158: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:59: + * ixgbe_aci_send_cmd_execute - execute sending FW Admin Command to FW Admin WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #170: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:71: + * * - IXGBE_ERR_ACI_DISABLED - CSR mechanism is not enabled. WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #171: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:72: + * * - IXGBE_ERR_ACI_BUSY - CSR mechanism is busy. WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #174: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:75: + * * - IXGBE_ERR_ACI_TIMEOUT - Admin Command X command timeout. WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #175: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:76: + * * - IXGBE_ERR_ACI_ERROR - Admin Command X invalid state of HICR register or WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #180: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:81: +ixgbe_aci_send_cmd_execute(struct ixgbe_hw *hw, struct ixgbe_aci_desc *desc, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #180: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:81: +ixgbe_aci_send_cmd_execute(struct ixgbe_hw *hw, struct ixgbe_aci_desc *desc, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #191: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:92: + hw->aci.last_status = IXGBE_ACI_RC_OK; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #191: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:92: + hw->aci.last_status = IXGBE_ACI_RC_OK; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #196: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:97: + status = IXGBE_ERR_ACI_DISABLED; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #200: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:101: + hw->aci.last_status = IXGBE_ACI_RC_EBUSY; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #200: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:101: + hw->aci.last_status = IXGBE_ACI_RC_EBUSY; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #201: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:102: + status = IXGBE_ERR_ACI_BUSY; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #206: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:107: + if (buf_size > IXGBE_ACI_MAX_BUFFER_SIZE) { WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #212: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:113: + desc->flags |= IXGBE_CPU_TO_LE16(IXGBE_ACI_FLAG_BUF); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #215: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:116: + if (desc->flags & IXGBE_CPU_TO_LE16(IXGBE_ACI_FLAG_BUF)) { CHECK:BOOL_COMPARISON: Using comparison to true is error prone #225: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:126: + if (valid_buf == true) { ERROR:POINTER_LOCATION: "(foo*)" should be "(foo *)" #231: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:132: + tmp_buf = (u32*)ixgbe_malloc(hw, tmp_buf_size); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #244: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:145: + if (tmp_buf_size > IXGBE_ACI_LG_BUF) WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #246: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:147: + IXGBE_CPU_TO_LE16(IXGBE_ACI_FLAG_LB); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #250: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:151: + if (desc->flags & IXGBE_CPU_TO_LE16(IXGBE_ACI_FLAG_RD)) { WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #259: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:160: + for (i = 0; i < IXGBE_ACI_DESC_SIZE_IN_DWORDS; i++) WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #271: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:172: + for (i = 0; i < IXGBE_ACI_SYNC_RESPONSE_TIMEOUT; i += 1) { WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #281: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:182: + for (i = 0; i < IXGBE_ACI_ASYNC_RESPONSE_TIMEOUT; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #293: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:194: + for (i = 0; i < IXGBE_ACI_DESC_SIZE_IN_DWORDS; i++) { WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #301: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:202: + for (i = 0; i < IXGBE_ACI_DESC_SIZE_IN_DWORDS; i++) { WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #309: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:210: + status = IXGBE_ERR_ACI_TIMEOUT; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #312: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:213: + status = IXGBE_ERR_ACI_ERROR; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #322: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:223: + opcode != IXGBE_CPU_TO_LE16(ixgbe_aci_opc_get_fw_event)) { WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #323: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:224: + status = IXGBE_ERR_ACI_ERROR; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #327: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:228: + if (desc->retval != IXGBE_ACI_RC_OK) { WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #328: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:229: + hw->aci.last_status = (enum ixgbe_aci_err)desc->retval; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #328: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:229: + hw->aci.last_status = (enum ixgbe_aci_err)desc->retval; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #329: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:230: + status = IXGBE_ERR_ACI_ERROR; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #335: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:236: + IXGBE_CPU_TO_LE16(IXGBE_ACI_FLAG_BUF))) { WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #351: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:252: + * ixgbe_aci_send_cmd - send FW Admin Command to FW Admin Command Interface WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #359: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:260: + * Retry sending the FW Admin Command multiple times to the FW ACI WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #364: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:265: +s32 ixgbe_aci_send_cmd(struct ixgbe_hw *hw, struct ixgbe_aci_desc *desc, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #364: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:265: +s32 ixgbe_aci_send_cmd(struct ixgbe_hw *hw, struct ixgbe_aci_desc *desc, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #367: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:268: + struct ixgbe_aci_desc desc_cpy; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #368: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:269: + enum ixgbe_aci_err last_status; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #376: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:277: + is_cmd_for_retry = ixgbe_should_retry_aci_send_cmd_execute(opcode); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #389: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:290: + ixgbe_acquire_lock(&hw->aci.lock); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #390: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:291: + status = ixgbe_aci_send_cmd_execute(hw, desc, buf, buf_size); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #391: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:292: + last_status = hw->aci.last_status; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #392: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:293: + ixgbe_release_lock(&hw->aci.lock); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #395: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:296: + last_status != IXGBE_ACI_RC_EBUSY) WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #402: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:303: + msec_delay(IXGBE_ACI_SEND_DELAY_TIME_MS); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #403: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:304: + } while (++idx < IXGBE_ACI_SEND_MAX_EXECUTE); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #412: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:313: + * ixgbe_aci_check_event_pending - check if there are any pending events WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #420: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:321: +bool ixgbe_aci_check_event_pending(struct ixgbe_hw *hw) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #433: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:334: + * ixgbe_aci_get_event - get an event from ACI WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #433: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:334: + * ixgbe_aci_get_event - get an event from ACI WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #438: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:339: + * Obtain an event from ACI and return its content WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #439: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:340: + * through 'e' using ACI command (0x0014). WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #445: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:346: +s32 ixgbe_aci_get_event(struct ixgbe_hw *hw, struct ixgbe_aci_event *e, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #445: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:346: +s32 ixgbe_aci_get_event(struct ixgbe_hw *hw, struct ixgbe_aci_event *e, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #448: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:349: + struct ixgbe_aci_desc desc; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #454: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:355: + ixgbe_acquire_lock(&hw->aci.lock); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #457: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:358: + if (!ixgbe_aci_check_event_pending(hw)) { WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #458: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:359: + status = IXGBE_ERR_ACI_NO_EVENTS; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #459: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:360: + goto aci_get_event_exit; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #463: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:364: + ixgbe_fill_dflt_direct_cmd_desc(&desc, ixgbe_aci_opc_get_fw_event); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #464: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:365: + status = ixgbe_aci_send_cmd_execute(hw, &desc, e->msg_buf, e->buf_len); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #466: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:367: + goto aci_get_event_exit; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #469: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:370: + if (desc.opcode == IXGBE_CPU_TO_LE16(ixgbe_aci_opc_get_fw_event)) { WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #470: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:371: + status = IXGBE_ERR_ACI_NO_EVENTS; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #471: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:372: + goto aci_get_event_exit; WARNING:BRACES: braces {} are not necessary for single statement blocks #480: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:381: + if (pending) { + *pending = ixgbe_aci_check_event_pending(hw); + } WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #481: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:382: + *pending = ixgbe_aci_check_event_pending(hw); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #484: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:385: +aci_get_event_exit: WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #485: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:386: + ixgbe_release_lock(&hw->aci.lock); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #491: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:392: + * ixgbe_fill_dflt_direct_cmd_desc - fill ACI descriptor with default values. WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #498: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:399: +void ixgbe_fill_dflt_direct_cmd_desc(struct ixgbe_aci_desc *desc, u16 opcode) WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #503: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:404: + desc->flags = IXGBE_CPU_TO_LE16(IXGBE_ACI_FLAG_SI); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #507: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:408: + * ixgbe_aci_req_res - request a common resource WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #514: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:415: + * Requests a common resource using the ACI command (0x0008). WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #523: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:424: +ixgbe_aci_req_res(struct ixgbe_hw *hw, enum ixgbe_aci_res_ids res, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #523: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:424: +ixgbe_aci_req_res(struct ixgbe_hw *hw, enum ixgbe_aci_res_ids res, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #524: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:425: + enum ixgbe_aci_res_access_type access, u8 sdp_number, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #527: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:428: + struct ixgbe_aci_cmd_req_res *cmd_resp; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #528: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:429: + struct ixgbe_aci_desc desc; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #533: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:434: + ixgbe_fill_dflt_direct_cmd_desc(&desc, ixgbe_aci_opc_req_res); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #541: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:442: + status = ixgbe_aci_send_cmd(hw, &desc, NULL, 0); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #551: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:452: + if (!status || hw->aci.last_status == IXGBE_ACI_RC_EBUSY) WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #551: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:452: + if (!status || hw->aci.last_status == IXGBE_ACI_RC_EBUSY) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #558: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:459: + * ixgbe_aci_release_res - release a common resource using ACI WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #558: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:459: + * ixgbe_aci_release_res - release a common resource using ACI WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #563: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:464: + * Release a common resource using ACI command (0x0009). WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #568: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:469: +ixgbe_aci_release_res(struct ixgbe_hw *hw, enum ixgbe_aci_res_ids res, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #568: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:469: +ixgbe_aci_release_res(struct ixgbe_hw *hw, enum ixgbe_aci_res_ids res, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #571: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:472: + struct ixgbe_aci_cmd_req_res *cmd; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #572: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:473: + struct ixgbe_aci_desc desc; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #576: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:477: + ixgbe_fill_dflt_direct_cmd_desc(&desc, ixgbe_aci_opc_release_res); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #581: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:482: + return ixgbe_aci_send_cmd(hw, &desc, NULL, 0); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #592: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:493: + * the ixgbe_aci_req_res to utilize ACI. WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #592: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:493: + * the ixgbe_aci_req_res to utilize ACI. WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #594: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:495: + * performed any necessary updates, the IXGBE_ERR_ACI_NO_WORK is returned, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #600: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:501: +s32 ixgbe_acquire_res(struct ixgbe_hw *hw, enum ixgbe_aci_res_ids res, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #601: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:502: + enum ixgbe_aci_res_access_type access, u32 timeout) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #609: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:510: + status = ixgbe_aci_req_res(hw, res, access, 0, &res_timeout); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #611: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:512: + /* A return code of IXGBE_ERR_ACI_NO_WORK means that another driver has WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #616: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:517: + if (status == IXGBE_ERR_ACI_NO_WORK) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #630: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:531: + status = ixgbe_aci_req_res(hw, res, access, 0, &res_timeout); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #632: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:533: + if (status == IXGBE_ERR_ACI_NO_WORK) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #650: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:551: + * Release a common resource using ixgbe_aci_release_res. WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #652: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:553: +void ixgbe_release_res(struct ixgbe_hw *hw, enum ixgbe_aci_res_ids res) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #657: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:558: + status = ixgbe_aci_release_res(hw, res, 0); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #662: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:563: + while ((status == IXGBE_ERR_ACI_TIMEOUT) && WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #663: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:564: + (total_delay < IXGBE_ACI_RELEASE_RES_TIMEOUT)) { WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #665: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:566: + status = ixgbe_aci_release_res(hw, res, 0); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #671: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:572: + * ixgbe_aci_get_internal_data - get internal FW/HW data WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #683: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:584: + * Get internal FW/HW data using ACI command (0xFF08) for debug purposes. WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #687: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:588: +s32 ixgbe_aci_get_internal_data(struct ixgbe_hw *hw, u16 cluster_id, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #693: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:594: + struct ixgbe_aci_cmd_debug_dump_internals *cmd; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #694: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:595: + struct ixgbe_aci_desc desc; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #703: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:604: + ixgbe_aci_opc_debug_dump_internals); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #709: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:610: + status = ixgbe_aci_send_cmd(hw, &desc, buf, buf_size); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #739: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:10: +void ixgbe_init_aci(struct ixgbe_hw *hw); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #740: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:11: +void ixgbe_shutdown_aci(struct ixgbe_hw *hw); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #742: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:13: +s32 ixgbe_aci_send_cmd(struct ixgbe_hw *hw, struct ixgbe_aci_desc *desc, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #742: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:13: +s32 ixgbe_aci_send_cmd(struct ixgbe_hw *hw, struct ixgbe_aci_desc *desc, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #744: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:15: +bool ixgbe_aci_check_event_pending(struct ixgbe_hw *hw); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #745: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:16: +s32 ixgbe_aci_get_event(struct ixgbe_hw *hw, struct ixgbe_aci_event *e, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #745: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:16: +s32 ixgbe_aci_get_event(struct ixgbe_hw *hw, struct ixgbe_aci_event *e, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #748: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:19: +void ixgbe_fill_dflt_direct_cmd_desc(struct ixgbe_aci_desc *desc, u16 opcode); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #750: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:21: +s32 ixgbe_acquire_res(struct ixgbe_hw *hw, enum ixgbe_aci_res_ids res, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #751: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:22: + enum ixgbe_aci_res_access_type access, u32 timeout); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #752: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:23: +void ixgbe_release_res(struct ixgbe_hw *hw, enum ixgbe_aci_res_ids res); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #753: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:24: +s32 ixgbe_aci_get_internal_data(struct ixgbe_hw *hw, u16 cluster_id, WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #780: FILE: drivers/net/ixgbe/base/ixgbe_type_e610.h:170: +/* Timestamp spacing for Tools ACI: queue is active if spacing is within the range [LO..HI] */ WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #781: FILE: drivers/net/ixgbe/base/ixgbe_type_e610.h:171: +#define IXGBE_TOOLS_ACI_ACTIVE_STAMP_SPACING_LO 0 WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #782: FILE: drivers/net/ixgbe/base/ixgbe_type_e610.h:172: +#define IXGBE_TOOLS_ACI_ACTIVE_STAMP_SPACING_HI 200 WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #784: FILE: drivers/net/ixgbe/base/ixgbe_type_e610.h:174: +/* Timestamp spacing for Tools ACI: queue is expired if spacing is outside the range [LO..HI] */ WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #785: FILE: drivers/net/ixgbe/base/ixgbe_type_e610.h:175: +#define IXGBE_TOOLS_ACI_EXPIRED_STAMP_SPACING_LO -5 WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #786: FILE: drivers/net/ixgbe/base/ixgbe_type_e610.h:176: +#define IXGBE_TOOLS_ACI_EXPIRED_STAMP_SPACING_HI 205 total: 1 errors, 154 warnings, 2 checks, 682 lines checked