All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2023-07-25 21:44:18 to 2023-07-25 22:21:29 UTC [more...]

[PATCH v15 000/115] KVM TDX basic feature support
 2023-07-25 22:14 UTC  (63+ messages)
` [PATCH v15 001/115] KVM: VMX: Move out vmx_x86_ops to 'main.c' to wrap VMX and TDX
` [PATCH v15 002/115] KVM: x86/vmx: initialize loaded_vmcss_on_cpu in vmx_hardware_setup()
` [PATCH v15 003/115] KVM: x86/vmx: Refactor KVM VMX module init/exit functions
` [PATCH v15 004/115] KVM: VMX: Reorder vmx initialization with kvm vendor initialization
` [PATCH v15 005/115] KVM: TDX: Initialize the TDX module when loading the KVM intel kernel module
` [PATCH v15 006/115] KVM: TDX: Add placeholders for TDX VM/vcpu structure
` [PATCH v15 007/115] KVM: TDX: Make TDX VM type supported
` [PATCH v15 008/115] [MARKER] The start of TDX KVM patch series: TDX architectural definitions
` [PATCH v15 009/115] KVM: TDX: Define "
` [PATCH v15 010/115] KVM: TDX: Add TDX "architectural" error codes
` [PATCH v15 011/115] KVM: TDX: Add C wrapper functions for SEAMCALLs to the TDX module
` [PATCH v15 012/115] KVM: TDX: Retry SEAMCALL on the lack of entropy error
` [PATCH v15 013/115] KVM: TDX: Add helper functions to print TDX SEAMCALL error
` [PATCH v15 014/115] [MARKER] The start of TDX KVM patch series: TD VM creation/destruction
` [PATCH v15 015/115] x86/cpu: Add helper functions to allocate/free TDX private host key id
` [PATCH v15 016/115] x86/virt/tdx: Add a helper function to return system wide info about TDX module
` [PATCH v15 017/115] KVM: TDX: Add place holder for TDX VM specific mem_enc_op ioctl
` [PATCH v15 018/115] KVM: TDX: x86: Add ioctl to get TDX systemwide parameters
` [PATCH v15 019/115] KVM: x86, tdx: Make KVM_CAP_MAX_VCPUS backend specific
` [PATCH v15 020/115] KVM: TDX: create/destroy VM structure
` [PATCH v15 021/115] KVM: TDX: initialize VM with TDX specific parameters
` [PATCH v15 022/115] KVM: TDX: Make pmu_intel.c ignore guest TD case
` [PATCH v15 023/115] KVM: TDX: Refuse to unplug the last cpu on the package
` [PATCH v15 024/115] [MARKER] The start of TDX KVM patch series: TD vcpu creation/destruction
` [PATCH v15 025/115] KVM: TDX: allocate/free TDX vcpu structure
` [PATCH v15 026/115] KVM: TDX: Do TDX specific vcpu initialization
` [PATCH v15 027/115] [MARKER] The start of TDX KVM patch series: KVM MMU GPA shared bits
` [PATCH v15 028/115] KVM: x86/mmu: introduce config for PRIVATE KVM MMU
` [PATCH v15 029/115] KVM: x86/mmu: Add address conversion functions for TDX shared bit of GPA
` [PATCH v15 030/115] [MARKER] The start of TDX KVM patch series: KVM TDP refactoring for TDX
` [PATCH v15 031/115] KVM: Allow page-sized MMU caches to be initialized with custom 64-bit values
` [PATCH v15 032/115] KVM: x86/mmu: Replace hardcoded value 0 for the initial value for SPTE
` [PATCH v15 033/115] KVM: x86/mmu: Allow non-zero value for non-present SPTE and removed SPTE
` [PATCH v15 034/115] KVM: x86/mmu: Add Suppress VE bit to shadow_mmio_mask/shadow_present_mask
` [PATCH v15 035/115] KVM: x86/mmu: Track shadow MMIO value on a per-VM basis
` [PATCH v15 036/115] KVM: x86/mmu: Disallow fast page fault on private GPA
` [PATCH v15 037/115] KVM: x86/mmu: Allow per-VM override of the TDP max page level
` [PATCH v15 038/115] KVM: VMX: Introduce test mode related to EPT violation VE
` [PATCH v15 039/115] [MARKER] The start of TDX KVM patch series: KVM TDP MMU hooks
` [PATCH v15 040/115] KVM: x86/mmu: Assume guest MMIOs are shared
` [PATCH v15 041/115] KVM: x86/tdp_mmu: Init role member of struct kvm_mmu_page at allocation
` [PATCH v15 042/115] KVM: x86/mmu: Add a new is_private member for union kvm_mmu_page_role
` [PATCH v15 043/115] KVM: x86/mmu: Add a private pointer to struct kvm_mmu_page
` [PATCH v15 044/115] KVM: x86/tdp_mmu: Don't zap private pages for unsupported cases
` [PATCH v15 045/115] KVM: x86/tdp_mmu: Sprinkle __must_check
` [PATCH v15 046/115] KVM: x86/tdp_mmu: Support TDX private mapping for TDP MMU
` [PATCH v15 047/115] [MARKER] The start of TDX KVM patch series: TDX EPT violation
` [PATCH v15 048/115] KVM: x86/mmu: TDX: Do not enable page track for TD guest
` [PATCH v15 058/115] KVM: x86/mmu: Introduce kvm_mmu_map_tdp_page() for use by TDX
` [PATCH v15 059/115] KVM: TDX: Create initial guest memory
` [PATCH v15 060/115] KVM: TDX: Finalize VM initialization
` [PATCH v15 061/115] [MARKER] The start of TDX KVM patch series: TD vcpu enter/exit
` [PATCH v15 062/115] KVM: TDX: Add helper assembly function to TDX vcpu
` [PATCH v15 063/115] KVM: TDX: Implement TDX vcpu enter/exit path
` [PATCH v15 064/115] KVM: TDX: vcpu_run: save/restore host state(host kernel gs)
` [PATCH v15 065/115] KVM: TDX: restore host xsave state when exit from the guest TD
` [PATCH v15 066/115] KVM: x86: Allow to update cached values in kvm_user_return_msrs w/o wrmsr
` [PATCH v15 067/115] KVM: TDX: restore user ret MSRs
` [PATCH v15 068/115] KVM: TDX: Add TSX_CTRL msr into uret_msrs list
` [PATCH v15 069/115] [MARKER] The start of TDX KVM patch series: TD vcpu exits/interrupts/hypercalls
` [PATCH v15 070/115] KVM: TDX: complete interrupts after tdexit
` [PATCH v15 071/115] KVM: TDX: restore debug store when TD exit

