All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2022-10-30 01:49:46 to 2022-10-30 06:29:44 UTC [more...]

[PATCH v10 000/108] KVM TDX basic feature support
 2022-10-30  6:23 UTC  (75+ messages)
` [PATCH v10 001/108] KVM: VMX: Move out vmx_x86_ops to 'main.c' to wrap VMX and TDX
` [PATCH v10 002/108] KVM: x86: Refactor KVM VMX module init/exit functions
` [PATCH v10 003/108] KVM: TDX: Add placeholders for TDX VM/vcpu structure
` [PATCH v10 004/108] x86/virt/tdx: Add a helper function to return system wide info about TDX module
` [PATCH v10 005/108] KVM: TDX: Initialize the TDX module when loading the KVM intel kernel module
` [PATCH v10 006/108] KVM: x86: Introduce vm_type to differentiate default VMs from confidential VMs
` [PATCH v10 007/108] KVM: TDX: Make TDX VM type supported
` [PATCH v10 008/108] [MARKER] The start of TDX KVM patch series: TDX architectural definitions
` [PATCH v10 009/108] KVM: TDX: Define "
` [PATCH v10 010/108] KVM: TDX: Add TDX "architectural" error codes
` [PATCH v10 011/108] KVM: TDX: Add C wrapper functions for SEAMCALLs to the TDX module
` [PATCH v10 012/108] KVM: TDX: Add helper functions to print TDX SEAMCALL error
` [PATCH v10 013/108] [MARKER] The start of TDX KVM patch series: TD VM creation/destruction
` [PATCH v10 014/108] KVM: TDX: Stub in tdx.h with structs, accessors, and VMCS helpers
` [PATCH v10 015/108] x86/cpu: Add helper functions to allocate/free TDX private host key id
` [PATCH v10 016/108] KVM: TDX: create/destroy VM structure
` [PATCH v10 017/108] KVM: TDX: Refuse to unplug the last cpu on the package
` [PATCH v10 018/108] KVM: TDX: x86: Add ioctl to get TDX systemwide parameters
` [PATCH v10 019/108] KVM: TDX: Add place holder for TDX VM specific mem_enc_op ioctl
` [PATCH v10 020/108] KVM: Support KVM_CAP_MAX_VCPUS for KVM_ENABLE_CAP
` [PATCH v10 021/108] KVM: TDX: initialize VM with TDX specific parameters
` [PATCH v10 022/108] KVM: TDX: Make pmu_intel.c ignore guest TD case
` [PATCH v10 023/108] [MARKER] The start of TDX KVM patch series: TD vcpu creation/destruction
` [PATCH v10 024/108] KVM: TDX: allocate/free TDX vcpu structure
` [PATCH v10 025/108] KVM: TDX: Do TDX specific vcpu initialization
` [PATCH v10 026/108] KVM: TDX: Use private memory for TDX
` [PATCH v10 027/108] [MARKER] The start of TDX KVM patch series: KVM MMU GPA shared bits
` [PATCH v10 028/108] KVM: x86/mmu: introduce config for PRIVATE KVM MMU
` [PATCH v10 029/108] KVM: x86/mmu: Add address conversion functions for TDX shared bit of GPA
` [PATCH v10 030/108] [MARKER] The start of TDX KVM patch series: KVM TDP refactoring for TDX
` [PATCH v10 031/108] KVM: x86/mmu: Replace hardcoded value 0 for the initial value for SPTE
` [PATCH v10 032/108] KVM: x86/mmu: Make sync_page not use hard-coded 0 as the initial SPTE value
` [PATCH v10 033/108] KVM: x86/mmu: Allow non-zero value for non-present SPTE and removed SPTE
` [PATCH v10 034/108] KVM: x86/mmu: Add Suppress VE bit to shadow_mmio_{value, mask}
` [PATCH v10 035/108] KVM: x86/mmu: Track shadow MMIO value on a per-VM basis
` [PATCH v10 036/108] KVM: TDX: Enable mmio spte caching always for TDX
` [PATCH v10 037/108] KVM: x86/mmu: Disallow fast page fault on private GPA
` [PATCH v10 038/108] KVM: x86/mmu: Allow per-VM override of the TDP max page level
` [PATCH v10 039/108] KVM: VMX: Introduce test mode related to EPT violation VE
` [PATCH v10 040/108] [MARKER] The start of TDX KVM patch series: KVM TDP MMU hooks
` [PATCH v10 041/108] KVM: x86/tdp_mmu: refactor kvm_tdp_mmu_map()
` [PATCH v10 042/108] KVM: x86/tdp_mmu: Init role member of struct kvm_mmu_page at allocation
` [PATCH v10 043/108] KVM: x86/mmu: Require TDP MMU for TDX
` [PATCH v10 044/108] KVM: x86/mmu: Add a new is_private member for union kvm_mmu_page_role
` [PATCH v10 045/108] KVM: x86/mmu: Add a private pointer to struct kvm_mmu_page
` [PATCH v10 046/108] KVM: Add flags to struct kvm_gfn_range
` [PATCH v10 047/108] KVM: x86/tdp_mmu: Don't zap private pages for unsupported cases
` [PATCH v10 048/108] KVM: x86/tdp_mmu: Make handle_changed_spte() return value
` [PATCH v10 049/108] KVM: x86/tdp_mmu: Support TDX private mapping for TDP MMU
` [PATCH v10 050/108] [MARKER] The start of TDX KVM patch series: TDX EPT violation
` [PATCH v10 051/108] KVM: x86/mmu: Disallow dirty logging for x86 TDX
` [PATCH v10 052/108] KVM: x86/tdp_mmu: Ignore unsupported mmu operation on private GFNs
` [PATCH v10 053/108] KVM: VMX: Split out guts of EPT violation to common/exposed function
` [PATCH v10 054/108] KVM: VMX: Move setting of EPT MMU masks to common VT-x code
` [PATCH v10 055/108] KVM: TDX: Add load_mmu_pgd method for TDX
` [PATCH v10 056/108] KVM: TDX: don't request KVM_REQ_APIC_PAGE_RELOAD
` [PATCH v10 057/108] KVM: x86/VMX: introduce vmx tlb_remote_flush and tlb_remote_flush_with_range
` [PATCH v10 058/108] KVM: TDX: TDP MMU TDX support
` [PATCH v10 059/108] [MARKER] The start of TDX KVM patch series: KVM TDP MMU MapGPA
` [PATCH v10 060/108] KVM: Add functions to set GFN to private or shared
` [PATCH v10 061/108] KVM: x86/mmu: Introduce kvm_mmu_map_tdp_page() for use by TDX
` [PATCH v10 062/108] KVM: x86/tdp_mmu: implement MapGPA hypercall for TDX
` [PATCH v10 063/108] [MARKER] The start of TDX KVM patch series: TD finalization
` [PATCH v10 064/108] KVM: TDX: Create initial guest memory
` [PATCH v10 065/108] KVM: TDX: Finalize VM initialization
` [PATCH v10 066/108] [MARKER] The start of TDX KVM patch series: TD vcpu enter/exit
` [PATCH v10 067/108] KVM: TDX: Add helper assembly function to TDX vcpu
` [PATCH v10 068/108] KVM: TDX: Implement TDX vcpu enter/exit path
` [PATCH v10 069/108] KVM: TDX: vcpu_run: save/restore host state(host kernel gs)
` [PATCH v10 070/108] KVM: TDX: restore host xsave state when exit from the guest TD
` [PATCH v10 100/108] KVM: TDX: Handle TDX PV report fatal error hypercall
` [PATCH v10 101/108] KVM: TDX: Handle TDX PV map_gpa hypercall
` [PATCH v10 102/108] KVM: TDX: Handle TDG.VP.VMCALL<GetTdVmCallInfo> hypercall
` [PATCH v10 103/108] KVM: TDX: Silently discard SMI request

