From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755357AbdEKVb2 (ORCPT ); Thu, 11 May 2017 17:31:28 -0400 Received: from mail-wm0-f68.google.com ([74.125.82.68]:33611 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751319AbdEKVb0 (ORCPT ); Thu, 11 May 2017 17:31:26 -0400 Date: Thu, 11 May 2017 23:31:22 +0200 From: Matthijs van Duin To: Guenter Roeck Cc: Greg Kroah-Hartman , linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, akpm@linux-foundation.org, shuahkh@osg.samsung.com, patches@kernelci.org, ben.hutchings@codethink.co.uk, stable@vger.kernel.org, Tony Lindgren Subject: Re: [PATCH 3.18 00/39] 3.18.53-stable review Message-ID: <20170511213122.gemj5buwrct2aemd@squirrel.local> Mail-Followup-To: Guenter Roeck , Greg Kroah-Hartman , linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, akpm@linux-foundation.org, shuahkh@osg.samsung.com, patches@kernelci.org, ben.hutchings@codethink.co.uk, stable@vger.kernel.org, Tony Lindgren References: <20170511130238.045434679@linuxfoundation.org> <20170511211607.GC12362@roeck-us.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170511211607.GC12362@roeck-us.net> User-Agent: NeoMutt/20170306 (1.8.0) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, May 11, 2017 at 02:16:07PM -0700, Guenter Roeck wrote: > arch/arm/mach-omap2/omap-headsmp.S:60: Error: bad instruction `badr r0,hyp_boot' > > I see "badr" used in later kernels, but not in v3.18. Does this possibly > require some secondary patches ? It was introduced in kernel 4.2 by 14327c662822 "ARM: replace BSYM() with badr assembly macro" The correct backport would therefore just be: - adr r0, hyp_boot + adr r0, BSYM(hyp_boot) Right?