paravirt.c (407da561244b9d51e6a794d6305ba38ec2c9d907) | paravirt.c (ae53fa18703000f507107df43efd1168a0365361) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* Paravirtualization interfaces 3 Copyright (C) 2006 Rusty Russell IBM Corporation 4 5 6 2007 - x86_64 support added by Glauber de Oliveira Costa, Red Hat Inc 7*/ 8 --- 18 unchanged lines hidden (view full) --- 27#include <asm/delay.h> 28#include <asm/fixmap.h> 29#include <asm/apic.h> 30#include <asm/tlbflush.h> 31#include <asm/timer.h> 32#include <asm/special_insns.h> 33#include <asm/tlb.h> 34#include <asm/io_bitmap.h> | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* Paravirtualization interfaces 3 Copyright (C) 2006 Rusty Russell IBM Corporation 4 5 6 2007 - x86_64 support added by Glauber de Oliveira Costa, Red Hat Inc 7*/ 8 --- 18 unchanged lines hidden (view full) --- 27#include <asm/delay.h> 28#include <asm/fixmap.h> 29#include <asm/apic.h> 30#include <asm/tlbflush.h> 31#include <asm/timer.h> 32#include <asm/special_insns.h> 33#include <asm/tlb.h> 34#include <asm/io_bitmap.h> |
35#include <asm/gsseg.h> |
|
35 36/* 37 * nop stub, which must not clobber anything *including the stack* to 38 * avoid confusing the entry prologues. 39 */ 40DEFINE_PARAVIRT_ASM(_paravirt_nop, "", .entry.text); 41 42/* stub always returning 0. */ --- 344 unchanged lines hidden --- | 36 37/* 38 * nop stub, which must not clobber anything *including the stack* to 39 * avoid confusing the entry prologues. 40 */ 41DEFINE_PARAVIRT_ASM(_paravirt_nop, "", .entry.text); 42 43/* stub always returning 0. */ --- 344 unchanged lines hidden --- |