All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2020-07-14 11:45:44 to 2020-07-14 12:16:52 UTC [more...]

[PATCH 1/3] module: Rename module_alloc() to text_alloc() and move to kernel proper
 2020-07-14 12:11 UTC  (13+ messages)

[PATCH 00/22] add support for Clang LTO
 2020-07-14 12:16 UTC  (4+ messages)

[PATCH v4 00/75] x86: SEV-ES Guest Support
 2020-07-14 12:09 UTC  (94+ messages)
` [PATCH v4 01/75] KVM: SVM: Add GHCB definitions
` [PATCH v4 02/75] KVM: SVM: Add GHCB Accessor functions
` [PATCH v4 03/75] KVM: SVM: Use __packed shorthand
` [PATCH v4 04/75] x86/cpufeatures: Add SEV-ES CPU feature
` [PATCH v4 05/75] x86/traps: Move pf error codes to <asm/trap_pf.h>
` [PATCH v4 06/75] x86/insn: Make inat-tables.c suitable for pre-decompression code
` [PATCH v4 07/75] x86/umip: Factor out instruction fetch
` [PATCH v4 08/75] x86/umip: Factor out instruction decoding
` [PATCH v4 09/75] x86/insn: Add insn_get_modrm_reg_off()
` [PATCH v4 10/75] x86/insn: Add insn_has_rep_prefix() helper
` [PATCH v4 11/75] x86/boot/compressed/64: Disable red-zone usage
` [PATCH v4 12/75] x86/boot/compressed/64: Add IDT Infrastructure
` [PATCH v4 13/75] x86/boot/compressed/64: Rename kaslr_64.c to ident_map_64.c
` [PATCH v4 14/75] x86/boot/compressed/64: Add page-fault handler
` [PATCH v4 15/75] x86/boot/compressed/64: Always switch to own page-table
` [PATCH v4 16/75] x86/boot/compressed/64: Don't pre-map memory in KASLR code
` [PATCH v4 17/75] x86/boot/compressed/64: Change add_identity_map() to take start and end
` [PATCH v4 18/75] x86/boot/compressed/64: Add stage1 #VC handler
` [PATCH v4 19/75] x86/boot/compressed/64: Call set_sev_encryption_mask earlier
` [PATCH v4 20/75] x86/boot/compressed/64: Check return value of kernel_ident_mapping_init()
` [PATCH v4 21/75] x86/boot/compressed/64: Add set_page_en/decrypted() helpers
` [PATCH v4 22/75] x86/boot/compressed/64: Setup GHCB Based VC Exception handler
` [PATCH v4 23/75] x86/boot/compressed/64: Unmap GHCB page before booting the kernel
` [PATCH v4 24/75] x86/sev-es: Add support for handling IOIO exceptions
` [PATCH v4 25/75] x86/fpu: Move xgetbv()/xsetbv() into separate header
` [PATCH v4 26/75] x86/sev-es: Add CPUID handling to #VC handler
` [PATCH v4 27/75] x86/idt: Move IDT to data segment
` [PATCH v4 28/75] x86/idt: Split idt_data setup out of set_intr_gate()
` [PATCH v4 29/75] x86/idt: Move two function from k/idt.c to i/a/desc.h
` [PATCH v4 30/75] x86/head/64: Install boot GDT
` [PATCH v4 31/75] x86/head/64: Reload GDT after switch to virtual addresses
` [PATCH v4 32/75] x86/head/64: Load segment registers earlier
` [PATCH v4 33/75] x86/head/64: Switch to initial stack earlier
` [PATCH v4 34/75] x86/head/64: Build k/head64.c with -fno-stack-protector
` [PATCH v4 35/75] x86/head/64: Load IDT earlier
` [PATCH v4 36/75] x86/head/64: Move early exception dispatch to C code
` [PATCH v4 37/75] x86/sev-es: Add SEV-ES Feature Detection
` [PATCH v4 38/75] x86/sev-es: Print SEV-ES info into kernel log
` [PATCH v4 39/75] x86/sev-es: Compile early handler code into kernel image
` [PATCH v4 40/75] x86/sev-es: Setup early #VC handler
` [PATCH v4 41/75] x86/sev-es: Setup GHCB based boot "
` [PATCH v4 42/75] x86/sev-es: Setup per-cpu GHCBs for the runtime handler
` [PATCH v4 43/75] x86/sev-es: Allocate and Map stacks for #VC handler
` [PATCH v4 44/75] x86/sev-es: Allocate and setup IST entry for #VC
` [PATCH v4 45/75] x86/sev-es: Adjust #VC IST Stack on entering NMI handler
` [PATCH v4 46/75] x86/dumpstack/64: Add noinstr version of get_stack_info()
` [PATCH v4 47/75] x86/entry/64: Add entry code for #VC handler
` [PATCH v4 48/75] x86/sev-es: Add Runtime #VC Exception Handler
` [PATCH v4 49/75] x86/sev-es: Wire up existing #VC exit-code handlers
` [PATCH v4 50/75] x86/sev-es: Handle instruction fetches from user-space
` [PATCH v4 51/75] x86/sev-es: Handle MMIO events
` [PATCH v4 52/75] x86/sev-es: Handle MMIO String Instructions
` [PATCH v4 53/75] x86/sev-es: Handle MSR events
` [PATCH v4 54/75] x86/sev-es: Handle DR7 read/write events
` [PATCH v4 55/75] x86/sev-es: Handle WBINVD Events
` [PATCH v4 56/75] x86/sev-es: Handle RDTSC(P) Events
` [PATCH v4 57/75] x86/sev-es: Handle RDPMC Events
` [PATCH v4 58/75] x86/sev-es: Handle INVD Events
` [PATCH v4 59/75] x86/sev-es: Handle MONITOR/MONITORX Events
` [PATCH v4 60/75] x86/sev-es: Handle MWAIT/MWAITX Events
` [PATCH v4 61/75] x86/sev-es: Handle VMMCALL Events
` [PATCH v4 62/75] x86/sev-es: Handle #AC Events
` [PATCH v4 63/75] x86/sev-es: Handle #DB Events
` [PATCH v4 64/75] x86/paravirt: Allow hypervisor specific VMMCALL handling under SEV-ES
` [PATCH v4 65/75] x86/kvm: Add KVM "
` [PATCH v4 66/75] x86/vmware: Add VMware specific handling for VMMCALL "
` [PATCH v4 67/75] x86/realmode: Add SEV-ES specific trampoline entry point
` [PATCH v4 68/75] x86/realmode: Setup AP jump table
` [PATCH v4 69/75] x86/head/64: Setup TSS early for secondary CPUs
` [PATCH v4 70/75] x86/head/64: Don't call verify_cpu() on starting APs
` [PATCH v4 71/75] x86/head/64: Rename start_cpu0
` [PATCH v4 72/75] x86/sev-es: Support CPU offline/online
` [PATCH v4 73/75] x86/sev-es: Handle NMI State
` [PATCH v4 74/75] x86/efi: Add GHCB mappings when SEV-ES is active
` [PATCH v4 75/75] x86/sev-es: Check required CPU features for SEV-ES

[PATCH] spi: Use clk_prepare_enable and clk_disable_unprepare
 2020-07-14 12:16 UTC  (3+ messages)
  `  "

