From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bh-25.webhostbox.net ([208.91.199.152]:50911 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754071AbbINOZe (ORCPT ); Mon, 14 Sep 2015 10:25:34 -0400 To: stable , Li Zefan From: Guenter Roeck Subject: Build failures in 3.4-stable-queue Message-ID: <55F6D8DC.9080809@roeck-us.net> Date: Mon, 14 Sep 2015 07:25:32 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: stable-owner@vger.kernel.org List-ID: All powerpc builds fail. arch/powerpc/kernel/cacheinfo.c: In function 'cache_is_unified_d': arch/powerpc/kernel/cacheinfo.c:349:16: error: unused variable 'cache' [-Werror=unused-variable] struct cache *cache; Back-port of patch 'powerpc: Fix missing L2 cache size in /sys/devices/system/cpu' left the dangling variable hang around. --- arch/powerpc/platforms/pseries/dlpar.c: In function 'dlpar_cpu_probe': arch/powerpc/platforms/pseries/dlpar.c:421:3: error: 'ret' undeclared (first use in this function) Offending patch is 'powerpc/pseries: Correct cpu affinity for dlpar added cpus'. + rc = dlpar_acquire_drc(drc_index); + if (rc) { + ret = -EINVAL; ^^^ + goto out; + } + --- s390:defconfig fails to build. arch/s390/kernel/suspend.c: In function 'pfn_is_nosave': arch/s390/kernel/suspend.c:140:30: error: '_eshared' undeclared (first use in this function) arch/s390/kernel/suspend.c:140:30: note: each undeclared identifier is reported only once for each function it appears in arch/s390/kernel/suspend.c:141:28: error: '_stext' undeclared (first use in this function) arch/s390/kernel/suspend.c:150:10: error: 'ipl_info' undeclared (first use in this function) arch/s390/kernel/suspend.c:150:27: error: 'IPL_TYPE_NSS' undeclared (first use in this function) Offending patch is 's390/hibernate: fix save and restore of kernel text section'. There may be some context patches missing. Guenter