From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <17923.45909.143614.592837@cargo.ozlabs.ibm.com> Date: Fri, 23 Mar 2007 22:00:37 +1100 From: Paul Mackerras To: anton@samba.org Subject: Re: [patch 05/10] Use KERN_EMERG everywhere in oops printout In-Reply-To: <20070321013825.179096000@samba.org> References: <20070321013810.404636000@samba.org> <20070321013825.179096000@samba.org> Cc: linuxppc-dev@ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , anton@samba.org writes: > @@ -926,9 +934,10 @@ > && stack[FRAME_MARKER] == REGS_MARKER) { > struct pt_regs *regs = (struct pt_regs *) > (sp + STACK_FRAME_OVERHEAD); > - printk("--- Exception: %lx", regs->trap); > + printk("%s--- Exception: %lx", log_lvl, regs->trap); > print_symbol(" at %s\n", regs->nip); > lr = regs->link; > + printk(KERN_EMERG); Why is this one KERN_EMERG rather than log_lvl? Just an oversight? Paul.