linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-02-25 20:50:31 to 2020-02-25 23:30:48 UTC [more...]

[patch 00/10] x86/entry: Consolidation - Part I
 2020-02-25 21:36 UTC  (11+ messages)
` [patch 01/10] x86/entry/32: Add missing ASM_CLAC to general_protection entry
` [patch 02/10] x86/mce: Disable tracing and kprobes on do_machine_check()
` [patch 03/10] x86/entry/32: Force MCE through do_mce()
` [patch 04/10] x86/traps: Remove pointless irq enable from do_spurious_interrupt_bug()
` [patch 05/10] x86/traps: Document do_spurious_interrupt_bug()
` [patch 06/10] x86/traps: Remove redundant declaration of do_double_fault()
` [patch 07/10] x86/irq: Remove useless return value from do_IRQ()
` [patch 08/10] x86/entry/32: Remove the 0/-1 distinction from exception entries
` [patch 09/10] x86/entry/entry_32: Route int3 through common_exception
` [patch 10/10] x86/traps: Stop using ist_enter/exit() in do_int3()

[patch 0/8] x86/entry: Consolidation - Part II
 2020-02-25 22:08 UTC  (9+ messages)
` [patch 1/8] x86/entry/64: Trace irqflags unconditionally on when returing to user space
` [patch 2/8] x86/entry/common: Consolidate syscall entry code
` [patch 3/8] x86/entry/common: Mark syscall entry points notrace/nokprobe
` [patch 4/8] x86/entry: Move irq tracing on syscall entry to C-code
` [patch 5/8] x86/entry/common: Provide trace/kprobe safe exit to user space functions
` [patch 6/8] x86/entry: Move irq tracing to syscall_slow_exit_work
` [patch 7/8] x86/entry: Move irq tracing to prepare_exit_to_user_mode()
` [patch 8/8] x86/entry: Move irqflags tracing to do_int80_syscall_32()

[patch 00/24] x86/entry: Consolidation - Part III
 2020-02-25 22:16 UTC  (25+ messages)
` [patch 01/24] x86/traps: Split trap numbers out in a seperate header
` [patch 02/24] x86/entry/64: Avoid pointless code when CONTEXT_TRACKING=n
` [patch 03/24] x86/entry/64: Reorder idtentries
` [patch 04/24] x86/entry: Distangle idtentry
` [patch 05/24] x86/entry/32: Provide macro to emit IDT entry stubs
` [patch 06/24] x86/idtentry: Provide macros to define/declare IDT entry points
` [patch 07/24] x86/traps: Prepare for using DEFINE_IDTENTRY
` [patch 08/24] x86/entry: Convert Divide Error to IDTENTRY
` [patch 09/24] x86/entry: Convert Overflow exception "
` [patch 10/24] x86/entry: Convert INT3 "
` [patch 11/24] x86/entry: Convert Bounds "
` [patch 12/24] x86/entry: Convert Invalid Opcode "
` [patch 13/24] x86/entry: Convert Device not available "
` [patch 14/24] x86/entry: Convert Coprocessor segment overrun "
` [patch 15/24] x86/entry: Provide IDTENTRY_ERRORCODE
` [patch 16/24] x86/entry: Convert Invalid TSS exception to IDTENTRY
` [patch 17/24] x86/entry: Convert Segment not present "
` [patch 18/24] x86/entry: Convert Stack segment "
` [patch 19/24] x86/entry: Convert General protection "
` [patch 20/24] x86/entry: Convert Spurious interrupt bug "
` [patch 21/24] x86/entry: Convert Coprocessor error "
` [patch 22/24] x86/entry: Convert Alignment check "
` [patch 23/24] x86/entry: Convert SIMD coprocessor error "
` [patch 24/24] x86/entry/32: Convert IRET exception to IDTENTRY_SW

[PATCH v5 13/19] x86/cpufeatures: Add flag to track whether MSR IA32_FEAT_CTL is configured
 2020-02-25 23:29 UTC  (5+ messages)