[Intel-xe] [PATCH 1/5] drm/xe: Only set PCI d3cold_allowed when we are really allowing
 2023-07-25 22:21 UTC  (11+ messages)
` [Intel-xe] [PATCH 2/5] drm/xe: Move d3cold_allowed decision all together
` [Intel-xe] [PATCH 3/5] drm/xe: Fix the runtime_idle call and d3cold.allowed decision
` [Intel-xe] [PATCH 4/5] drm/xe: Only init runtime PM after all d3cold config is in place
` [Intel-xe] [PATCH 5/5] drm/xe: Ensure memory eviction on s2idle
` [Intel-xe] ✓ CI.Patch_applied: success for series starting with [1/5] drm/xe: Only set PCI d3cold_allowed when we are really allowing
` [Intel-xe] ✓ CI.checkpatch: "
` [Intel-xe] ✓ CI.KUnit: "
` [Intel-xe] ✓ CI.Build: "
` [Intel-xe] ✓ CI.Hooks: "
` [Intel-xe] ✓ CI.checksparse: "

[Enable Designware XGMAC VLAN Stripping Feature 1/2] dt-bindings: net: snps,dwmac: Add description for rx-vlan-offload
 2023-07-25 22:15 UTC  (4+ messages)
` [PATCH] scripts: checkpatch: steer people away from using file paths

MSI MAG X570S TOMAHAWK MAX WIFI - microphone + front audio panel not working - attempt 2
 2023-07-25 22:16 UTC 

[PATCH] riscv: Handle zicsr/zifencei issue between gcc and binutils
 2023-07-25 22:17 UTC  (5+ messages)

MSI MAG X570S TOMAHAWK MAX WIFI - microphone + front audio panel not working - attempt 2
 2023-07-25 22:16 UTC 

[PATCH 0/6] board: ti: Add support for BeaglePlay
 2023-07-25 22:16 UTC  (10+ messages)
` [PATCH 3/6] board: ti: am62x: Add basic initialization for usb voltage, 32k crystal, debounce
` [PATCH 6/6] doc: board: ti: Add beagleplay documentation

[PATCH V11 0/5] Generate device tree node for pci devices
 2023-07-25 22:15 UTC  (6+ messages)
` [PATCH V11 1/5] of: dynamic: Add interfaces for creating device node dynamically
` [PATCH V11 2/5] PCI: Create device tree node for bridge
` [PATCH V11 3/5] PCI: Add quirks to generate device tree node for Xilinx Alveo U50
` [PATCH V11 4/5] of: overlay: Extend of_overlay_fdt_apply() to specify the target node
` [PATCH V11 5/5] of: unittest: Add pci_dt_testdrv pci driver