[PATCH] samples/landlock: Document best-effort approach for LANDLOCK_ACCESS_FS_REFER
 2022-10-30  6:11 UTC 

[RFC PATCH v1 0/1] Support to use own workqueue for each LED
 2022-10-30  6:07 UTC  (2+ messages)
` [RFC PATCH v1 1/1] leds: support "

[PATCH 00/15] Introduce Architectural LBR for vPMU
 2022-10-30  6:06 UTC  (5+ messages)

[PATCH] reset: ti-sci: honor TI_SCI_PROTOCOL setting when not COMPILE_TEST
 2022-10-30  5:56 UTC  (2+ messages)

[PATCH v6 0/2] vhost-vdpa: add support for vIOMMU
 2022-10-30  6:01 UTC  (3+ messages)
` [PATCH v6 1/2] vfio: move function vfio_get_xlat_addr() to memory.c
` [PATCH v6 2/2] vhost-vdpa: add support for vIOMMU

[peterz-queue:x86/core 5/9] vmlinux.o: warning: objtool: __pfx_entry_ibpb() is missing an ELF size annotation
 2022-10-30  5:54 UTC 

include/linux/container_of.h:18:15: warning: use of uninitialized value '((struct cgrp_cset_link *)((char *)__mptr + 8))[178956970].cset_link.next' [CWE-457]
 2022-10-30  5:54 UTC 

[intel-tdx:kvm-upstream-workaround 85/358] usr/include/asm/kvm.h:606:22: warning: field 'cpuid' with variable sized type 'struct kvm_cpuid2' not at the end of a struct or class is a GNU extension
 2022-10-30  5:44 UTC 

[syzbot] memory leak in regulatory_hint_core
 2022-10-30  5:41 UTC  (2+ messages)

[PATCH] OPP: decouple dt properties in opp_parse_supplies()
 2022-10-30  5:34 UTC  (3+ messages)

[jic23-iio:testing 46/100] drivers/iio/industrialio-core.c:2102:2-8: preceding lock on line 2099
 2022-10-30  5:34 UTC 

[TCWG CI] Failure after v6.1-rc1-147-g74fe0c4dcb41: ASoC: SOF: ops: add readb/writeb helpers
 2022-10-30  5:32 UTC 

[RESEND PATCH v2 0/3] queue freezing improvement and cleanups
 2022-10-30  5:26 UTC  (4+ messages)
` [RESEND PATCH v2 1/3] blk-mq: remove redundant call to blk_freeze_queue_start in blk_mq_destroy_queue
` [RESEND PATCH v2 2/3] blk-mq: remove blk_freeze_queue
` [RESEND PATCH v2 3/3] block: hide back blk_freeze_queue_start and export its blk-mq alias