[patch 00/16] x86/entry: Consolidation - Part IV
 2020-02-25 22:33 UTC  (17+ messages)
` [patch 01/16] x86/entry: Provide IDTENTRY_IST
` [patch 02/16] x86/entry: Convert Machine Check to IDTENTRY_IST
` [patch 03/16] x86/idtentry: Provide IDTENTRY_XEN for XEN/PV
` [patch 04/16] x86/entry: Convert NMI to IDTENTRY_NMI
` [patch 05/16] x86/entry: Convert Debug exception to IDTENTRY_DB
` [patch 06/16] x86/entry/64: Remove error code clearing from #DB and #MCE ASM stub
` [patch 07/16] x86/entry: Provide IDTRENTRY_NOIST variants for #DB and #MC
` [patch 08/16] x86/entry: Implement user mode C entry points for #DB and #MCE
` [patch 09/16] x86/entry: Provide IDTENTRY_DF
` [patch 10/16] x86/entry: Convert double fault exception to IDTENTRY_DF
` [patch 11/16] x86/entry: Switch XEN/PV hypercall entry to IDTENTRY
` [patch 12/16] x86/entry/64: Simplify idtentry_body
` [patch 13/16] x86/entry: Move irqflags and context tracking to C for simple idtentries
` [patch 14/16] x86/entry: Provide IDTENTRY_CR2
` [patch 15/16] x86/entry: Switch page fault exceptions to idtentry_simple
` [patch 16/16] x86/entry: Disable interrupts in IDTENTRY

[GIT PULL] Kselftest update for Linux 5.6-rc4
 2020-02-25 23:26 UTC 

[patch 00/15] x86/entry: Consolidation - Part V
 2020-02-25 22:47 UTC  (16+ messages)
` [patch 01/15] x86/irq: Convey vector as argument and not in ptregs
` [patch 02/15] x86/entry/64: Add ability to switch to IRQ stacks in idtentry
` [patch 03/15] x86/entry: Add IRQENTRY_IRQ macro
` [patch 04/15] x86/entry: Use idtentry for interrupts
` [patch 05/15] x86/entry: Provide IDTEnTRY_SYSVEC
` [patch 06/15] x86/entry: Convert APIC interrupts to IDTENTRY_SYSVEC
` [patch 07/15] x86/entry: Convert SMP system vectors "
` [patch 08/15] x86/entry: Convert various system vectors
` [patch 09/15] x86/entry: Convert KVM vectors to IDTENTRY_SYSVEC
` [patch 10/15] x86/entry: Convert various hypervisor "
` [patch 11/15] x86/entry: Convert XEN hypercall vector "
` [patch 12/15] x86/entry: Remove the apic/BUILD interrupt leftovers
` [patch 13/15] x86/entry/32: Remove redundant irq disable code
` [patch 14/15] x86/entry: Provide return_from exception()
` [patch 15/15] x86/entry: Use return_from_exception()

[PATCH] arm64: Kconfig: Enable NODES_SPAN_OTHER_NODES config for NUMA
 2020-02-25 23:20 UTC  (4+ messages)

[PATCH v5 2/2] tmpfs: Support 64-bit inums per-sb
 2020-02-25 23:14 UTC  (12+ messages)

[RFC PATCH 0/2] AT8031 PHY timestamping support
 2020-02-25 23:08 UTC  (3+ messages)
` [RFC PATCH 1/2] net: phy: let the driver register its own IRQ handler
` [RFC PATCH 2/2] net: phy: at803x: add PTP support for AR8031

net: UDP tunnel encapsulation module for tunnelling different
 2020-02-25 23:04 UTC 

[PATCH] tools/perf/util/*.c: Use "%zd" output format for size_t type
 2020-02-25 23:02 UTC  (2+ messages)

[PATCH] scripts/bpf: switch to more portable python3 shebang
 2020-02-25 23:01 UTC  (2+ messages)

[PATCH V4 00/13] Enable per-file/per-directory DAX operations V4
 2020-02-25 22:59 UTC  (14+ messages)
` [PATCH V4 07/13] fs: Add locking for a dynamic address space operations state
` [PATCH V4 09/13] fs/xfs: Add write aops lock to xfs layer

linux-next: build warning after merge of the net-next tree
 2020-02-25 22:58 UTC  (3+ messages)

[PATCH v3 bpf-next] RV32G eBPF JIT
 2020-02-25 22:56 UTC  (3+ messages)

[PATCH v2 0/3] latest PMU events for zen1/zen2
 2020-02-25 22:53 UTC  (3+ messages)
` [PATCH v2 3/3] perf vendor events amd: update Zen1 events to V2

