From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965353AbbFJUky (ORCPT ); Wed, 10 Jun 2015 16:40:54 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:57948 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965306AbbFJUk0 (ORCPT ); Wed, 10 Jun 2015 16:40:26 -0400 Date: Wed, 10 Jun 2015 13:40:25 -0700 From: Andrew Morton To: Xishi Qiu Cc: Li Zefan , Mel Gorman , Wanpeng Li , Rafael Aquini , Tejun Heo , Linux MM , LKML , Hugh Dickins , Oleg Nesterov Subject: Re: [RFC] panic when reboot the system Message-Id: <20150610134025.48f0d6b73dcddae081202cc7@linux-foundation.org> In-Reply-To: <5577E483.7060500@huawei.com> References: <5577E483.7060500@huawei.com> X-Mailer: Sylpheed 3.4.1 (GTK+ 2.24.23; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 10 Jun 2015 15:17:23 +0800 Xishi Qiu wrote: > Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000007 > > Pid: 1, comm: init Tainted: G R O 3.4.24.19-0.11-default #1 > Call Trace: > [] panic+0xc1/0x1e2 > [] do_exit+0x7db/0x8d0 > [] do_group_exit+0x3a/0xa0 > [] get_signal_to_deliver+0x1ab/0x5e0 > [] do_signal+0x60/0x5f0 > [] ? do_page_fault+0x4a7/0x4d0 > [] ? poll_select_copy_remaining+0xec/0x140 > [] do_notify_resume+0x65/0x80 > [] ? trace_hardirqs_on_thunk+0x3a/0x3c > [] retint_signal+0x4d/0x92 > > > The system has a little memory left, then reboot it, and get the panic. > Perhaps this is a bug and trigger it like this and the latest kernel maybe > also have the problem. > > use a lot of memory > wake up kswapd() > reclaim some pages from init thread (pid=1) > reboot > shutdown the disk > init thread read data from disk > page fault, because the page has already reclaimed > receive SIGBUS, and init thread exit > trigger the panic > > Interesting. 3.4 is a pretty old kernel but I expect at least some of this remains. - Why the heck did the disk get shut down while init still had pages on it? We shouldn't be able to get that far without having done a swapoff. - Ignoring the above, as far as I can tell a regular old I/O error during pagein of one of init's pages (anon or file-backed) will result in the delivery of SIGBUS to init. If init isn't catching SIGBUS (or if init's signal-handling code is also swapped out to a bad sector??) then we're going to kill init and the system will panic as above. I'm not sure what we can do in this situation - init has permanently lost some text or data and is hence dead. But panicing the system doesn't seem the correct response.