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 B9964423EF for ; Mon, 16 Jan 2023 13:45:55 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B4B8840DFD; Mon, 16 Jan 2023 13:45:55 +0100 (CET) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 5939840A7D for ; Mon, 16 Jan 2023 13:45:54 +0100 (CET) Received: by dpdk.org (Postfix, from userid 65534) id 43E47123659; Mon, 16 Jan 2023 13:45:54 +0100 (CET) Subject: |WARNING| pw122097 [PATCH v6 4/4] eal: add nonnull and access function attributes In-Reply-To: <20230116124414.49905-4-mb@smartsharesystems.com> References: <20230116124414.49905-4-mb@smartsharesystems.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: =?utf-8?q?Morten_Br=C3=B8rup?= Message-Id: <20230116124554.43E47123659@dpdk.org> Date: Mon, 16 Jan 2023 13:45:54 +0100 (CET) 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/122097 _coding style issues_ WARNING:BLOCK_COMMENT_STYLE: Block comments should align the * on each line #174: FILE: lib/eal/include/rte_common.h:167: + * Tells compiler that the memory pointed to by a pointer argument +* is only read, not written to, by the function. WARNING:BLOCK_COMMENT_STYLE: Block comments should align the * on each line #176: FILE: lib/eal/include/rte_common.h:169: +* It might not be accessed at all. + * WARNING:BLOCK_COMMENT_STYLE: Block comments should align the * on each line #190: FILE: lib/eal/include/rte_common.h:183: + * Tells compiler that the memory pointed to by a pointer argument +* is only written to, not read, by the function. WARNING:BLOCK_COMMENT_STYLE: Block comments should align the * on each line #192: FILE: lib/eal/include/rte_common.h:185: +* It might not be accessed at all. + * WARNING:BLOCK_COMMENT_STYLE: Block comments should align the * on each line #206: FILE: lib/eal/include/rte_common.h:199: + * Tells compiler that the memory pointed to by a pointer argument +* is both read and written to by the function. WARNING:BLOCK_COMMENT_STYLE: Block comments should align the * on each line #208: FILE: lib/eal/include/rte_common.h:201: +* It might not be read, written to, or accessed at all. + * WARNING:BLOCK_COMMENT_STYLE: Block comments should align the * on each line #222: FILE: lib/eal/include/rte_common.h:215: + * Tells compiler that the memory pointed to by a pointer argument +* is not accessed by the function. WARNING:BLOCK_COMMENT_STYLE: Block comments should align the * on each line #223: FILE: lib/eal/include/rte_common.h:216: +* is not accessed by the function. + * total: 0 errors, 8 warnings, 153 lines checked Warning in lib/eal/include/rte_common.h: Using compiler attribute directly