time.c (53471c574974a3df4a5705b1db431d69058cc6d9) | time.c (9ffc6724a35c9404a99f430f3c35b0b6372390c1) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2015 Anton Ivanov (aivanov@{brocade.com,kot-begemot.co.uk}) 4 * Copyright (C) 2015 Thomas Meyer (thomas@m3y3r.de) 5 * Copyright (C) 2012-2014 Cisco Systems 6 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) 7 * Copyright (C) 2019 Intel Corporation 8 */ --- 5 unchanged lines hidden (view full) --- 14#include <linux/mm.h> 15#include <linux/sched.h> 16#include <linux/spinlock.h> 17#include <linux/threads.h> 18#include <asm/irq.h> 19#include <asm/param.h> 20#include <kern_util.h> 21#include <os.h> | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2015 Anton Ivanov (aivanov@{brocade.com,kot-begemot.co.uk}) 4 * Copyright (C) 2015 Thomas Meyer (thomas@m3y3r.de) 5 * Copyright (C) 2012-2014 Cisco Systems 6 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) 7 * Copyright (C) 2019 Intel Corporation 8 */ --- 5 unchanged lines hidden (view full) --- 14#include <linux/mm.h> 15#include <linux/sched.h> 16#include <linux/spinlock.h> 17#include <linux/threads.h> 18#include <asm/irq.h> 19#include <asm/param.h> 20#include <kern_util.h> 21#include <os.h> |
22#include <linux/delay.h> |
|
22#include <linux/time-internal.h> 23#include <linux/um_timetravel.h> 24#include <shared/init.h> 25 26#ifdef CONFIG_UML_TIME_TRAVEL_SUPPORT 27enum time_travel_mode time_travel_mode; 28EXPORT_SYMBOL_GPL(time_travel_mode); 29 --- 853 unchanged lines hidden --- | 23#include <linux/time-internal.h> 24#include <linux/um_timetravel.h> 25#include <shared/init.h> 26 27#ifdef CONFIG_UML_TIME_TRAVEL_SUPPORT 28enum time_travel_mode time_travel_mode; 29EXPORT_SYMBOL_GPL(time_travel_mode); 30 --- 853 unchanged lines hidden --- |