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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id C68C2C5472D for ; Wed, 28 Aug 2024 03:50:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: Content-Type:In-Reply-To:From:References:Cc:To:Subject:MIME-Version:Date: Message-ID:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=CPMAiQFp/KYtwxkKabr0+fb2+mE9LL/2uAXNpSjde5c=; b=bKIurLv0pD34GU0G1VHraCyTDD 8nHPitFVAqs/Aq9/jY41P3mToY8m2OrY0qqmbFMz9i8E+BAJ+QQ2TPNdBley0vSzTFkt2+pOOQOMo GBLAMzL/B9ScBc2z6+eqmmdBeiQBQhd+AlAZexnJkUs+3WszOi7O1BdDYy4dXpQ9GYEkUg3nloOO7 8HGK8p/PaWMMIFZ2oDYYBpKHxYBvRYmBgahaJjIm0+VcrkpmAczcTHo7R61wEaDDo0JmR6Q7L3RJS qlNz/107YW6HCTCW4NAatZtowN6Be0hQu31WjZGwE7jztG5aXoHVWq4tJd/zZELNPneymq+nnJFds htiBQVxA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sj9hZ-0000000DhRj-2h2Z; Wed, 28 Aug 2024 03:50:33 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sj9gj-0000000DhCI-2aBr for linux-arm-kernel@lists.infradead.org; Wed, 28 Aug 2024 03:49:43 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 1EDBFDA7; Tue, 27 Aug 2024 20:50:06 -0700 (PDT) Received: from [10.162.42.26] (e116581.arm.com [10.162.42.26]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 826623F66E; Tue, 27 Aug 2024 20:49:36 -0700 (PDT) Message-ID: Date: Wed, 28 Aug 2024 09:19:29 +0530 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] selftests/arm64: Fix build warnings for abi To: Will Deacon Cc: shuah@kernel.org, linux-arm-kernel@lists.infradead.org, linux-kselftest@vger.kernel.org, Catalin.Marinas@arm.com, broonie@kernel.org, ryan.roberts@arm.com, Anshuman.Khandual@arm.com, aneesh.kumar@kernel.org, linux-kernel@vger.kernel.org References: <20240827051851.3738533-1-dev.jain@arm.com> <20240827123347.GC4679@willie-the-truck> Content-Language: en-US From: Dev Jain In-Reply-To: <20240827123347.GC4679@willie-the-truck> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240827_204941_738430_B370946D X-CRM114-Status: UNSURE ( 8.40 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 8/27/24 18:03, Will Deacon wrote: > On Tue, Aug 27, 2024 at 10:48:51AM +0530, Dev Jain wrote: >> A "%s" is missing in ksft_exit_fail_msg(); instead, use the newly >> introduced ksft_exit_fail_perror(). Also, uint64_t corresponds to >> unsigned 64-bit integer, so use %lx instead of %llx. > What's wrong with using %llx for a uint64_t? I think that part of the > code is fine as-is. I get a lot of warnings like these: https://www.codedump.xyz/cpp/Zs6d7saC1IRuWV2O > > Will