[PATCH v2] net: qrtr: fix len of skb_put_padto in qrtr_node_enqueue
 2020-02-25 22:52 UTC  (3+ messages)

[RESEND PATCH v17 00/17] Multi Color LED Framework
 2020-02-25 22:44 UTC  (5+ messages)

[PATCH 1/2] perf: Fix checking of duplicate probe to give proper hint
 2020-02-25 22:49 UTC  (4+ messages)
` [PATCH 2/2] perf: probe-file: Check return value of strlist__add

[PATCH RFC] ext4: fix potential race between online resizing and write operations
 2020-02-25 22:47 UTC  (11+ messages)

[PATCH] ARM: use assembly mnemonics for VFP register access
 2020-02-25 22:46 UTC  (5+ messages)

[RFC net-next 0/3] net: marvell: prestera: Add Switchdev driver for Prestera family ASIC device 98DX326x (AC3x)
 2020-02-25 22:45 UTC  (5+ messages)
` [RFC net-next 1/3] net: marvell: prestera: Add Switchdev driver for Prestera family ASIC device 98DX325x (AC3x)

[PATCH v2 0/7] firmware: add partial read support in request_firmware_into_buf
 2020-02-25 22:37 UTC  (7+ messages)
` [PATCH v2 6/7] misc: bcm-vk: add Broadcom VK driver

[PATCH 1/2] kunit: kunit_parser: making parser more robust
 2020-02-25 22:35 UTC  (4+ messages)
` [PATCH 2/2] kunit: Run all KUnit tests through allyesconfig

[PATCH 1/2] modpost: rework and consolidate logging interface
 2020-02-25 22:30 UTC  (2+ messages)

[PATCH] mm: Stop kswapd early when nothing's waiting for it to free pages
 2020-02-25 22:30 UTC  (11+ messages)

[PATCH] can: mcp251x: convert to half-duplex SPI
 2020-02-25 22:25 UTC  (3+ messages)

[PATCH] Sound: rt5645: fix comments to show correct options
 2020-02-25 22:14 UTC 

[PATCH] Documentation/llvm: add documentation on building w/ Clang/LLVM
 2020-02-25 22:20 UTC  (9+ messages)
` [PATCH v2] "

[PATCH RFC v4 00/13] virtio-mem: paravirtualized memory
 2020-02-25 22:19 UTC  (6+ messages)
` [PATCH RFC v4 06/13] mm: Allow to offline unmovable PageOffline() pages via MEM_GOING_OFFLINE

[RFC][PATCH] checkpatch: Properly warn if Change-Id comes after first Signed-off-by line
 2020-02-25 22:16 UTC  (8+ messages)
        ` [PATCH] checkpatch: Improve Gerrit Change-Id: test

[PATCH v4 00/27] tracing vs world
 2020-02-25 22:10 UTC  (7+ messages)
` [PATCH v4 02/27] hardirq/nmi: Allow nested nmi_enter()

[PATCH v2] xfs: fix an undefined behaviour in _da3_path_shift
 2020-02-25 22:05 UTC  (4+ messages)

[PATCH 2/2] x86/boot/compressed: Remove unnecessary sections from bzImage
 2020-02-25 22:02 UTC  (11+ messages)
          ` --orphan-handling=warn (was Re: [PATCH 2/2] x86/boot/compressed: Remove unnecessary sections) "
            ` --orphan-handling=warn