[PATCH] i2c: mvtwsi: reset controller if stuck in "bus error" state
 2023-07-25 22:13 UTC 

Register encoding in assembly for load/store instructions
 2023-07-25 22:10 UTC  (6+ messages)

[PATCH] ASoC: intel: avs: refactor strncpy usage in topology
 2023-07-25 22:08 UTC 

[PATCH v2 1/6] net: split IP_TCP header into separate IP/IP6 and TCP headers
 2023-07-25 22:08 UTC  (13+ messages)
` [PATCH v2 2/6] net: prepare existing TCP stack to be reused by IP6
` [PATCH v2 3/6] net: introduce TCP/IP6 support
` [PATCH v2 4/6] net: add fastboot TCP6 support
` [PATCH v2 5/6] net: add fastboot TCP documentation and IP6-only mode

[Intel-gfx] [PATCH] drm/i915: Avoid GGTT flushing on non-GGTT paths of i915_vma_pin_iomap
 2023-07-25 22:07 UTC  (2+ messages)
` [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Avoid GGTT flushing on non-GGTT paths of i915_vma_pin_iomap (rev3)

[Intel-xe] [PATCH 0/4] Fix stolen setup for MTL+
 2023-07-25 22:04 UTC  (4+ messages)
` [Intel-xe] [PATCH 2/4] drm/xe: Carve out top of DSM as reserved
` [Intel-xe] ○ CI.BAT: info for Fix stolen setup for MTL+

[PATCH v4 00/28] TDX KVM selftests
 2023-07-25 22:01 UTC  (29+ messages)
` [PATCH v4 01/28] KVM: selftests: Add function to allow one-to-one GVA to GPA mappings
` [PATCH v4 02/28] KVM: selftests: Expose function that sets up sregs based on VM's mode
` [PATCH v4 03/28] KVM: selftests: Store initial stack address in struct kvm_vcpu
` [PATCH v4 04/28] KVM: selftests: Refactor steps in vCPU descriptor table initialization
` [PATCH v4 05/28] KVM: selftests: Add helper functions to create TDX VMs
` [PATCH v4 06/28] KVM: selftests: TDX: Use KVM_TDX_CAPABILITIES to validate TDs' attribute configuration
` [PATCH v4 07/28] KVM: selftests: TDX: Update load_td_memory_region for VM memory backed by guest memfd
` [PATCH v4 08/28] KVM: selftests: TDX: Add TDX lifecycle test
` [PATCH v4 09/28] KVM: selftests: TDX: Add report_fatal_error test
` [PATCH v4 10/28] KVM: selftests: TDX: Adding test case for TDX port IO
` [PATCH v4 11/28] KVM: selftests: TDX: Add basic TDX CPUID test
` [PATCH v4 12/28] KVM: selftests: TDX: Add basic get_td_vmcall_info test
` [PATCH v4 13/28] KVM: selftests: TDX: Add TDX IO writes test
` [PATCH v4 14/28] KVM: selftests: TDX: Add TDX IO reads test
` [PATCH v4 15/28] KVM: selftests: TDX: Add TDX MSR read/write tests
` [PATCH v4 16/28] KVM: selftests: TDX: Add TDX HLT exit test
` [PATCH v4 17/28] KVM: selftests: TDX: Add TDX MMIO reads test
` [PATCH v4 18/28] KVM: selftests: TDX: Add TDX MMIO writes test
` [PATCH v4 19/28] KVM: selftests: TDX: Add TDX CPUID TDVMCALL test
` [PATCH v4 20/28] KVM: selftests: TDX: Verify the behavior when host consumes a TD private memory
` [PATCH v4 21/28] KVM: selftests: TDX: Add TDG.VP.INFO test
` [PATCH v4 22/28] KVM: selftests: Add functions to allow mapping as shared
` [PATCH v4 23/28] KVM: selftests: TDX: Add shared memory test
` [PATCH v4 24/28] KVM: selftests: Expose _vm_vaddr_alloc
` [PATCH v4 25/28] KVM: selftests: TDX: Add support for TDG.MEM.PAGE.ACCEPT
` [PATCH v4 26/28] KVM: selftests: TDX: Add support for TDG.VP.VEINFO.GET
` [PATCH v4 27/28] KVM: selftests: TDX: Add TDX UPM selftest
` [PATCH v4 28/28] KVM: selftests: TDX: Add TDX UPM selftests for implicit conversion

BUG: unable to handle page fault for address: c4cd77c8, #PF: supervisor read access in kernel mode, #PF: error_code(0x0000) - not-present page with CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT=y (v6.4.x, Thinkpad T60)
 2023-07-25 22:03 UTC 

[igt-dev] [PATCH i-g-t 1/2] xe: Align uapi after removal of XE_QUERY_CONFIG_FLAGS_USE_GUC
 2023-07-25 22:03 UTC  (3+ messages)
` [Intel-xe] ✗ CI.Patch_applied: failure for series starting with [i-g-t,1/2] "
` [igt-dev] ✗ Fi.CI.BAT: "

renesas/master baseline: 50 runs, 6 regressions (renesas-devel-2023-07-25-v6.5-rc3)
 2023-07-25 22:02 UTC 

[PATCH net 0/3] net/sched Bind logic fixes for cls_fw, cls_u32 and cls_route
 2023-07-25 22:03 UTC  (6+ messages)

[PATCH v7 09/13] coresight-tpdm: Add nodes for dsb edge control
 2023-07-25 22:00 UTC  (2+ messages)

[Buildroot] [PATCH v2 0/5] Add FREESCALE_IMX_PLATFORM_IMX8DXL
 2023-07-25 22:01 UTC  (3+ messages)
` [Buildroot] [PATCH v2 1/5] package/freescale-imx/firmware-imx: bump version to 8.20

