data_type
large_stringclasses
3 values
source
large_stringclasses
29 values
code
large_stringlengths
98
49.4M
filepath
large_stringlengths
5
161
message
large_stringclasses
234 values
commit
large_stringclasses
234 values
subject
large_stringclasses
418 values
critique
large_stringlengths
101
1.26M
metadata
dict
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/linkage.h> #include <linux/objtool.h> #include <asm/nospec-branch.h> SYM_CODE_START(ibt_selftest_noendbr) ANNOTATE_NOENDBR UNWIND_HINT_FUNC /* #CP handler sets %ax to 0 */ RET SYM_CODE_END(ibt_selftest_noendbr) SYM_FUNC_START(ibt_selftest) lea ibt_selftest_n...
arch/x86/kernel/ibt_selftest.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Interrupt descriptor table related code */ #include <linux/interrupt.h> #include <asm/cpu_entry_area.h> #include <asm/set_memory.h> #include <asm/traps.h> #include <asm/proto.h> #include <asm/desc.h> #include <asm/hw_irq.h> #include <asm/ia32.h> #include <asm/idtentry.h>...
arch/x86/kernel/idt.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * I/O delay strategies for inb_p/outb_p * * Allow for a DMI based override of port 0x80, needed for certain HP laptops * and possibly other systems. Also allow for the gradual elimination of * outb_p/inb_p API uses. */ #include <linux/kernel.h> #include <linux/export.h> #inc...
arch/x86/kernel/io_delay.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * This contains the io-permission bitmap code - written by obz, with changes * by Linus. 32/64 bits code unification by Miguel Botón. */ #include <linux/capability.h> #include <linux/security.h> #include <linux/syscalls.h> #include <linux/bitmap.h> #include <linux/ioport.h> #in...
arch/x86/kernel/ioport.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Common interrupt code for 32 and 64 bit */ #include <linux/cpu.h> #include <linux/interrupt.h> #include <linux/kernel_stat.h> #include <linux/of.h> #include <linux/seq_file.h> #include <linux/smp.h> #include <linux/ftrace.h> #include <linux/delay.h> #include <linux/export...
arch/x86/kernel/irq.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar * * This file contains the lowest level x86-specific interrupt * entry, irq-stacks and irq statistics code. All the remaining * irq logic is done by the generic kernel/irq/ code and * by the x86-specific irq controller c...
arch/x86/kernel/irq_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar * * This file contains the lowest level x86_64-specific interrupt * entry and irq statistics code. All the remaining irq logic is * done by the generic kernel/irq/ code and in the * x86_64-specific irq controller code. (...
arch/x86/kernel/irq_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * x86 specific code for irq_work * * Copyright (C) 2010 Red Hat, Inc., Peter Zijlstra */ #include <linux/kernel.h> #include <linux/irq_work.h> #include <linux/hardirq.h> #include <asm/apic.h> #include <asm/idtentry.h> #include <asm/trace/irq_vectors.h> #include <linux/interru...
arch/x86/kernel/irq_work.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm/asm.h> #include <linux/export.h> #include <linux/linkage.h> /* * unsigned long native_save_fl(void) */ .pushsection .noinstr.text, "ax" SYM_FUNC_START(native_save_fl) ENDBR pushf pop %_ASM_AX RET SYM_FUNC_END(native_save_fl) .popsection EXPORT_SYMBOL(native_s...
arch/x86/kernel/irqflags.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/linkage.h> #include <linux/errno.h> #include <linux/signal.h> #include <linux/sched.h> #include <linux/ioport.h> #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/timex.h> #include <linux/random.h> #include <linux/kprobes.h> #include <linux/init.h> #...
arch/x86/kernel/irqinit.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * itmt.c: Support Intel Turbo Boost Max Technology 3.0 * * (C) Copyright 2016 Intel Corporation * Author: Tim Chen <tim.c.chen@linux.intel.com> * * On platforms supporting Intel Turbo Boost Max Technology 3.0, (ITMT), * the maximum turbo frequencies of some cores in a ...
arch/x86/kernel/itmt.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Jailhouse paravirt_ops implementation * * Copyright (c) Siemens AG, 2015-2017 * * Authors: * Jan Kiszka <jan.kiszka@siemens.com> */ #include <linux/acpi_pmtmr.h> #include <linux/kernel.h> #include <linux/reboot.h> #include <linux/serial_8250.h> #include <linux/acpi.h> #...
arch/x86/kernel/jailhouse.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * jump label x86 support * * Copyright (C) 2009 Jason Baron <jbaron@redhat.com> * */ #include <linux/jump_label.h> #include <linux/memory.h> #include <linux/uaccess.h> #include <linux/module.h> #include <linux/list.h> #include <linux/jhash.h> #include <linux/cpu.h> #include <...
arch/x86/kernel/jump_label.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Architecture specific debugfs files * * Copyright (C) 2007, Intel Corp. * Huang Ying <ying.huang@intel.com> */ #include <linux/debugfs.h> #include <linux/uaccess.h> #include <linux/export.h> #include <linux/slab.h> #include <linux/init.h> #include <linux/stat.h> #inclu...
arch/x86/kernel/kdebugfs.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Kexec bzImage loader * * Copyright (C) 2014 Red Hat Inc. * Authors: * Vivek Goyal <vgoyal@redhat.com> */ #define pr_fmt(fmt) "kexec-bzImage64: " fmt #include <linux/string.h> #include <linux/printk.h> #include <linux/errno.h> #include <linux/slab.h> #include <l...
arch/x86/kernel/kexec-bzimage64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* */ /* * Copyright (C) 2004 Amit S. Kale <amitkale@linsyssoft.com> * Copyright (C) 2000-2001 VERITAS Software Corporation. * Copyright (C) 2002 Andi Kleen, SuSE Labs * Copyright (C) 2004 LinSysSoft Technologies Pvt. Ltd. * Copyright (C) 2007 MontaVista Software, Inc...
arch/x86/kernel/kgdb.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Architecture specific sysfs attributes in /sys/kernel * * Copyright (C) 2007, Intel Corp. * Huang Ying <ying.huang@intel.com> * Copyright (C) 2013, 2013 Red Hat, Inc. * Dave Young <dyoung@redhat.com> */ #include <linux/kobject.h> #include <linux/string.h> ...
arch/x86/kernel/ksysfs.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * KVM paravirt_ops implementation * * Copyright (C) 2007, Red Hat, Inc., Ingo Molnar <mingo@redhat.com> * Copyright IBM Corporation, 2007 * Authors: Anthony Liguori <aliguori@us.ibm.com> */ #define pr_fmt(fmt) "kvm-guest: " fmt #include <linux/context_tracking.h...
arch/x86/kernel/kvm.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* KVM paravirtual clock driver. A clocksource implementation Copyright (C) 2008 Glauber de Oliveira Costa, Red Hat Inc. */ #include <linux/clocksource.h> #include <linux/kvm_para.h> #include <asm/pvclock.h> #include <asm/msr.h> #include <asm/apic.h> #include <linux/pe...
arch/x86/kernel/kvmclock.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 1992 Krishna Balasubramanian and Linus Torvalds * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com> * Copyright (C) 2002 Andi Kleen * * This handles calls from both 32bit and 64bit mode. * * Lock order: * context.ldt_usr_sem * mmap_lock * context.lo...
arch/x86/kernel/ldt.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * handle transition of Linux booting another kernel * Copyright (C) 2002-2005 Eric Biederman <ebiederm@xmission.com> */ #include <linux/mm.h> #include <linux/kexec.h> #include <linux/delay.h> #include <linux/numa.h> #include <linux/ftrace.h> #include <linux/suspend.h> #i...
arch/x86/kernel/machine_kexec_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * handle transition of Linux booting another kernel * Copyright (C) 2002-2005 Eric Biederman <ebiederm@xmission.com> */ #define pr_fmt(fmt) "kexec: " fmt #include <linux/mm.h> #include <linux/kexec.h> #include <linux/string.h> #include <linux/gfp.h> #include <linux/rebo...
arch/x86/kernel/machine_kexec_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * AMD Family 10h mmconfig enablement */ #include <linux/types.h> #include <linux/mm.h> #include <linux/string.h> #include <linux/pci.h> #include <linux/dmi.h> #include <linux/range.h> #include <linux/acpi.h> #include <asm/pci-direct.h> #include <linux/sort.h> #include <asm/io....
arch/x86/kernel/mmconf-fam10h_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* Kernel module help for x86. Copyright (C) 2001 Rusty Russell. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/moduleloader.h> #include <linux/elf.h> #include <linux/vmalloc.h> #include <linux/fs.h> #include <linux/string.h> #include <linux/kernel.h>...
arch/x86/kernel/module.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Intel Multiprocessor Specification 1.1 and 1.4 * compliant MP-table parsing routines. * * (c) 1995 Alan Cox, Building #3 <alan@lxorguk.ukuu.org.uk> * (c) 1998, 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com> * (c) 2008 Alexey Starikovskiy <astarikovskiy@suse.de> */ ...
arch/x86/kernel/mpparse.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* ----------------------------------------------------------------------- * * * Copyright 2000-2008 H. Peter Anvin - All Rights Reserved * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * -----------------------------------------------------------------...
arch/x86/kernel/msr.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 1991, 1992 Linus Torvalds * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs * Copyright (C) 2011 Don Zickus Red Hat, Inc. * * Pentium III FXSR, SSE support * Gareth Hughes <gareth@valinux.com>, May 2000 */ /* * Handle hardware traps and faul...
arch/x86/kernel/nmi.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Testsuite for NMI: IPIs * * Started by Don Zickus: * (using lib/locking-selftest.c as a guide) * * Copyright (C) 2011 Red Hat, Inc., Don Zickus <dzickus@redhat.com> */ #include <linux/smp.h> #include <linux/cpumask.h> #include <linux/delay.h> #include <linux/init.h> #i...
arch/x86/kernel/nmi_selftest.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Split spinlock implementation out into its own file, so it can be * compiled in a FTRACE-compatible way. */ #include <linux/static_call.h> #include <linux/spinlock.h> #include <linux/export.h> #include <linux/jump_label.h> DEFINE_STATIC_KEY_FALSE(virt_spin_lock_key); #ifdef...
arch/x86/kernel/paravirt-spinlocks.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* Paravirtualization interfaces Copyright (C) 2006 Rusty Russell IBM Corporation 2007 - x86_64 support added by Glauber de Oliveira Costa, Red Hat Inc */ #include <linux/errno.h> #include <linux/init.h> #include <linux/export.h> #include <linux/efi.h> #include <...
arch/x86/kernel/paravirt.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/dma-map-ops.h> #include <linux/dma-direct.h> #include <linux/iommu.h> #include <linux/dmar.h> #include <linux/export.h> #include <linux/memblock.h> #include <linux/gfp.h> #include <linux/pci.h> #include <linux/amd-iommu.h> #include <asm/proto.h> #include <asm/dma.h> ...
arch/x86/kernel/pci-dma.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/platform_device.h> #include <linux/err.h> #include <linux/init.h> static __init int add_pcspkr(void) { struct platform_device *pd; pd = platform_device_register_simple("pcspkr", -1, NULL, 0); return PTR_ERR_OR_ZERO(pd); } device_initcall(add_pcspkr);
arch/x86/kernel/pcspeaker.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/errno.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/sched/task_stack.h> #include <linux/perf_event.h> #include <linux/bug.h> #include <linux/stddef.h> #include <asm/perf_regs.h> #include <asm/ptrace.h> #ifdef CONFIG_X86_32 #define PERF_REG_X86...
arch/x86/kernel/perf_regs.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/kernel.h> #include <linux/init.h> #include <linux/pnp.h> #include <asm/setup.h> #include <asm/bios_ebda.h> void __init x86_early_init_platform_quirks(void) { x86_platform.legacy.i8042 = X86_LEGACY_I8042_EXPECTED_PRESENT; x86_platform.legacy.rtc = 1; x86_platform....
arch/x86/kernel/platform-quirks.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 2015, Christoph Hellwig. * Copyright (c) 2015, Intel Corporation. */ #include <linux/platform_device.h> #include <linux/init.h> #include <linux/ioport.h> static int found(struct resource *res, void *data) { return 1; } static __init int register_e820_pmem(voi...
arch/x86/kernel/pmem.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/sched.h> #include <linux/mm.h> #include <linux/uaccess.h> #include <linux/mmzone.h> #include <linux/ioport.h> #include <linux/seq_file.h> #include <linux/console.h> #include <linux/init.h> #include <linux/edd.h> #include <linux/dmi.h> #include <linux/pfn.h> #include <...
arch/x86/kernel/probe_roms.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/errno.h> #include <linux/kernel.h> #include <linux/mm.h> #include <linux/smp.h> #include <linux/cpu.h> #include <linux/prctl.h> #include <linux/slab.h> #include <linux/sched.h> #include <linux/sched/idle.h> #include <linux/...
arch/x86/kernel/process.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ // // Code shared between 32 and 64 bit #include <asm/spec-ctrl.h> void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p); /* * This needs to be inline to optimize for the common case where no extra * work needs to be done. */ static inline void switch...
arch/x86/kernel/process.h
null
null
null
null
null
source
linux
/* * Copyright (C) 1995 Linus Torvalds * * Pentium III FXSR, SSE support * Gareth Hughes <gareth@valinux.com>, May 2000 */ /* * This file handles the architecture-dependent parts of process handling.. */ #include <linux/cpu.h> #include <linux/errno.h> #include <linux/sched.h> #include <linux/sched/task.h> #...
arch/x86/kernel/process_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 1995 Linus Torvalds * * Pentium III FXSR, SSE support * Gareth Hughes <gareth@valinux.com>, May 2000 * * X86-64 port * Andi Kleen. * * CPU hotplug support - ashok.raj@intel.com */ /* * This file handles the architecture-dependent parts of proce...
arch/x86/kernel/process_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* By Ross Biro 1/23/92 */ /* * Pentium III FXSR, SSE support * Gareth Hughes <gareth@valinux.com>, May 2000 */ #include <linux/kernel.h> #include <linux/sched.h> #include <linux/sched/task_stack.h> #include <linux/mm.h> #include <linux/smp.h> #include <linux/errno.h> #inclu...
arch/x86/kernel/ptrace.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* paravirtual clock -- common code used by kvm/xen */ #include <linux/clocksource.h> #include <linux/kernel.h> #include <linux/percpu.h> #include <linux/notifier.h> #include <linux/sched.h> #include <linux/gfp.h> #include <linux/memblock.h> #include <linux/nmi.h> #inclu...
arch/x86/kernel/pvclock.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * This file contains work-arounds for x86 and x86_64 platform bugs. */ #include <linux/dmi.h> #include <linux/pci.h> #include <linux/irq.h> #include <asm/hpet.h> #include <asm/setup.h> #include <asm/mce.h> #include <linux/platform_data/x86/apple.h> #if defined(CONFIG_X86_IO_A...
arch/x86/kernel/quirks.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/export.h> #include <linux/reboot.h> #include <linux/init.h> #include <linux/pm.h> #include <linux/efi.h> #include <linux/dmi.h> #include <linux/sched.h> #include <linux/tboot.h> #include <linux/delay.h> #include <linux/objt...
arch/x86/kernel/reboot.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * This is a good place to put board specific reboot fixups. * * List of supported fixups: * geode-gx1/cs5530a - Jaya Kumar <jayalk@intworks.biz> * geode-gx/lx/cs5536 - Andres Salomon <dilinger@debian.org> * */ #include <asm/delay.h> #include <linux/pci.h> #include <linux/i...
arch/x86/kernel/reboot_fixups_32.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * relocate_kernel.S - put the kernel image in place to boot * Copyright (C) 2002-2004 Eric Biederman <ebiederm@xmission.com> */ #include <linux/linkage.h> #include <asm/page_types.h> #include <asm/kexec.h> #include <asm/nospec-branch.h> #include <asm/processor-flags.h...
arch/x86/kernel/relocate_kernel_32.S
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * relocate_kernel.S - put the kernel image in place to boot * Copyright (C) 2002-2005 Eric Biederman <ebiederm@xmission.com> */ #include <linux/linkage.h> #include <linux/stringify.h> #include <asm/alternative.h> #include <asm/page_types.h> #include <asm/kexec.h> #inc...
arch/x86/kernel/relocate_kernel_64.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/ioport.h> #include <linux/printk.h> #include <asm/e820/api.h> #include <asm/pci_x86.h> static void resource_clip(struct resource *res, resource_size_t start, resource_size_t end) { resource_size_t low = 0, high = 0; if (res->end < start || res->start > end) ...
arch/x86/kernel/resource.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * x86 implementation of rethook. Mostly copied from arch/x86/kernel/kprobes/core.c. */ #include <linux/bug.h> #include <linux/rethook.h> #include <linux/kprobes.h> #include <linux/objtool.h> #include "kprobes/common.h" __visible void arch_rethook_trampoline_callback(s...
arch/x86/kernel/rethook.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * RTC related functions */ #include <linux/platform_device.h> #include <linux/mc146818rtc.h> #include <linux/export.h> #include <linux/pnp.h> #include <asm/vsyscall.h> #include <asm/x86_init.h> #include <asm/time.h> #include <asm/setup.h> #ifdef CONFIG_X86_32 /* * This is a s...
arch/x86/kernel/rtc.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 1995 Linus Torvalds * * This file contains the setup_arch() code, which handles the architecture-dependent * parts of early kernel initialization. */ #include <linux/acpi.h> #include <linux/console.h> #include <linux/cpu.h> #include <linux/crash_dump.h>...
arch/x86/kernel/setup.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/kernel.h> #include <linux/export.h> #include <linux/init.h> #include <linux/memblock.h> #include <linux/percpu.h> #include <linux/kexec.h> #include <linux/crash_dump.h> #include <linux/smp.h> #include <linux/topology.h> #in...
arch/x86/kernel/setup_percpu.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * sev_verify_cbit.S - Code for verification of the C-bit position reported * by the Hypervisor when running with SEV enabled. * * Copyright (c) 2020 Joerg Roedel (jroedel@suse.de) * * sev_verify_cbit() is called before switching to a new long-mode page-table ...
arch/x86/kernel/sev_verify_cbit.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * shstk.c - Intel shadow stack support * * Copyright (c) 2021, Intel Corporation. * Yu-cheng Yu <yu-cheng.yu@intel.com> */ #include <linux/sched.h> #include <linux/bitops.h> #include <linux/types.h> #include <linux/mm.h> #include <linux/mman.h> #include <linux/slab.h> #inclu...
arch/x86/kernel/shstk.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 1991, 1992 Linus Torvalds * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs * * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes * 2000-2002 x86-64 support by Andi Kleen *...
arch/x86/kernel/signal.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 1991, 1992 Linus Torvalds * * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes * 2000-12-* x86-64 compatibility mode signal handling by Andi Kleen */ #include <linux/sched.h> #...
arch/x86/kernel/signal_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 1991, 1992 Linus Torvalds * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/kernel.h> #include <linux/errno.h> #include <linux/unistd.h> #include <linux/uaccess.h> #include <linux/syscalls.h...
arch/x86/kernel/signal_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Intel SMP support routines. * * (c) 1995 Alan Cox, Building #3 <alan@lxorguk.ukuu.org.uk> * (c) 1998-99, 2000, 2009 Ingo Molnar <mingo@redhat.com> * (c) 2002,2003 Andi Kleen, SuSE Labs. * * i386 and x86_64 integration by Glauber Costa <gcosta@redhat.com> */...
arch/x86/kernel/smp.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * x86 SMP booting functions * * (c) 1995 Alan Cox, Building #3 <alan@lxorguk.ukuu.org.uk> * (c) 1998, 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com> * Copyright 2001 Andi Kleen, SuSE Labs. * * Much of the core SMP work is based on previous work by Thomas Radke, t...
arch/x86/kernel/smpboot.c
null
null
null
null
null
source
linux
/* * Stack trace management functions * * Copyright (C) 2006-2009 Red Hat, Inc., Ingo Molnar <mingo@redhat.com> */ #include <linux/sched.h> #include <linux/sched/debug.h> #include <linux/sched/task_stack.h> #include <linux/stacktrace.h> #include <linux/export.h> #include <linux/uaccess.h> #include <asm/stacktrace....
arch/x86/kernel/stacktrace.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/static_call.h> #include <linux/memory.h> #include <linux/bug.h> #include <asm/text-patching.h> enum insn_type { CALL = 0, /* site call */ NOP = 1, /* site cond-call */ JMP = 2, /* tramp / site tail-call */ RET = 3, /* tramp / site cond-tail-call */ JCC = 4, }...
arch/x86/kernel/static_call.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * x86 single-step support code, common to 32-bit and 64-bit. */ #include <linux/sched.h> #include <linux/sched/task_stack.h> #include <linux/mm.h> #include <linux/ptrace.h> #include <asm/desc.h> #include <asm/debugreg.h> #include <asm/mmu_context.h> unsigned long convert_ip_to...
arch/x86/kernel/step.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Based on * sys_sparc32 * * Copyright (C) 2000 VA Linux Co * Copyright (C) 2000 Don Dugger <n0ano@valinux.com> * Copyright (C) 1999 Arun Sharma <arun.sharma@intel.com> * Copyright (C) 1997,1998 ...
arch/x86/kernel/sys_ia32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/compat.h> #include <linux/errno.h> #include <linux/sched.h> #include <linux/sched/mm.h> #include <linux/syscalls.h> #include <linux/mm.h> #include <linux/fs.h> #include <linux/smp.h> #include <linux/sem.h> #include <linux/msg.h> #include <linux/shm.h> #include <linux/...
arch/x86/kernel/sys_x86_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * tboot.c: main implementation of helper functions used by kernel for * runtime support of Intel(R) Trusted Execution Technology * * Copyright (c) 2006-2009, Intel Corporation */ #include <linux/init_task.h> #include <linux/spinlock.h> #include <linux/export.h>...
arch/x86/kernel/tboot.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 1991,1992,1995 Linus Torvalds * Copyright (c) 1994 Alan Modra * Copyright (c) 1995 Markus Kuhn * Copyright (c) 1996 Ingo Molnar * Copyright (c) 1998 Andrea Arcangeli * Copyright (c) 2002,2006 Vojtech Pavlik * Copyright (c) 2003 Andi Kleen * *...
arch/x86/kernel/time.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/kernel.h> #include <linux/errno.h> #include <linux/sched.h> #include <linux/user.h> #include <linux/regset.h> #include <linux/syscalls.h> #include <linux/nospec.h> #include <linux/uaccess.h> #include <asm/desc.h> #include <asm/ldt.h> #include <asm/processor.h> #inclu...
arch/x86/kernel/tls.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Internal declarations for x86 TLS implementation functions. * * Copyright (C) 2007 Red Hat, Inc. All rights reserved. * * Red Hat Author: Roland McGrath. */ #ifndef _ARCH_X86_KERNEL_TLS_H #include <linux/regset.h> extern user_regset_active_fn regset_tls_active;...
arch/x86/kernel/tls.h
null
null
null
null
null
source
linux
#include <asm/trace/irq_vectors.h> #include <linux/trace.h> #if defined(CONFIG_OSNOISE_TRACER) && defined(CONFIG_X86_LOCAL_APIC) /* * trace_intel_irq_entry - record intel specific IRQ entry */ static void trace_intel_irq_entry(void *data, int vector) { osnoise_trace_irq_entry(vector); } /* * trace_intel_irq_exit ...
arch/x86/kernel/trace.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * X86 trace clocks */ #include <asm/trace_clock.h> #include <asm/barrier.h> #include <asm/tsc.h> /* * trace_clock_x86_tsc(): A clock that is just the cycle counter. * * Unlike the other clocks, this is not in nanoseconds. */ u64 notrace trace_clock_x86_tsc(void) { return r...
arch/x86/kernel/trace_clock.c
null
null
null
null
null
source
linux
/* * Copyright (C) 1991, 1992 Linus Torvalds * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs * * Pentium III FXSR, SSE support * Gareth Hughes <gareth@valinux.com>, May 2000 */ /* * Handle hardware traps and faults. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/context_tracking.h>...
arch/x86/kernel/traps.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/kernel.h> #include <linux/sched.h> #include <linux/sched/clock.h> #include <linux/init.h> #include <linux/export.h> #include <linux/timer.h> #include <linux/acpi_pmtmr.h> #include <linux/cpufreq.h> #include <linux/dela...
arch/x86/kernel/tsc.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * TSC frequency enumeration via MSR * * Copyright (C) 2013, 2018 Intel Corporation * Author: Bin Gao <bin.gao@intel.com> */ #include <linux/kernel.h> #include <linux/thread_info.h> #include <asm/apic.h> #include <asm/cpu_device_id.h> #include <asm/intel-family.h> #include <...
arch/x86/kernel/tsc_msr.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * check TSC synchronization. * * Copyright (C) 2006, Red Hat, Inc., Ingo Molnar * * We check whether all boot CPUs have their TSC's synchronized, * print a warning if not and turn off the TSC clock-source. * * The warp-check is point-to-point between two CPUs, the CPU * i...
arch/x86/kernel/tsc_sync.c
null
null
null
null
null
source
linux
/* * umip.c Emulation for instruction protected by the User-Mode Instruction * Prevention feature * * Copyright (c) 2017, Intel Corporation. * Ricardo Neri <ricardo.neri-calderon@linux.intel.com> */ #include <linux/uaccess.h> #include <asm/umip.h> #include <asm/traps.h> #include <asm/insn.h> #include <asm/insn-e...
arch/x86/kernel/umip.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #include <linux/sched.h> #include <linux/sched/task.h> #include <linux/sched/task_stack.h> #include <linux/interrupt.h> #include <asm/sections.h> #include <asm/ptrace.h> #include <asm/bitops.h> #include <asm/stacktrace.h> #include <asm/unwind.h> #define FRAME_HEADER_SIZE (sizeo...
arch/x86/kernel/unwind_frame.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #include <linux/sched.h> #include <linux/ftrace.h> #include <asm/ptrace.h> #include <asm/bitops.h> #include <asm/stacktrace.h> #include <asm/unwind.h> unsigned long unwind_get_return_address(struct unwind_state *state) { unsigned long addr; if (unwind_done(state)) return 0...
arch/x86/kernel/unwind_guess.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #include <linux/objtool.h> #include <linux/module.h> #include <linux/sort.h> #include <linux/bpf.h> #include <asm/ptrace.h> #include <asm/stacktrace.h> #include <asm/unwind.h> #include <asm/orc_types.h> #include <asm/orc_lookup.h> #include <asm/orc_header.h> ORC_HEADER; #defin...
arch/x86/kernel/unwind_orc.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * User-space Probes (UProbes) for x86 * * Copyright (C) IBM Corporation, 2008-2011 * Authors: * Srikar Dronamraju * Jim Keniston */ #include <linux/kernel.h> #include <linux/sched.h> #include <linux/ptrace.h> #include <linux/uprobes.h> #include <linux/uaccess.h> #i...
arch/x86/kernel/uprobes.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * * verify_cpu.S - Code for cpu long mode and SSE verification. This * code has been borrowed from boot/setup.S and was introduced by * Andi Kleen. * * Copyright (c) 2007 Andi Kleen (ak@suse.de) * Copyright (c) 2007 Eric Biederman (ebiederm@xmission.com) * Copyr...
arch/x86/kernel/verify_cpu.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 1994 Linus Torvalds * * 29 dec 2001 - Fixed oopses caused by unchecked access to the vm86 * stack - Manfred Spraul <manfred@colorfullife.com> * * 22 mar 2002 - Manfred detected the stackfaults, but didn't handle * them corre...
arch/x86/kernel/vm86_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #include <linux/vmcore_info.h> #include <linux/pgtable.h> #include <asm/setup.h> void arch_crash_save_vmcoreinfo(void) { #ifdef CONFIG_NUMA VMCOREINFO_SYMBOL(node_data); VMCOREINFO_LENGTH(node_data, MAX_NUMNODES); #endif #ifdef CONFIG_X86_PAE VMCOREINFO_CONFIG(X86_PAE); #e...
arch/x86/kernel/vmcore_info_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #include <linux/vmcore_info.h> #include <linux/pgtable.h> #include <asm/setup.h> void arch_crash_save_vmcoreinfo(void) { u64 sme_mask = sme_me_mask; VMCOREINFO_NUMBER(phys_base); VMCOREINFO_SYMBOL(init_top_pgt); vmcoreinfo_append_str("NUMBER(pgtable_l5_enabled)=%d\n", ...
arch/x86/kernel/vmcore_info_64.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * ld script for the x86 kernel * * Historic 32-bit version written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> * * Modernisation, unification and other changes and fixes: * Copyright (C) 2007-2009 Sam Ravnborg <sam@ravnborg.org> * * * Don't define absolute symbols...
arch/x86/kernel/vmlinux.lds.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * vSMPowered(tm) systems specific initialization * Copyright (C) 2005 ScaleMP Inc. * * Ravikiran Thirumalai <kiran@scalemp.com>, * Shai Fultheim <shai@scalemp.com> * Paravirt ops integration: Glauber de Oliveira Costa <gcosta@redhat.com>, * Ravikiran Thirumalai ...
arch/x86/kernel/vsmp_64.c
null
null
null
null
null
source
linux
/* * Copyright (C) 2009 Linutronix GmbH, Thomas Gleixner <tglx@kernel.org> * * For licencing details see kernel-base/COPYING */ #include <linux/dmi.h> #include <linux/init.h> #include <linux/ioport.h> #include <linux/export.h> #include <linux/pci.h> #include <linux/acpi.h> #include <asm/acpi.h> #include <asm/bios...
arch/x86/kernel/x86_init.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Arch-specific APEI-related functions. */ #include <acpi/apei.h> #include <asm/mce.h> #include <asm/tlbflush.h> int arch_apei_enable_cmcff(struct acpi_hest_header *hest_hdr, void *data) { #ifdef CONFIG_X86_MCE int i; struct acpi_hest_ia_corrected *cmc; struct acp...
arch/x86/kernel/acpi/apei.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * boot.c - Architecture-Specific Low-Level ACPI Boot Support * * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> * Copyright (C) 2001 Jun Nakajima <jun.nakajima@intel.com> */ #define pr_fmt(fmt) "ACPI: " fmt #include <linux/init.h> #inclu...
arch/x86/kernel/acpi/boot.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * cppc.c: CPPC Interface for x86 * Copyright (c) 2016, Intel Corporation. */ #include <linux/bitfield.h> #include <acpi/cppc_acpi.h> #include <asm/msr.h> #include <asm/processor.h> #include <asm/topology.h> #define CPPC_HIGHEST_PERF_PERFORMANCE 196 #define CPPC_HIGHEST_...
arch/x86/kernel/acpi/cppc.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2005 Intel Corporation * Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> * - Added _PDC for SMP C-states on Intel CPUs */ #include <linux/kernel.h> #include <linux/export.h> #include <linux/init.h> #include <linux/acpi.h> #include <linux/cpu.h> #inc...
arch/x86/kernel/acpi/cstate.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/linkage.h> #include <asm/nospec-branch.h> #include <asm/page_types.h> #include <asm/processor-flags.h> .text .align PAGE_SIZE /* * asm_acpi_mp_play_dead() - Hand over control of the CPU to the BIOS * * rdi: Address of the ACPI MADT MPWK ResetVector * rsi: P...
arch/x86/kernel/acpi/madt_playdead.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later #include <linux/acpi.h> #include <linux/cpu.h> #include <linux/delay.h> #include <linux/io.h> #include <linux/kexec.h> #include <linux/memblock.h> #include <linux/pgtable.h> #include <linux/sched/hotplug.h> #include <asm/apic.h> #include <asm/barrier.h> #include <asm/init.h>...
arch/x86/kernel/acpi/madt_wakeup.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * sleep.c - x86-specific ACPI sleep support. * * Copyright (C) 2001-2003 Patrick Mochel * Copyright (C) 2001-2003 Pavel Machek <pavel@ucw.cz> */ #include <linux/acpi.h> #include <linux/memblock.h> #include <linux/dmi.h> #include <linux/cpumask.h> #include <linux/pgtable.h>...
arch/x86/kernel/acpi/sleep.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Variables and functions used by the code in sleep.c */ #include <linux/linkage.h> extern unsigned long saved_video_mode; extern long saved_magic; extern int wakeup_pmode_return; extern u8 wake_sleep_flags; extern void wakeup_long64(void); extern void do_suspend_lowlev...
arch/x86/kernel/acpi/sleep.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ .text #include <linux/linkage.h> #include <asm/segment.h> #include <asm/page_types.h> # Copyright 2003, 2008 Pavel Machek <pavel@suse.cz .code32 ALIGN SYM_CODE_START(wakeup_pmode_return) movw $__KERNEL_DS, %ax movw %ax, %ss movw %ax, %fs movw %ax, %gs movw $__USER...
arch/x86/kernel/acpi/wakeup_32.S
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ .text #include <linux/linkage.h> #include <linux/objtool.h> #include <asm/segment.h> #include <asm/pgtable_types.h> #include <asm/page_types.h> #include <asm/msr.h> #include <asm/asm-offsets.h> #include <asm/frame.h> #include <asm/nospec-branch.h> # Copyright 2003 Pavel Mach...
arch/x86/kernel/acpi/wakeup_64.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Local APIC handling, local APIC timers * * (c) 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com> * * Fixes * Maciej W. Rozycki : Bits for genuine 82489DX APICs; * thanks to Eric Gilmore * and Rolf G. Tews * for testing these extensively. * Maciej W. Rozy...
arch/x86/kernel/apic/apic.c
null
null
null
null
null
source
linux
/* * Common functions shared between the various APIC flavours * * SPDX-License-Identifier: GPL-2.0 */ #include <linux/irq.h> #include <linux/kvm_types.h> #include <asm/apic.h> #include "local.h" u32 apic_default_calc_apicid(unsigned int cpu) { return per_cpu(x86_cpu_to_apicid, cpu); } u32 apic_flat_calc_apicid...
arch/x86/kernel/apic/apic_common.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2004 James Cleverdon, IBM. * * Flat APIC subarch code. * * Hacked for x86-64 by James Cleverdon from i386 architecture code by * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and * James Cleverdon. */ #include <linux/export.h> #include <asm/apic...
arch/x86/kernel/apic/apic_flat_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * NOOP APIC driver. * * Does almost nothing and should be substituted by a real apic driver via * probe routine. * * Though in case if apic is disabled (for some reason) we try * to not uglify the caller's code and allow to call (some) apic routines * like self-ipi, etc......
arch/x86/kernel/apic/apic_noop.c
null
null
null
null
null