[RFC PATCH 00/11] Removing Calxeda platform support
 2020-02-25 22:01 UTC  (4+ messages)
` [RFC PATCH 06/11] iommu: arm-smmu: Remove Calxeda secure mode quirk

[PATCH bpf-next v6 0/2] virtio_net: add XDP meta data support
 2020-02-25 21:59 UTC  (2+ messages)

[PATCH v2] execve: warn if process starts with executable stack
 2020-02-25 21:52 UTC  (3+ messages)

[PATCH v8 00/25] Change readahead API
 2020-02-25 21:48 UTC  (26+ messages)
` [PATCH v8 01/25] mm: Move readahead prototypes from mm.h
` [PATCH v8 02/25] mm: Return void from various readahead functions
` [PATCH v8 03/25] mm: Ignore return value of ->readpages
` [PATCH v8 04/25] mm: Move readahead nr_pages check into read_pages
` [PATCH v8 05/25] mm: Add new readahead_control API
` [PATCH v8 06/25] mm: Use readahead_control to pass arguments
` [PATCH v8 07/25] mm: Rename various 'offset' parameters to 'index'
` [PATCH v8 08/25] mm: rename readahead loop variable to 'i'
` [PATCH v8 09/25] mm: Remove 'page_offset' from readahead loop
` [PATCH v8 10/25] mm: Put readahead pages in cache earlier
` [PATCH v8 11/25] mm: Add readahead address space operation
` [PATCH v8 12/25] mm: Move end_index check out of readahead loop
` [PATCH v8 13/25] mm: Add page_cache_readahead_unbounded
` [PATCH v8 14/25] mm: Document why we don't set PageReadahead
` [PATCH v8 15/25] mm: Use memalloc_nofs_save in readahead path
` [PATCH v8 16/25] fs: Convert mpage_readpages to mpage_readahead
` [PATCH v8 17/25] btrfs: Convert from readpages to readahead
` [PATCH v8 18/25] erofs: Convert uncompressed files "
` [PATCH v8 19/25] erofs: Convert compressed "
` [PATCH v8 20/25] ext4: Convert "
` [PATCH v8 21/25] ext4: Pass the inode to ext4_mpage_readpages
` [PATCH v8 22/25] f2fs: Convert from readpages to readahead
` [PATCH v8 23/25] f2fs: Pass the inode to f2fs_mpage_readpages
` [PATCH v8 24/25] fuse: Convert from readpages to readahead
` [PATCH v8 25/25] iomap: "

[PATCH 0/1] i2c: imc: Add support for Intel iMC SMBus host controller
 2020-02-25 21:49 UTC  (2+ messages)

[PATCH v1] of: property: Add device link support for power-domains and hwlocks
 2020-02-25 21:45 UTC  (4+ messages)

[RFC 00/25] arm64: realtek: Add Xnano X5 and implement TM1628/FD628/AiP1618 LED controllers
 2020-02-25 21:42 UTC  (5+ messages)

[RFC 2/3] tools/memory-model: Add a litmus test for atomic_set()
 2020-02-25 21:42 UTC  (2+ messages)
` More on reader-writer locks

[PATCH v3 1/8] PCI: add constant PCI_STATUS_ERROR_BITS
 2020-02-25 21:35 UTC  (3+ messages)

[RFC PATCH v9 00/27] Control-flow Enforcement: Shadow Stack
 2020-02-25 21:31 UTC  (18+ messages)
` [RFC PATCH v9 15/27] mm: Handle THP/HugeTLB Shadow Stack page fault
` [RFC PATCH v9 17/27] x86/cet/shstk: User-mode Shadow Stack support
` [RFC PATCH v9 18/27] x86/cet/shstk: Introduce WRUSS instruction
` [RFC PATCH v9 19/27] x86/cet/shstk: Handle signals for Shadow Stack
` [RFC PATCH v9 21/27] binfmt_elf: Define GNU_PROPERTY_X86_FEATURE_1_AND
` [RFC PATCH v9 22/27] ELF: Add ELF program property parsing support
` [RFC PATCH v9 24/27] x86/cet/shstk: ELF header parsing for Shadow Stack
` [RFC PATCH v9 25/27] x86/cet/shstk: Handle thread "

[PATCH] perf: fix -Wstring-compare
 2020-02-25 21:28 UTC  (7+ messages)

[Patch v4 1/2] PCI: hv: Decouple the func definition in hv_dr_state from VSP message
 2020-02-25 21:28 UTC  (4+ messages)
` [Patch v4 2/2] PCI: hv: Add support for protocol 1.3 and support PCI_BUS_RELATIONS2