[PATCH] orangefs: replace strncpy with strscpy
 2023-07-25 22:01 UTC  (2+ messages)

[PATCH] mm: memcg: use rstat for non-hierarchical stats
 2023-07-25 22:00 UTC  (6+ messages)

[PATCH 0/5] hp-bioscfg: Address memory leaks and uninitialized variable errors
 2023-07-25 22:00 UTC  (6+ messages)
` [PATCH 1/5] hp-bioscfg: Fix memory leaks in string_elements_from_package()
` [PATCH 2/5] hp-bioscfg: Fix memory leaks in ordered_list_elements_from_package
` [PATCH 3/5] hp-bioscfg: Fix memory leaks in integer_elements_from_package
` [PATCH 4/5] hp-bioscfg: Fix memory leaks in enumeration_elements_from_package()
` [PATCH 5/5] hp-bioscfg: Fix memory leaks in password_elements_from_package()

MSI MAG X570S TOMAHAWK MAX WIFI - microphone + front audio panel not working - attempt 2
 2023-07-25 21:59 UTC 

MSI MAG X570S TOMAHAWK MAX WIFI - microphone + front audio panel not working - attempt 2
 2023-07-25 21:58 UTC 

[PATCH] x86/traps: Fix load_unaligned_zeropad() handling for shared TDX memory
 2023-07-25 21:57 UTC  (2+ messages)

[PATCH v3 1/6] net: split IP_TCP header into separate IP/IP6 and TCP headers
 2023-07-25 21:56 UTC  (6+ messages)
` [PATCH v3 2/6] net: prepare existing TCP stack to be reused by IP6
` [PATCH v3 3/6] net: introduce TCP/IP6 support
` [PATCH v3 4/6] net: add fastboot TCP6 support
` [PATCH v3 5/6] net: add fastboot TCP documentation and IP6-only mode
` [PATCH v3 6/6] net: update net_ip6 from link_local address when eth device is changed