[PATCH v5 0/2] vhost-vdpa: add support for vIOMMU
 2022-10-30  5:21 UTC  (5+ messages)
` [PATCH v5 1/2] vfio: move function vfio_get_xlat_addr() to memory.c
` [PATCH v5 2/2] vhost-vdpa: add support for vIOMMU

[PATCH] ui/cocoa: Support hardware cursor interface
 2022-10-30  5:20 UTC  (4+ messages)

[PATCH v3] block: simplify blksize_bits() implementation
 2022-10-30  5:20 UTC 

[PATCH v2 0/2] Fix the virtio features negotiation flaw
 2022-10-30  5:14 UTC  (4+ messages)
` [PATCH v2 1/2] vhost-user: Refactor vhost acked features saving

[ammarfaizi2-block:akpm/mm/mm-unstable 46/244] lib/test_maple_tree.c:453:12: warning: result of comparison of constant 4398046511104 with expression of type 'unsigned long' is always false
 2022-10-30  5:04 UTC 

[linux-next:master 2758/4127] drivers/pci/pcie/portdrv.c:753:51: warning: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
 2022-10-30  5:04 UTC 

How to convert I/O iterators to iterators, sglists and RDMA lists
 2022-10-30  5:01 UTC  (9+ messages)
` [PATCH v2 01/12] get rid of unlikely() on page_copy_sane() calls
  ` [PATCH v2 12/12] use less confusing names for iov_iter direction initializers

[Intel-wired-lan] [PATCH 0/5] igc: TSN Qbv Improvement for I226 Stepping
 2022-10-30  4:53 UTC  (6+ messages)
` [Intel-wired-lan] [PATCH 1/5] igc: allow BaseTime 0 enrollment for Qbv
` [Intel-wired-lan] [PATCH 2/5] igc: remove I226 Qbv BaseTime restriction
` [Intel-wired-lan] [PATCH 3/5] igc: recalculate Qbv end_time by considering cycle time
` [Intel-wired-lan] [PATCH 4/5] igc: enable Qbv configuration for 2nd GCL
` [Intel-wired-lan] [PATCH 5/5] igc: Set Qbv start_time and end_time to end_time if not being configured in GCL

[PATCH v1 1/2] Input: matrix_keypad - add missed header inclusion
 2022-10-30  4:55 UTC  (7+ messages)
