From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754903AbcIHCHm (ORCPT ); Wed, 7 Sep 2016 22:07:42 -0400 Received: from mga05.intel.com ([192.55.52.43]:13116 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752777AbcIHCHe (ORCPT ); Wed, 7 Sep 2016 22:07:34 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,298,1470726000"; d="scan'208";a="758244224" Date: Thu, 8 Sep 2016 10:04:04 +0800 From: Ye Xiaolong To: Jens Axboe , Tejun Heo , Fengguang Wu Cc: lkp@01.org, Philip Li , LKML Subject: Re: [LKP] [writeback] 8bc4ad9498: INFO: suspicious RCU usage. ] Message-ID: <20160908020404.GA12960@yexl-desktop> References: <57c8012a.zlFYe5dba5wTaKD+%xiaolong.ye@intel.com> <20160907164103.GA1375@htj.duckdns.org> <6046dded-a2a6-b6e2-8c2c-0cf13accf1e9@fb.com> <20160908014313.fdebw6ig2m6edy46@wfg-t540p.sh.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160908014313.fdebw6ig2m6edy46@wfg-t540p.sh.intel.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 09/08, Fengguang Wu wrote: >Hi Jens and Tejun, > >>The command line was in the original email: >> >>$ qemu-system-x86_64 -enable-kvm -cpu Westmere -m 512M >> >>And agree, in general it'd be nice if there was a link to the image as >>well, so that folks can reproduce. > >Yes we have a reproduce script internally, however need to polish it >up and make it general usable by kernel developers. > >CC Philip. It'd be helpful to give more priority to the "lkp qemu" >reproduce command. > >For the warning here, it does not depend on any initrd, I just >confirmed this simple script can reproduce the problem. Yes, just confirmed that v4.8-rc5 doesn't have this warning, while kernel for the updated commit (fa0e2cb1af765691fabd329f03cad563a0eebf18) on branch wb-buf-throttle could reproduce it. Thanks, Xiaolong > >----------------------------------------------------------------------------- >#!/bin/bash > >kernel=$1 > >kvm=( > qemu-system-x86_64 > -enable-kvm > -cpu Westmere > -kernel $kernel > -m 1024 > -smp 1 > -device e1000,netdev=net0 > -netdev user,id=net0 > -boot order=nc > -no-reboot > -watchdog i6300esb > -watchdog-action debug > -rtc base=localtime > -nographic >) > > >append=( > ip=::::vm-kbuild-yocto-ia32-17::dhcp > root=/dev/ram0 > debug > apic=debug > sysrq_always_enabled > rcupdate.rcu_cpu_stall_timeout=100 > net.ifnames=0 > printk.devkmsg=on > panic=-1 > softlockup_panic=1 > nmi_watchdog=panic > oops=panic > load_ramdisk=2 > prompt_ramdisk=0 > systemd.log_level=err > ignore_loglevel > earlyprintk=ttyS0,115200 > console=ttyS0,115200 > console=tty0 > vga=normal > rw >) > >"${kvm[@]}" -append "${append[*]}" >----------------------------------------------------------------------------- > >Thanks, >Fengguang