[PATCH net-next v2 0/2] selftests/ptp: Add support for new timestamp IOCTLs
 2023-07-25 21:53 UTC  (3+ messages)
` [PATCH net-next v2 1/2] selftests/ptp: Add -x option for testing PTP_SYS_OFFSET_EXTENDED
` [PATCH net-next v2 2/2] selftests/ptp: Add -X option for testing PTP_SYS_OFFSET_PRECISE

[geert-renesas-devel:next] BUILD SUCCESS f589646c2e1db46614b0bafb41d36cf77921c2bb
 2023-07-25 21:55 UTC 

[geert-renesas-devel:master] BUILD SUCCESS c942fe31c99b1322f58c89a671f5a780c36e80ee
 2023-07-25 21:55 UTC 

[PATCH v3 1/1] docs: highlight that .gitmodules does not support !command
 2023-07-25 21:56 UTC  (3+ messages)
` [PATCH v5] doc: "

[PATCH] tipc: stop tipc crypto on failure in tipc_node_create
 2023-07-25 21:55 UTC  (3+ messages)
` [PATCH v2] "

[geert-renesas-devel:renesas-arm-soc-for-v6.6] BUILD SUCCESS bfb345a7bdc186ebbf2b9c53215f0f7b9bdba9fd
 2023-07-25 21:55 UTC 

[geert-renesas-devel:renesas-dts-for-v6.6] BUILD SUCCESS bf8abcd7e7a804b825b11828d13c057e8678899a
 2023-07-25 21:55 UTC 

[geert-renesas-devel:fixes] BUILD SUCCESS 4c188fa183ebb45238ef16504c4c7606955cf9d4
 2023-07-25 21:55 UTC 

[RFC PATCH 0/3] report task state in symbolic chars in sched tracepoints
 2023-07-25 21:55 UTC  (5+ messages)
