From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752495Ab1HRRQM (ORCPT ); Thu, 18 Aug 2011 13:16:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43261 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751875Ab1HRRQK (ORCPT ); Thu, 18 Aug 2011 13:16:10 -0400 Date: Thu, 18 Aug 2011 13:15:41 -0400 From: Vivek Goyal To: Michael Holzheu Cc: ebiederm@xmission.com, mahesh@linux.vnet.ibm.com, hbabu@us.ibm.com, oomichi@mxs.nes.nec.co.jp, horms@verge.net.au, schwidefsky@de.ibm.com, heiko.carstens@de.ibm.com, kexec@lists.infradead.org, linux-kernel@vger.kernel.org, linux-s390@vger.kernel.org Subject: Re: [patch v3 2/8] kdump: Make kimage_load_crash_segment() weak Message-ID: <20110818171541.GC15413@redhat.com> References: <20110812134849.748973593@linux.vnet.ibm.com> <20110812134907.166585439@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110812134907.166585439@linux.vnet.ibm.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 Fri, Aug 12, 2011 at 03:48:51PM +0200, Michael Holzheu wrote: > From: Michael Holzheu > > On s390 we do not create page tables at all for the crashkernel memory. > This requires a s390 specific version for kimage_load_crash_segment(). > Therefore this patch declares this function as "__weak". The s390 version is > very simple. It just copies the kexec segment to real memory without using > page tables: > > int kimage_load_crash_segment(struct kimage *image, > struct kexec_segment *segment) > { > return copy_from_user_real((void *) segment->mem, segment->buf, > segment->bufsz); > } > > There are two main advantages of not creating page tables for the > crashkernel memory: > > a) It saves memory. We have scenarios in mind, where crashkernel > memory can be very large and saving page table space is important. > b) We protect the crashkernel memory from being overwritten. Michael, Thinking more about it. Can't we provide a arch specific version of kmap() and kunmap() so that we create temporary mappings to copy the pages and then these are torn off. That way you don't waste space as well you don't have the risk of overwritting the loaded kernel. Exporting the knowledge of generic kexec segments to arch code sounds like little odd choice. Thanks Vivek