Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754062AbaFIB4U (ORCPT ); Sun, 8 Jun 2014 21:56:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:20319 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753512AbaFIB4O (ORCPT ); Sun, 8 Jun 2014 21:56:14 -0400 Date: Mon, 9 Jun 2014 09:57:05 +0800 From: Dave Young To: Vivek Goyal Cc: linux-kernel@vger.kernel.org, kexec@lists.infradead.org, ebiederm@xmission.com, hpa@zytor.com, mjg59@srcf.ucam.org, greg@kroah.com, bp@alien8.de, jkosina@suse.cz, chaowang@redhat.com, bhe@redhat.com, akpm@linux-foundation.org Subject: Re: [RFC PATCH 00/13][V3] kexec: A new system call to allow in kernel loading Message-ID: <20140609015705.GA1924@darkstar.nay.redhat.com> References: <1401800822-27425-1-git-send-email-vgoyal@redhat.com> <20140603131203.GA23395@redhat.com> <20140605083134.GE3506@darkstar.nay.redhat.com> <20140605150159.GA14083@redhat.com> <20140606073748.GC3343@darkstar.nay.redhat.com> <20140606200418.GN1526@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140606200418.GN1526@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/06/14 at 04:04pm, Vivek Goyal wrote: > On Fri, Jun 06, 2014 at 03:37:48PM +0800, Dave Young wrote: > > On 06/05/14 at 11:01am, Vivek Goyal wrote: > > > On Thu, Jun 05, 2014 at 04:31:34PM +0800, Dave Young wrote: > > > > > > [..] > > > > > + ret = kexec_file_load(kernel_fd, info.initrd_fd, info.command_line, > > > > > + info.command_line_len, info.kexec_flags); > > > > > > > > Vivek, > > > > > > > > I tried your patch on my uefi test machine, but kexec load fails like below: > > > > > > > > [root@localhost ~]# kexec -l /boot/vmlinuz-3.15.0-rc8+ --use-kexec2-syscall > > > > Could not find a free area of memory of 0xa000 bytes ... > > > > > > Hi Dave, > > > > > > I think this message is coming from kexec-tools from old loading path. I > > > think somehow new path did not even kick in. I tried above and I got > > > -EBADF as I did not pass initrd. Can you run gdb on kexec and see if > > > you are getting to syscall or run strace. > > > > Seems I can not reproduce the local hole fail issue but I'm sure it happens > > before the new syscall callback. > > > > This time I got -ENOEXEC. It's caused by CONFIG_EFI_MIXED=y. In case EFI_MIXED > > 64bit kernel runs on 32bit efi firmware thus XLF_CAN_BE_LOADED_ABOVE_4G is not > > set thus bzImage probe will fail with NOEXEC. > > Yep, current bzImage loader only supports loading 64bit image which can > be loaded above 4G. > > I am wondering how user space implementation is taking care of it. I guess > we are falling back to 32bit implementation where we use 32bit entry and > assume that bzImage has to be below 4G. > > We will have to do similar thing in kernel when 32bit loader comes in. > Compile that in for 64bit kernel and let it handle the case of bzImage > not being loadable above 4G. Vivek, I think current implementation is ok to only handle XLF_CAN_BE_LOADED_ABOVE_4G bzImage. Matt has sent a patch to revert the EFI_MIXED patch since 32bit loader never load kernel to above 4G space. So no worry about this issue any more. Thanks Dave -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/