` [PATCH v1 2/2] Input: matrix_keypad - replace header inclusions by forward declarations

[zen:6.0/prjc 306/318] kernel/sched/alt_core.c:5835: warning: expecting prototype for sys_sched_getscheduler(). Prototype was for sys_sched_getparam() instead
 2022-10-30  4:54 UTC 

[PATCH v2 1/2] gpiolib: of: factor out quirk setting polarity via separate property
 2022-10-30  4:40 UTC  (2+ messages)
` [PATCH v2 2/2] gpiolib: of: add polarity quirk for Freescale PCIe controller

[virtio-dev] [PATCH v4 0/2] virtio-blk: support zoned block devices
 2022-10-30  4:35 UTC  (6+ messages)
`  "
` [PATCH v4 1/2] virtio-blk: use a helper to handle request queuing errors
  ` [virtio-dev] "
` [virtio-dev] [PATCH v4 2/2] virtio-blk: add support for zoned block devices
  `  "

[PATCH v13 0/2] Introduce XSAVE feature self-test
 2022-10-30  4:22 UTC  (3+ messages)
` [PATCH v13 1/2] selftests/x86/xstate: Add xstate signal handling test for XSAVE feature
` [PATCH v13 2/2] selftests/x86/xstate: Add xstate fork "

[zen:6.0/prjc 303/318] kernel/sched/alt_core.c:966:6: warning: no previous prototype for 'resched_curr'
 2022-10-30  4:13 UTC 

LSM stacking in next for 6.1?
 2022-10-30  4:03 UTC  (18+ messages)

[PATCH] drm/amd/pm: replace ternary operator with max()
 2022-10-30  4:03 UTC  (3+ messages)

drivers/rtc/dev.c:401:30: warning: use of uninitialized value '<unknown>' [CWE-457]
 2022-10-30  3:53 UTC 

[PATCH v2] block: simplify blksize_bits() implementation
 2022-10-30  3:52 UTC  (5+ messages)

[f2fs-dev] [PATCH v4] f2fs: support errors=remount-ro|continue|panic mountoption
 2022-10-30  3:50 UTC  (2+ messages)
`  "

[PATCHv3] mm: use stack_depot for recording kmemleak's backtrace
 2022-10-30  3:45 UTC  (2+ messages)

[linux-next:master 3084/4127] ld.lld: error: vmlinux.a(fs/binfmt_flat.o):(function load_flat_binary: .text+0x224): relocation R_RISCV_HI20 out of range: 532893 is not in [-524288, 524287]; references load_flat_file.__if_trace.19.0
 2022-10-30  3:43 UTC 

[PATCH] [next] i915/gvt: remove hardcoded value on crc32_start calculation
 2022-10-30  3:36 UTC  (2+ messages)

[zen:6.0/prjc 1/318] kernel/sched/stats.c:100:38: error: 'prof_on' undeclared
 2022-10-30  3:33 UTC 

[for-next PATCH v5 00/11] RDMA/rxe: Add RDMA FLUSH operation
 2022-10-30  3:33 UTC  (4+ messages)
` [for-next PATCH v5 05/11] RDMA/rxe: Allow registering persistent flag for pmem MR only

[PATCH 6.0 00/20] 6.0.4-rc1 review
 2022-10-30  3:33 UTC  (5+ messages)
` [PATCH 6.0 19/20] mm/huge_memory: do not clobber swp_entry_t during THP split

[PATCHSET v23.3 0/4] fstests: refactor xfs geometry computation
 2022-10-30  3:31 UTC  (9+ messages)
` [PATCH 1/4] xfs: refactor filesystem feature detection logic
` [PATCH 2/4] xfs: refactor filesystem directory block size extraction logic
` [PATCH 3/4] xfs: refactor filesystem realtime geometry detection logic
` [PATCH 4/4] common: simplify grep pipe sed interactions

[PATCH 1/2] kunit: tool: make unit test not print parsed testdata to stdout
 2022-10-30  3:31 UTC  (2+ messages)

[PATCH v2 1/1] hwmon: (it87) Create DMI matching table for various board settings
 2022-10-30  3:28 UTC  (6+ messages)

[RFC 0/2] iomap: Add support for subpage dirty state tracking to improve write performance
 2022-10-30  3:27 UTC  (4+ messages)
` [RFC 2/2] iomap: Support subpage size dirty "

[PATCH] common/config: Make test and scratch devices use the same mount options
 2022-10-30  3:26 UTC  (2+ messages)

[PATCH] Add OneXPlayer mini AMD board driver
 2022-10-30  3:24 UTC  (4+ messages)

[PATCH 0/7] nsis: gitlab-ci: Improve QEMU Windows installer packaging
 2022-10-30  3:21 UTC  (4+ messages)
` [PATCH 7/7] .gitlab-ci.d/windows.yml: Test 'make installer' in the CI

