 b71d47c14f
			
		
	
	
	b71d47c14f
	
	
	
		
			
			Default CONFIG_PANIC_TIMEOUT to 180 seconds on powerpc. The pSeries continue to set the timeout to 10 seconds at run-time. Thus, there's a small window where we don't have the correct value on pSeries, but if this is only run-time discoverable we don't have a better option. In any case, if the user changes the default setting of 180 seconds, we honor that user setting. Signed-off-by: Jason Baron <jbaron@akamai.com> Cc: benh@kernel.crashing.org Cc: paulus@samba.org Cc: ralf@linux-mips.org Cc: mpe@ellerman.id.au Cc: felipe.contreras@gmail.com Cc: linuxppc-dev@lists.ozlabs.org Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/705bbe0f70fb20759151642ba0176a6414ec9f7a.1385418410.git.jbaron@akamai.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			980 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			980 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _ASM_POWERPC_SETUP_H
 | |
| #define _ASM_POWERPC_SETUP_H
 | |
| 
 | |
| #include <uapi/asm/setup.h>
 | |
| 
 | |
| #ifndef __ASSEMBLY__
 | |
| extern void ppc_printk_progress(char *s, unsigned short hex);
 | |
| 
 | |
| extern unsigned int rtas_data;
 | |
| extern int mem_init_done;	/* set on boot once kmalloc can be called */
 | |
| extern int init_bootmem_done;	/* set once bootmem is available */
 | |
| extern unsigned long long memory_limit;
 | |
| extern unsigned long klimit;
 | |
| extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask);
 | |
| 
 | |
| struct device_node;
 | |
| extern void note_scsi_host(struct device_node *, void *);
 | |
| 
 | |
| /* Used in very early kernel initialization. */
 | |
| extern unsigned long reloc_offset(void);
 | |
| extern unsigned long add_reloc_offset(unsigned long);
 | |
| extern void reloc_got2(unsigned long);
 | |
| 
 | |
| #define PTRRELOC(x)	((typeof(x)) add_reloc_offset((unsigned long)(x)))
 | |
| 
 | |
| void check_for_initrd(void);
 | |
| void do_init_bootmem(void);
 | |
| void setup_panic(void);
 | |
| #define ARCH_PANIC_TIMEOUT 180
 | |
| 
 | |
| #endif /* !__ASSEMBLY__ */
 | |
| 
 | |
| #endif	/* _ASM_POWERPC_SETUP_H */
 | |
| 
 |