Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752808AbdCTFWb (ORCPT ); Mon, 20 Mar 2017 01:22:31 -0400 Received: from ozlabs.org ([103.22.144.67]:50715 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751485AbdCTFW3 (ORCPT ); Mon, 20 Mar 2017 01:22:29 -0400 Date: Mon, 20 Mar 2017 16:22:26 +1100 From: Stephen Rothwell To: Andrew Morton , Herbert Xu Cc: linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Mahipal Challa , Jan Glauber , Dmitry Vyukov Subject: linux-next: build warnings after merge of the akpm-current tree Message-ID: <20170320162226.47c6e3ed@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2170 Lines: 35 Hi Andrew, After merging the akpm-current tree, today's linux-next build (x86_64 allmodconfig) produced these warnings: drivers/crypto/cavium/zip/zip_main.c: In function 'zip_show_stats': drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 4 has type 'long long int' [-Wformat=] seq_printf(s, " ZIP Device %d Stats\n" ^ drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'long long int' [-Wformat=] drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 6 has type 'long long int' [-Wformat=] drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 7 has type 'long long int' [-Wformat=] drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 10 has type 'long long int' [-Wformat=] drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 11 has type 'long long int' [-Wformat=] drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 12 has type 'long long int' [-Wformat=] drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 13 has type 'long long int' [-Wformat=] drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 14 has type 'long long int' [-Wformat=] drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 15 has type 'long long int' [-Wformat=] Introduced by commit 09ae5d37e093 ("crypto: zip - Add Compression/Decompression statistics") from the crypto tree interacting with commit 3f4ca3d25e1a ("asm-generic, x86: wrap atomic operations") from the akpm-current tree. This latter commit changed atomic64read() from "long" to "long long" on x86_64. -- Cheers, Stephen Rothwell