From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36220) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bxVMg-000428-MY for qemu-devel@nongnu.org; Fri, 21 Oct 2016 04:39:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bxVMd-0007ml-IN for qemu-devel@nongnu.org; Fri, 21 Oct 2016 04:39:46 -0400 Received: from mga02.intel.com ([134.134.136.20]:6501) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bxVMd-0007lT-9D for qemu-devel@nongnu.org; Fri, 21 Oct 2016 04:39:43 -0400 References: <20161021082801.dglwfsocljohquok@hz-desktop> From: Haozhong Zhang Message-ID: <695474a1-1a40-8b1d-42bb-013e7d4119a4@intel.com> Date: Fri, 21 Oct 2016 16:39:08 +0800 MIME-Version: 1.0 In-Reply-To: <20161021082801.dglwfsocljohquok@hz-desktop> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] Regression caused by d2f39ad "exec.c: Ensure right alignment also for file backed ram" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: chao.p.peng@intel.com, Eduardo Habkost , Peter Crosthwaite , Dominik Dingel , anthony.xu@intel.com, Igor Mammedov , Paolo Bonzini , Richard Henderson , Xiao Guangrong On 10/21/2016 04:28 PM, Haozhong Zhang wrote: > Hi, > > Commit d2f39ad "exec.c: Ensure right alignment also for file backed > ram" added an additional alignment requirement besides to the previous > page size for the size of the backend file. On x86, the alignment > requirement for the size of the backend file is changed from 4KB in > QEMU 2.6 to 2MB in QEMU 2.7. > > This change immediately breaks the usage of "-object > memory-backend-file,...,size=$SIZE" I forgot the frontend part, the broken usage should be -object memory-backend-file,id=mem1,mem-path=$FILE,size=$SIZE -device nvdimm,id=nv1,memdev=mem1 where $SIZE is multiple of 4KB but not 2MB. It works on QEMU 2.6, but fails on 2.7 when pc_dimm_memory_plug() tries to plug the nvdimm device. Haozhong > on x86, where $SIZE is multiple of 4KB but not 2MB. It works on QEMU 2.6. > Could this be considered as a regression? > > The commit message shows it's for s390. I'm wondering whether the same > regression happens on s390 and ARM. If not, could I fix the regression > on x86 by keeping using the original alignment only on x86, e.g. > > modified exec.c > @@ -1254,7 +1254,11 @@ static void *file_ram_alloc(RAMBlock *block, > } > > block->page_size = qemu_fd_getpagesize(fd); > +#if defined(__x86_64__) || defined(__i386__) > + block->mr->align = block->page_size; > +#else > block->mr->align = MAX(block->page_size, QEMU_VMALLOC_ALIGN); > +#endif > > if (memory < block->page_size) { > error_setg(errp, "memory size 0x" RAM_ADDR_FMT " must be equal > to " > > > Thanks, > Haozhong >