[Question] About scaling factor of Enhanced Counter Virtualization
 2020-07-14 12:15 UTC  (3+ messages)

[PATCH] f2fs: don't skip writeback of quota data
 2020-07-14 12:14 UTC  (11+ messages)
` [f2fs-dev] "

[PATCH 1/5] manual pages: adjtime_config.5: format pathname with .I
 2020-07-14 12:14 UTC  (4+ messages)
` [PATCH 5/5] Manual pages: various: reword "allow(s) to"

[PATCH v2 00/10] topology: decode: Various fixes
 2020-07-14 12:13 UTC  (3+ messages)

[f2fs-dev] IO hang due to f2fs checkpoint and writeback stuck
 2020-07-14 12:13 UTC  (6+ messages)

[PATCH v4 00/10] fanotify events with name info
 2020-07-14 12:13 UTC  (8+ messages)
` [PATCH v4 03/10] fsnotify: send event to parent and child with single callback
` [PATCH v4 04/10] fsnotify: send event with parent/name info to sb/mount/non-dir marks
` [PATCH v4 05/10] fsnotify: send MOVE_SELF event with parent/name info

[yocto] meta layers priority using BBFILE_PRIORITY in layer.conf is not working for me?
 2020-07-14 12:12 UTC  (4+ messages)

[PATCH] fs/9p: Fix TCREATE's fid in protocol
 2020-07-14 12:12 UTC  (2+ messages)

200ms delays with SCTP streaming data
 2020-07-14 12:12 UTC  (2+ messages)

[PATCH 0/8] Few libtraceeevnt fixes, suggested Namhyung Kim
 2020-07-14 12:12 UTC  (3+ messages)

[PATCH bpf-next 0/6] bpf: Support multi-attach for freplace programs
 2020-07-14 12:12 UTC  (4+ messages)
` [PATCH bpf-next 4/6] tools: add new members to bpf_attr.raw_tracepoint in bpf.h
  ` BPF logging infrastructure. Was: "

[PATCH v2 0/6] Improvements for dump_page()
 2020-07-14 12:11 UTC  (7+ messages)
` [PATCH v2 2/6] mm: Dump compound page information on a second line
` [PATCH v2 3/6] mm: Print head flags in dump_page
` [PATCH v2 4/6] mm: Switch dump_page to get_kernel_nofault

