process.c (f1615bbe9be4def59c3b3eaddb60722efeed16c2) | process.c (c0c264ae5112d1cdb7d37d4e208b7a7e766a7418) |
---|---|
1/* 2 * Based on arch/arm/kernel/process.c 3 * 4 * Original Copyright (C) 1995 Linus Torvalds 5 * Copyright (C) 1996-2000 Russell King - Converted to ARM. 6 * Copyright (C) 2012 ARM Ltd. 7 * 8 * This program is free software; you can redistribute it and/or modify --- 37 unchanged lines hidden (view full) --- 46 47#include <asm/compat.h> 48#include <asm/cacheflush.h> 49#include <asm/fpsimd.h> 50#include <asm/mmu_context.h> 51#include <asm/processor.h> 52#include <asm/stacktrace.h> 53 | 1/* 2 * Based on arch/arm/kernel/process.c 3 * 4 * Original Copyright (C) 1995 Linus Torvalds 5 * Copyright (C) 1996-2000 Russell King - Converted to ARM. 6 * Copyright (C) 2012 ARM Ltd. 7 * 8 * This program is free software; you can redistribute it and/or modify --- 37 unchanged lines hidden (view full) --- 46 47#include <asm/compat.h> 48#include <asm/cacheflush.h> 49#include <asm/fpsimd.h> 50#include <asm/mmu_context.h> 51#include <asm/processor.h> 52#include <asm/stacktrace.h> 53 |
54#ifdef CONFIG_CC_STACKPROTECTOR 55#include <linux/stackprotector.h> 56unsigned long __stack_chk_guard __read_mostly; 57EXPORT_SYMBOL(__stack_chk_guard); 58#endif 59 |
|
54static void setup_restart(void) 55{ 56 /* 57 * Tell the mm system that we are going to reboot - 58 * we may need it to insert some 1:1 mappings so that 59 * soft boot works. 60 */ 61 setup_mm_for_reboot(); --- 325 unchanged lines hidden --- | 60static void setup_restart(void) 61{ 62 /* 63 * Tell the mm system that we are going to reboot - 64 * we may need it to insert some 1:1 mappings so that 65 * soft boot works. 66 */ 67 setup_mm_for_reboot(); --- 325 unchanged lines hidden --- |