[PATCH] kunit: alloc_string_stream_fragment error handling bug fix
 2022-10-30  3:20 UTC  (2+ messages)

[PATCH v2 0/3] queue freezing improvement and cleanups
 2022-10-30  3:17 UTC  (5+ messages)
` [PATCH v2 1/3] blk-mq: remove redundant call to blk_freeze_queue_start in blk_mq_destroy_queue
` [PATCH v2 2/3] blk-mq: remove blk_freeze_queue
` [PATCH v2 3/3] block: hide back blk_freeze_queue_start and export its blk-mq alias

[Buildroot] [PATCH 1/1] package/python-pypa-build: bump to version 0.9.0
 2022-10-30  3:10 UTC 

Soft bug: No chance to sign synthetic commits when using git subtree External
 2022-10-30  3:09 UTC  (3+ messages)
` Fwd: "

[PATCH for-next v2] RDMA/rxe: Fix mr->map double free
 2022-10-30  3:04 UTC 

[PATCH] kasan: allow sampling page_alloc allocations for HW_TAGS
 2022-10-30  2:59 UTC  (2+ messages)

[PATCH 1/1] cli: always show cursor
 2022-10-30  2:55 UTC  (7+ messages)

[PATCH for-next] RDMA/rxe: Fix mr->map double free
 2022-10-30  2:53 UTC  (2+ messages)

[PATCH 1/1] console: file should always be non-negative
 2022-10-30  2:47 UTC  (4+ messages)

[PATCH] staging: vchiq: add 'static' to function definition
 2022-10-30  2:43 UTC  (5+ messages)

[linusw-nomadik:gemini-usb-join 4/6] drivers/usb/fotg210/fotg210-hcd.c:735:2: warning: Value stored to 'next' is never read [clang-analyzer-deadcode.DeadStores]
 2022-10-30  2:42 UTC 

[Bug 216639] New: [xfstests] WARNING: CPU: 1 PID: 429349 at mm/huge_memory.c:2465 __split_huge_page_tail+0xab0/0xce0
 2022-10-30  2:43 UTC  (2+ messages)
` [Bug 216639] "

[GIT PULL] smb3 client fixes
 2022-10-30  2:40 UTC 

[PATCH 0/3] cleanups for queue freezing functions
 2022-10-30  2:27 UTC  (4+ messages)
` [PATCH 1/3] blk-mq: remove redundant call to blk_freeze_queue_start in blk_mq_destroy_queue
    `  "

[PATCH 00/13] Clean up pmd_get_atomic() and i386-PAE
 2022-10-30  2:17 UTC  (20+ messages)
` [PATCH 01/13] mm: Update ptep_get_lockless()s comment

[meta-oe][PATCH] grpc: Update to 1.50.x release
 2022-10-30  2:07 UTC  (4+ messages)
` [oe] "

[syzbot] KASAN: null-ptr-deref Read in drop_buffers
 2022-10-30  2:04 UTC 

How can I pair a BT HID device so I can read its input, but not have it mapped to the console
 2022-10-30  1:59 UTC 

[PATCH 00/17] dm: sandbox: Add a new HOST uclass
 2022-10-30  1:47 UTC  (16+ messages)
` [PATCH 03/17] test: Split out mk_fs function into a helper
` [PATCH 04/17] test: Correct pylint warnings in fs_helper
` [PATCH 05/17] dm: test: Drop the special function for running DM tests
` [PATCH 06/17] dm: test: Clear the block cache after running a test
` [PATCH 07/17] test: Drop an unused parameter to ut_run_test_live_flat()
` [PATCH 08/17] test: Tidy up help for ut command
` [PATCH 09/17] test: doc: Add documentation "
` [PATCH 10/17] test: Allow showing basic information about tests
` [PATCH 11/17] test: Add a way to detect a test that breaks another
` [PATCH 12/17] dm: blk: Tidy up obtaining a block device from its parent
` [PATCH 13/17] dm: sandbox: Create a new HOST uclass
` [PATCH 14/17] dm: sandbox: Create a block driver
` [PATCH 15/17] dm: sandbox: Switch over to using the new host uclass
` [PATCH 16/17] dm: Add documentation for host command and implementation
` [PATCH 17/17] dm: Add tests for the sandbox host driver


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.