summaryrefslogtreecommitdiffstats
path: root/arch/x86/entry
AgeCommit message (Expand)AuthorFilesLines
2015-11-24x86/entry/64: Fix irqflag tracing wrt context trackingAndy Lutomirski1-1/+18
2015-11-05mm: mlock: add new mlock system callEric B Munson2-0/+2
2015-11-03Merge branch 'x86-mm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds1-0/+2
2015-10-18x86/entry/32: Fix FS and GS restore in opportunistic SYSEXITAndy Lutomirski1-2/+2
2015-10-18x86/entry/32: Fix entry_INT80_32() to expect interrupts to be onAndy Lutomirski3-8/+17
2015-10-11x86/entry/64/compat: Document sysenter_fix_flags's reason for existenceBorislav Petkov1-0/+6
2015-10-09x86/entry: Split and inline syscall_return_slowpath()Andy Lutomirski1-21/+29
2015-10-09x86/entry: Split and inline prepare_exit_to_usermode()Andy Lutomirski1-15/+28
2015-10-09x86/entry: Use pt_regs_to_thread_info() in syscall entry tracingAndy Lutomirski1-11/+11
2015-10-09x86/entry: Hide two syscall entry assertions behind CONFIG_DEBUG_ENTRYAndy Lutomirski1-2/+4
2015-10-09x86/entry: Micro-optimize compat fast syscall arg fetchAndy Lutomirski1-2/+14
2015-10-09x86/entry: Force inlining of 32-bit syscall codeAndy Lutomirski1-3/+5
2015-10-09x86/entry: Make irqs_disabled checks in exit code depend on lockdepAndy Lutomirski1-3/+3
2015-10-09x86/entry: Remove unnecessary IRQ twiddling in fast 32-bit syscallsAndy Lutomirski1-7/+11
2015-10-09x86/entry/32: Re-implement SYSENTER using the new C pathAndy Lutomirski3-100/+51
2015-10-09x86/entry/32: Switch INT80 to the new C syscall pathAndy Lutomirski1-21/+13
2015-10-09x86/entry/32: Open-code return tracking from fork and kthreadsAndy Lutomirski1-3/+15
2015-10-09x86/entry/compat: Implement opportunistic SYSRETL for compat syscallsAndy Lutomirski2-5/+60
2015-10-09x86/vdso/compat: Wire up SYSENTER and SYSCSALL for compat userspaceAndy Lutomirski2-36/+62
2015-10-09x86/entry: Add C code for fast system call entriesAndy Lutomirski1-0/+43
2015-10-09x86/entry/64/compat: Migrate the body of the syscall entry to CAndy Lutomirski2-39/+19
2015-10-09x86/entry: Add do_syscall_32(), a C function to do 32-bit syscallsAndy Lutomirski1-0/+43
2015-10-09x86/syscalls: Give sys_call_ptr_t a useful typeAndy Lutomirski2-4/+4
2015-10-09x86/entry/syscalls: Move syscall table declarations into asm/syscalls.hAndy Lutomirski1-4/+1
2015-10-09x86/entry/64/compat: Set up full pt_regs for all compat syscallsAndy Lutomirski3-40/+20
2015-10-09x86/entry/64/compat: Remove most of the fast system call machineryAndy Lutomirski1-242/+4
2015-10-09x86/entry/64/compat: Remove audit optimizationsAndy Lutomirski1-96/+2
2015-10-09x86/entry/64/compat: Disable SYSENTER and SYSCALL32 entriesAndy Lutomirski1-0/+13
2015-10-09x86/vdso/32: Save extra registers in the INT80 vsyscall pathAndy Lutomirski2-1/+25
2015-10-09x86/vdso: Replace hex int80 CFI annotations with GAS directivesAndy Lutomirski1-40/+8
2015-10-09x86/vdso: Define BUILD_VDSO while building and emit .eh_frame in asmAndy Lutomirski1-2/+2
2015-10-07x86/vdso: Remove runtime 32-bit vDSO selectionAndy Lutomirski7-255/+13
2015-10-07x86/entry/64/compat: After SYSENTER, move STI after the NT fixupAndy Lutomirski1-8/+22
2015-10-07x86/entry, locking/lockdep: Move lockdep_sys_exit() to prepare_exit_to_usermo...Andy Lutomirski3-3/+2
2015-10-07x86/entry/64/compat: Fix SYSENTER's NT flag before user memory accessAndy Lutomirski1-9/+9
2015-10-07Merge branch 'linus' into x86/asm, to pick up fixes before applying new changesIngo Molnar1-1/+15
2015-10-06Merge tag 'v4.3-rc3' into x86/mm, to pick up fixes before applying new changesIngo Molnar1-1/+15
2015-09-22x86/nmi/64: Fix a paravirt stack-clobbering bug in the NMI codeAndy Lutomirski1-1/+4
2015-09-22x86/paravirt: Replace the paravirt nop with a bona fide empty functionAndy Lutomirski1-0/+11
2015-09-22x86/vdso32: Define PGTABLE_LEVELS to 32bit VDSOToshi Kani1-0/+2
2015-09-21x86/entry/vsyscall: Fix undefined symbol warningBorislav Petkov1-2/+2
2015-09-20x86/entry/vsyscall: Add CONFIG to control defaultKees Cook1-1/+8
2015-09-11sys_membarrier(): system-wide memory barrier (generic, x86)Mathieu Desnoyers2-0/+2
2015-09-10mm: mark most vm_operations_struct constKirill A. Shutemov1-1/+1
2015-09-04userfaultfd: activate syscallAndrea Arcangeli2-0/+2
2015-08-18Merge branch 'x86/urgent' into x86/asm to fix up conflicts and to pick up fixesIngo Molnar1-1/+2
2015-08-13x86: fix error handling for 32-bit compat out-of-range system call numbersLinus Torvalds1-1/+2
2015-08-08x86/vdso: Emit a GNU hashAndy Lutomirski1-1/+1
2015-08-05x86/entry: Remove do_notify_resume(), syscall_trace_leave(), and their TIF masksAndy Lutomirski1-57/+0
2015-08-05x86/entry/32: Migrate to C exit pathAndy Lutomirski1-51/+11