` [RFC PATCH 1/3] sched, tracing: report task state in symbolic chars instead

[Patch V2 v2] drm/amdgpu: Checkpoint and Restore VRAM BOs without VA
 2023-07-25 21:54 UTC  (2+ messages)

[PATCH] scsi: ufs: qcom: remove unused variable
 2023-07-25 21:53 UTC  (2+ messages)

[PATCH] cgroup: minor cleanup for cgroup_local_stat_show()
 2023-07-25 21:53 UTC  (3+ messages)

[PATCH 5.15 00/78] 5.15.123-rc1 review
 2023-07-25 21:52 UTC  (2+ messages)

[PATCH v2 6/7] workqueue: Report work funcs that trigger automatic CPU_INTENSIVE mechanism
 2023-07-25 21:52 UTC  (13+ messages)
` Consider switching to WQ_UNBOUND messages (was: Re: [PATCH v2 6/7] workqueue: Report work funcs that trigger automatic CPU_INTENSIVE mechanism)
                  ` [PATCH wq/for-6.5-fixes] workqueue: Drop the special locking rule for worker->flags and worker_pool->flags

[PATCH V1] arm64: dts: qcom: sa8775p-ride: Remove min and max voltages for L8A
 2023-07-25 21:50 UTC  (2+ messages)

[Intel-wired-lan] [PATCH iwl-net] ice: avoid executing commands on other ports when driving sync
 2023-07-25 21:50 UTC  (3+ messages)

[Intel-wired-lan] [PATCH iwl-next v2 0/3] ice: implement cross timestamping for E823
 2023-07-25 21:50 UTC  (4+ messages)
` [Intel-wired-lan] [PATCH iwl-next v2 1/3] ice: prefix clock timer command enumeration values with ICE_PTP
` [Intel-wired-lan] [PATCH iwl-next v2 2/3] ice: retry acquiring hardware semaphore during cross-timestamp request
` [Intel-wired-lan] [PATCH iwl-next v2 3/3] ice: Support cross-timestamping for E823 devices

[PATCH 4/6] PCI/VGA: Move the new_state assignment out the loop
 2023-07-25 21:51 UTC  (3+ messages)

What's cooking in git.git (Jul 2023, #05; Tue, 25)
 2023-07-25 21:50 UTC  (2+ messages)

[PATCH][next] selftests/xsk: Fix spelling mistake "querrying" -> "querying"
 2023-07-25 21:50 UTC  (2+ messages)

[PATCH 2/6] PCI/VGA: Deal with PCI VGA compatible devices only
 2023-07-25 21:49 UTC  (3+ messages)

[PATCH] btrfs: remove unused pages_processed variable
 2023-07-25 21:49 UTC  (2+ messages)

[PATCH -next v8 0/2] support allocating crashkernel above 4G explicitly on riscv
 2023-07-25 21:48 UTC  (3+ messages)

btrfs NOCOW fix and cleanups
 2023-07-25 21:42 UTC  (5+ messages)

[PATCH v1 0/9] i2c: designware: code consolidation & cleanups
 2023-07-25 21:48 UTC  (7+ messages)
` [PATCH v1 1/9] i2c: designware: Move has_acpi_companion() to common code
` [PATCH v1 2/9] i2c: designware: Change i2c_dw_acpi_configure() prototype
` [PATCH v1 3/9] i2c: designware: Align dw_i2c_of_configure() with i2c_dw_acpi_configure()

[PATCH] btf: Remove unnecessary header file inclusions
 2023-07-25 21:40 UTC  (2+ messages)

[iproute2] bridge: link: allow filtering on bridge name
 2023-07-25 21:48 UTC  (3+ messages)

[PATCH v4 0/2] Add new "describe" atom
 2023-07-25 21:46 UTC  (3+ messages)
` [PATCH v5 "

[syzbot] [usb?] KASAN: slab-out-of-bounds Read in read_descriptors (3)
 2023-07-25 21:46 UTC  (6+ messages)

[PATCH rc 0/3] Several iommufd bug fixes
 2023-07-25 21:45 UTC  (3+ messages)
` [PATCH rc 1/3] iommufd/selftest: Do not try to destroy an access once it is attached

[RFC v5 00/17] DRM cgroup controller with scheduling control and memory stats
 2023-07-25 21:44 UTC  (8+ messages)
` [PATCH 15/17] cgroup/drm: Expose GPU utilisation
          ` [Intel-gfx] "


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.