[LTP] [PATCH v3 0/2] IMA: Verify measurement of certificates
 2020-07-14 12:10 UTC  (6+ messages)
` [LTP] [PATCH v3 2/2] IMA: Add a test to verify importing a certificate into keyring

[PATCH] MAINTAIERS: Add John Ogness as printk reviewer
 2020-07-14 12:09 UTC  (3+ messages)

[PATCH v9 0/2] tpm2: Make TPM2 logs accessible for non-UEFI firmware
 2020-07-14 12:09 UTC  (12+ messages)
` [PATCH v9 2/2] tpm: Add support for event log pointer found in TPM2 ACPI table

[PATCH] mm, oom: check memcg margin for parallel oom
 2020-07-14 12:08 UTC 

net/dsa/microchip: correct placement of dt property phy-mode?
 2020-07-14 12:08 UTC  (2+ messages)
` [PATCH] net: dsa: microchip: look for phy-mode in port nodes

[PATCH] fs: Remove unused variable pid_struct and child_reaper in ns_ioctl function
 2020-07-14 12:09 UTC 

[PATCH net] dpaa2-eth: check fsl_mc_get_endpoint for IS_ERR_OR_NULL()
 2020-07-14 12:08 UTC 

[PATCH 1/3] habanalabs: implement dma-fence mechanism
 2020-07-14 12:07 UTC  (7+ messages)

[Buildroot] [git commit] package/x11r7/xfont_font-*: make outputs reproducible
 2020-07-14 12:07 UTC 

[PATCH] drm/amd/display: Fix compilation error on dcn3
 2020-07-14 12:06 UTC 

[PATCH v11 00/15] perf: support enable and disable commands in stat and record modes
 2020-07-14 12:05 UTC  (2+ messages)

Please revert "ath9k: Fix general protection fault in ath9k_hif_usb_rx_cb" from all stable kernels
 2020-07-14 12:05 UTC  (2+ messages)

[PATCH RFC v7 00/12] blk-mq/scsi: Provide hostwide shared tags for SCSI HBAs
 2020-07-14 12:04 UTC  (11+ messages)
` [PATCH RFC v7 12/12] hpsa: enable host_tagset and switch to MQ

[Fuego] [PATCH] Functional.fuego_release_test: Use the official Fuego repos
 2020-07-14 12:04 UTC 

[PATCH v7 00/15] switch to domheap for Xen page tables
 2020-07-14 12:03 UTC  (9+ messages)
` [PATCH v7 04/15] x86/mm: switch to new APIs in map_pages_to_xen
` [PATCH v7 05/15] x86/mm: switch to new APIs in modify_xen_mappings
` [PATCH v7 06/15] x86_64/mm: introduce pl2e in paging_init
` [PATCH v7 07/15] x86_64/mm: switch to new APIs "

[Buildroot] [PATCH 1/1] package/minizip: bump to version 2.10.0
 2020-07-14 12:04 UTC 