linux-next: build failure after merge of the hwmon-fixes tree
 2020-02-25 21:25 UTC  (2+ messages)

[PATCH 00/61] KVM: x86: Introduce KVM cpu caps
 2020-02-25 21:22 UTC  (11+ messages)
` [PATCH 43/61] KVM: x86: Use KVM cpu caps to mark CR4.LA57 as not-reserved
` [PATCH 48/61] KVM: x86: Do host CPUID at load time to mask KVM cpu caps
` [PATCH 58/61] KVM: x86/mmu: Configure max page level during hardware setup

[PATCH 1/2] tty: serial: samsung_tty: build it for any platform
 2020-02-25 21:22 UTC  (5+ messages)

[PATCH v2 0/8] Enable pt_regs based syscalls for x86-32 native
 2020-02-25 21:18 UTC  (11+ messages)
` [PATCH v2 1/8] x86, syscalls: Refactor SYSCALL_DEFINEx macros
` [PATCH v2 2/8] x86, syscalls: Refactor SYSCALL_DEFINE0 macros
` [PATCH v2 3/8] x86, syscalls: Refactor COND_SYSCALL macros
` [PATCH v2 4/8] x86, syscalls: Refactor SYS_NI macros
` [PATCH v2 5/8] x86: Move 32-bit compat syscalls to common location

[PATCH v3] clocksource: Fix arm_arch_timer clockmode when vDSO disabled
 2020-02-25 21:11 UTC  (2+ messages)
` [tip: timers/core] clocksource/drivers/arm_arch_timer: Fix vDSO "

[PATCH 0/5] PCI: functions/pci-epf-test: Add DMA data transfer
 2020-02-25 21:11 UTC  (2+ messages)
` [PATCH 1/5] PCI: endpoint: functions/pci-epf-test: Add DMA support to transfer data

[PATCH] of: of_reserved_mem: Increase limit on number of reserved regions
 2020-02-25 21:08 UTC  (2+ messages)

linux-next: error when fetching the kasan-bitops tree
 2020-02-25 21:03 UTC 

[PATCH v3 0/8] PCI: add and use constant PCI_STATUS_ERROR_BITS and helper pci_status_get_and_clear_errors
 2020-02-25 20:57 UTC  (2+ messages)

[PATCH v3 2/8] PCI: add pci_status_get_and_clear_errors
 2020-02-25 20:57 UTC  (2+ messages)

[PATCH] usb: hub: Fix unhandled return value of usb_autopm_get_interface()
 2020-02-25 20:54 UTC  (2+ messages)

[PATCH v3 0/4] Enable vTPM 2.0 for the IBM vTPM driver
 2020-02-25 20:53 UTC  (5+ messages)
` [PATCH v3 1/4] tpm: of: Handle IBM,vtpm20 case when getting log parameters
` [PATCH v3 2/4] tpm: ibmvtpm: Wait for buffer to be set before proceeding
` [PATCH v3 3/4] tpm: Implement tpm2_init_commands to use in non-auto startup case
` [PATCH v3 4/4] tpm: ibmvtpm: Add support for TPM 2

[RFC PATCH v14 00/10] Landlock LSM
 2020-02-25 20:49 UTC  (3+ messages)
` [RFC PATCH v14 01/10] landlock: Add object and rule management


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).