From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751415AbcFYJUx (ORCPT ); Sat, 25 Jun 2016 05:20:53 -0400 Received: from mout.kundenserver.de ([212.227.17.24]:64974 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751082AbcFYJUv (ORCPT ); Sat, 25 Jun 2016 05:20:51 -0400 From: Arnd Bergmann To: Greg KH Cc: kernel-build-reports@lists.linaro.org, Build bot for Mark Brown , linaro-kernel@lists.linaro.org, stable@vger.kernel.org, akpm@linux-foundation.org, linux-kernel@vger.kernel.org Subject: Re: v4.4.14 build: 0 failures 1 warnings (v4.4.14) Date: Sat, 25 Jun 2016 11:23:05 +0200 Message-ID: <3979206.RoHYNJ6ueF@wuerfel> User-Agent: KMail/5.1.3 (Linux/4.4.0-22-generic; KDE/5.18.0; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:QA2bVpqWagF5CTON5+uayjGan1gIJ0gArH8dERgH6UBMfk9e874 0SeuOMc8oWmfSwU9f4uguB76JIeGtWV+XVckw1Y9C/eNJrNQ2BgoAUpoqOFEfm+vUOQ/W59 Y7Dq4V285aPgHUpciXLaeJF+R6jYuAXxYpgsv1Ij0F7iyk0ysMQUX2YItIXntndhWqayVj9 ky+JI+9Q0fxeB7v9PG3PA== X-UI-Out-Filterresults: notjunk:1;V01:K0:XPHq89LbFkU=:Pumyr1U6rrU6qKGNu3c557 tQMtxt6atyV5qcNCGKGlKu7D3t9A6yyzJilRyFdxHLv0H9NsY0IcwKFaSEuW6ghLm5zPCuuAN fdjtkk0BrwD56sAzha0SFICHEsbmiVggnky7lx1hiquw/v1GZ3kAfwZIJtOeSEV2lu3a5MjII 03Z8liidXA7O8mhY3NklK2hSWg108Mnd0UaaPa0axy8IdfselpQMriUtIQiHXon2mwHN14rj9 5GEhSJc2eFq0MZsiWc787aPz+D3ilt6KD5sESKCGJQiLjb51T1Vy6r2rzW+9UhwCynRQux/T5 KgNiOpBhndqZlx0+3AK9eNEUkX8L3rxwgSwuG9jIlA+4cA+vmNAppvpgXT9100cXWSKd4BjtI cgesBvaU+c6/EuKn+pElRWqLEe0PQhZb0AJToQ9It7NUyn2H+5lPd7IIIv6RDv/y4YH6TD1RJ pVnh381LmKMRigaagAHJWXNHdmrgLVAUMTEH4I3BIjQE7ZTp55+AIMRKaR1BKwetmMflR0dJQ jDgHsBN44EnDV70QssJkzxxt2UPVYO90T8eAF/mU9OuZCcGhTtXJwlMg5sry2wu8zAMnwcy8U 2ZRf9AILfcAL+gs18Xz3WF8ov0FM024xoz7pLzcbhIoKu7Bw2AFAAXH9s8Wn6BeVLi6LOCQOP 7upDmPidiqdepmGp3GdkfNt9s8j5mi7MuiYbc/bQBmxUVONNHtc+hfZC1osOC3lMKKMhsHMa9 5EaqQr9kCk0lEhMS Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Saturday, June 25, 2016 12:37:17 AM CEST Build bot for Mark Brown wrote: > Warnings Summary: 1 > arm64-allmodconfig : PASS, 0 errors, 1 warnings, 0 section mismatches > 1 ../drivers/xen/balloon.c:155:13: warning: > 'release_memory_resource' declared 'static' but never defined > ------------------------------------------------------------------------------- > Passed with no errors, warnings or mismatches: > > arm64-allnoconfig > arm-multi_v5_defconfig > arm-multi_v7_defconfig > x86_64-defconfig > arm-allmodconfig > arm-allnoconfig > x86_64-allnoconfig > arm64-defconfig Hi Greg, It seems we're down to a single warning on ARM and ARM64 now, and the fix just got merged as commit 842775f15090 ("xen/balloon: Fix declared-but-not-defined warning") so we can for the first time have a stable kernel that builds without warnings on these architectures, nice! On 4.7-rc, there are currently two warnings: > fs/reiserfs/ibalance.c:1156:2: warning: 'new_insert_key' may be > used uninitialized in this function [-Wmaybe-uninitialized] > drivers/staging/iio/adc/ad7606_spi.c:24:18: warning: 'data' may be > used uninitialized in this function [-Wmaybe-uninitialized] The first one is an old issue that gcc recently started warning for, a workaround (reiserfs: fix "new_insert_key may be used uninitialized ...") is currently in Andrew's akpm-current, but I think it's not planned for 4.7 since it's not a regression and the code works correctly. The second one is a real bug, and the fix is now in the staging-linus tree. Arnd