[dpdk-dev] Retrieving lcore worker thread id
 2020-07-14 12:03 UTC 

[PATCH 0/3] Rename some scsi host template functions
 2020-07-14 12:02 UTC  (5+ messages)
` [PATCH 3/3] scsi: Rename slave_configure to sdev_configure

[PATCH 00/32] Fix the final bunch of W=1 issues in USB
 2020-07-14 12:01 UTC  (6+ messages)
` [PATCH 08/32] usb: typec: tcpm: tcpm: Remove dangling unused 'struct tcpm_altmode_ops'

[PATCH platform-next v2 00/11] platform/x86: Add new features for Mellanox systems
 2020-07-14 12:02 UTC  (12+ messages)
` [PATCH platform-next v2 01/11] lib/string_helpers: Introduce string_upper() and string_lower() helpers
` [PATCH platform-next v2 02/11] lib/test-string_helpers.c: Add string_upper() and string_lower() tests
` [PATCH platform-next v2 03/11] platform/mellanox: mlxreg-hotplug: Modify module license
` [PATCH platform-next v2 04/11] platform/mellanox: mlxreg-hotplug: Use capability register for attribute creation
` [PATCH platform-next v2 05/11] platform/mellanox: mlxreg-hotplug: Add environmental data to uevent
` [PATCH platform-next v2 06/11] platform_data/mlxreg: Add support for complex attributes
` [PATCH platform-next v2 07/11] platform/x86: mlx-platform: Add more definitions for system attributes
` [PATCH platform-next v2 08/11] platform/mellanox: mlxreg-io: Add support for complex attributes
` [PATCH platform-next v2 09/11] Documentation/ABI: Add new attribute for mlxreg-io sysfs interfaces
` [PATCH platform-next v2 10/11] platform_data/mlxreg: Add presence register field for FAN devices
` [PATCH platform-next v2 11/11] platform/x86: mlx-platform: Extend FAN platform data description

[Fuego] [PATCH 1/2] fuego-host-scripts: Have docker executable and libltdl7 in container
 2020-07-14 12:02 UTC  (2+ messages)
` [Fuego] [PATCH 2/2] Dockerfile: Add missing dependencies for release test

[PATCH v3 0/9] Raspberry Pi 4 USB firmware initialization rework
 2020-07-14 11:59 UTC  (5+ messages)
` [PATCH v3 1/9] dt-bindings: reset: Add a binding for the RPi Firmware reset controller

[PATCH] KVM: x86: Don't attempt to load PDPTRs when 64-bit mode is enabled
 2020-07-14 12:00 UTC  (2+ messages)

Recent changes (master)
 2020-07-14 12:00 UTC 

[PATCH v2] iommu/exynos: Rename update_pte()
 2020-07-14 11:59 UTC 

[PATCH v3 0/7] arm64: Fix single-step handling and syscall tracing
 2020-07-14 11:57 UTC  (2+ messages)

[PATCH v2 0/1] f2fs: zns zone-capacity support
 2020-07-14 11:57 UTC  (4+ messages)
` [PATCH v2 1/1] f2fs: support zone capacity less than zone size
  ` [f2fs-dev] "

[dpdk-dev] [PATCH] net/bonding: fix error code when creating bonded device
 2020-07-14 11:58 UTC  (2+ messages)

[dpdk-dev] [PATCH] net/dpaa: announce extended definition of port_id in API 'rte_pmd_dpaa_set_tx_loopback'
 2020-07-14 11:57 UTC  (3+ messages)

[PATCH v2 0/9] hw/sd/sdcard: Fix CVE-2020-13253
 2020-07-14 11:55 UTC  (4+ messages)
` [PATCH v2 4/9] tests/acceptance/boot_linux: Expand SD card image to power of 2

[PATCH v6 0/2] s390: virtio: let arch validate VIRTIO features
 2020-07-14 11:55 UTC  (5+ messages)
` [PATCH v6 2/2] s390: virtio: PV needs VIRTIO I/O device protection

[PATCH 0/3] readfile(2): a new syscall to make open/read/close faster
 2020-07-14 11:55 UTC  (6+ messages)

[PATCH 1/3] dt-bindings: ARM: imx: add kamstrup flex concentrator to schema
 2020-07-14 11:54 UTC  (6+ messages)
` [PATCH 2/3] ARM: dts: imx7: add support for kamstrup flex concentrator

[PATCH 1/2] mm: pgtable: Make generic pgprot_* macros available for no-MMU
 2020-07-14 11:53 UTC  (3+ messages)

[PATCH v4 00/16] Allwinner A100 Initial support
 2020-07-14 11:54 UTC  (3+ messages)
` [PATCH v4 10/16] mfd: axp20x: Allow the AXP803 to be probed by I2C

[PATCH v1 0/4] Agilex's clock driver updates and fixes
 2020-07-14 11:53 UTC  (4+ messages)
` [PATCH v1 3/4] clk: agilex: Handle clock configuration differently in SPL and U-Boot proper

[PATCH 0/1] MAINTAINERS: add security quotient field
 2020-07-14 11:51 UTC  (3+ messages)
` [PATCH 1/1] MAINTAINERS: introduce cve or "

[PATCH] USB: Remove pci-dma-compat wrapper APIs
 2020-07-14 11:53 UTC  (2+ messages)

[gpio:gpio-descriptors-spi] BUILD SUCCESS 2e15ee1098f8358a9e45bcbd441e888b04af99ce
 2020-07-14 11:52 UTC 

[PATCH RFC] kprobes: Remove MODULES dependency
 2020-07-14 11:52 UTC  (6+ messages)

[Intel-wired-lan] [bug ?] i40e_rx_buffer_flip should not be called for redirected xsk copy mode
 2020-07-14 11:05 UTC  (3+ messages)
  ` 答复: "

[kvm-unit-tests PATCH v12 0/9] s390x: Testing the Channel Subsystem I/O
 2020-07-14 11:51 UTC  (4+ messages)
` [kvm-unit-tests PATCH v12 9/9] s390x: css: ssch/tsch with sense and interrupt

[PATCH v2 0/7] x86: compat header generation and checking adjustments
 2020-07-14 11:47 UTC  (4+ messages)
` [PATCH v2 3/7] x86/mce: bring hypercall subop compat checking in sync again

[dpdk-dev] [PATCH v2] net/pcap: support snaplen option to truncate packet
 2020-07-14 11:46 UTC  (3+ messages)
` [dpdk-dev] [PATCH v4] "

[Intel-gfx] [PATCH 01/23] Revert "drm/i915/gem: Async GPU relocations only"
 2020-07-14 11:45 UTC  (12+ messages)
` [Intel-gfx] [PATCH 08/23] drm/i915: Use per object locking in execbuf, v12
` [Intel-gfx] [PATCH 12/23] drm/i915: Pin engine before pinning all objects, v5
` [Intel-gfx] [PATCH 14/23] drm/i915: Make sure execbuffer always passes ww state to i915_vma_pin
` [Intel-gfx] [PATCH 15/23] drm/i915: Convert i915_gem_object/client_blt.c to use ww locking as well, v2
` [Intel-gfx] [PATCH 16/23] drm/i915: Kill last user of intel_context_create_request outside of selftests
` [Intel-gfx] [PATCH 17/23] drm/i915: Convert i915_perf to ww locking as well
` [Intel-gfx] [PATCH 18/23] drm/i915: Dirty hack to fix selftests locking inversion
` [Intel-gfx] [PATCH 19/23] drm/i915/selftests: Fix locking inversion in lrc selftest
` [Intel-gfx] [PATCH 20/23] drm/i915: Use ww pinning for intel_context_create_request()
` [Intel-gfx] [PATCH 21/23] drm/i915: Move i915_vma_lock in the selftests to avoid lock inversion, v2
` [Intel-gfx] [PATCH 23/23] drm/i915: Add ww locking to pin_to_display_plane

[PATCH] Documentation: use includes in more ndctl command pages
 2020-07-14 11:45 UTC 

[PATCH 1/4] drm/amd/powerplay: add SMU mode1 reset
 2020-07-14 11:45 UTC  (5+ messages)
` [PATCH 4/4] drm/amdgpu: add module parameter choose reset mode


This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.