All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2022-03-04 19:11:03 to 2022-03-04 20:08:46 UTC [more...]

[RFC PATCH v5 000/104] KVM TDX basic feature support
 2022-03-04 19:50 UTC  (62+ messages)
` [RFC PATCH v5 001/104] KVM: VMX: Move out vmx_x86_ops to 'main.c' to wrap VMX and TDX
` [RFC PATCH v5 002/104] x86/virt/tdx: export platform_has_tdx
` [RFC PATCH v5 003/104] KVM: TDX: Detect CPU feature on kernel module initialization
` [RFC PATCH v5 004/104] KVM: Enable hardware before doing arch VM initialization
` [RFC PATCH v5 005/104] KVM: x86: Refactor KVM VMX module init/exit functions
` [RFC PATCH v5 006/104] KVM: TDX: Add placeholders for TDX VM/vcpu structure
` [RFC PATCH v5 007/104] x86/virt/tdx: Add a helper function to return system wide info about TDX module
` [RFC PATCH v5 008/104] KVM: TDX: Add a function to initialize "
` [RFC PATCH v5 009/104] KVM: x86: Introduce vm_type to differentiate default VMs from confidential VMs
` [RFC PATCH v5 010/104] KVM: TDX: Make TDX VM type supported
` [RFC PATCH v5 011/104] [MARKER] The start of TDX KVM patch series: TDX architectural definitions
` [RFC PATCH v5 012/104] KVM: TDX: Define "
` [RFC PATCH v5 013/104] KVM: TDX: Add TDX "architectural" error codes
` [RFC PATCH v5 014/104] KVM: TDX: Add a function for KVM to invoke SEAMCALL
` [RFC PATCH v5 015/104] KVM: TDX: add a helper function for KVM to issue SEAMCALL
` [RFC PATCH v5 016/104] KVM: TDX: Add C wrapper functions for SEAMCALLs to the TDX module
` [RFC PATCH v5 017/104] KVM: TDX: Add helper functions to print TDX SEAMCALL error
` [RFC PATCH v5 018/104] [MARKER] The start of TDX KVM patch series: TD VM creation/destruction
` [RFC PATCH v5 020/104] KVM: TDX: allocate per-package mutex
` [RFC PATCH v5 021/104] KVM: x86: Introduce hooks to free VM callback prezap and vm_free
` [RFC PATCH v5 023/104] x86/cpu: Add helper functions to allocate/free MKTME keyid
` [RFC PATCH v5 024/104] KVM: TDX: create/destroy VM structure
` [RFC PATCH v5 025/104] KVM: TDX: Add place holder for TDX VM specific mem_enc_op ioctl
` [RFC PATCH v5 026/104] KVM: TDX: x86: Add vm ioctl to get TDX systemwide parameters
` [RFC PATCH v5 027/104] KVM: TDX: initialize VM with TDX specific parameters
` [RFC PATCH v5 028/104] [MARKER] The start of TDX KVM patch series: TD vcpu creation/destruction
` [RFC PATCH v5 029/104] KVM: TDX: allocate/free TDX vcpu structure
` [RFC PATCH v5 030/104] KVM: TDX: Do TDX specific vcpu initialization
` [RFC PATCH v5 031/104] [MARKER] The start of TDX KVM patch series: KVM MMU GPA stolen bits
` [RFC PATCH v5 041/104] KVM: VMX: Move setting of EPT MMU masks to common VT-x code
` [RFC PATCH v5 074/104] KVM: x86: Add a switch_db_regs flag to handle TDX's auto-switched behavior
` [RFC PATCH v5 075/104] KVM: x86: Check for pending APICv interrupt in kvm_vcpu_has_events()
` [RFC PATCH v5 076/104] KVM: x86: Add option to force LAPIC expiration wait
` [RFC PATCH v5 077/104] KVM: TDX: Use vcpu_to_pi_desc() uniformly in posted_intr.c
` [RFC PATCH v5 078/104] KVM: TDX: Implement interrupt injection
` [RFC PATCH v5 079/104] KVM: TDX: Implements vcpu request_immediate_exit
` [RFC PATCH v5 080/104] KVM: TDX: Implement methods to inject NMI
` [RFC PATCH v5 081/104] KVM: VMX: Modify NMI and INTR handlers to take intr_info as function argument
` [RFC PATCH v5 082/104] KVM: VMX: Move NMI/exception handler to common helper
` [RFC PATCH v5 083/104] KVM: x86: Split core of hypercall emulation to helper function
` [RFC PATCH v5 084/104] KVM: TDX: Add a place holder to handle TDX VM exit
` [RFC PATCH v5 085/104] KVM: TDX: handle EXIT_REASON_OTHER_SMI
` [RFC PATCH v5 086/104] KVM: TDX: handle ept violation/misconfig exit
` [RFC PATCH v5 087/104] KVM: TDX: handle EXCEPTION_NMI and EXTERNAL_INTERRUPT
` [RFC PATCH v5 088/104] KVM: TDX: Add TDG.VP.VMCALL accessors to access guest vcpu registers
` [RFC PATCH v5 089/104] KVM: TDX: Add a placeholder for handler of TDX hypercalls (TDG.VP.VMCALL)
` [RFC PATCH v5 090/104] KVM: TDX: handle KVM hypercall with TDG.VP.VMCALL
` [RFC PATCH v5 091/104] KVM: TDX: Handle TDX PV CPUID hypercall
` [RFC PATCH v5 092/104] KVM: TDX: Handle TDX PV HLT hypercall
` [RFC PATCH v5 093/104] KVM: TDX: Handle TDX PV port io hypercall
` [RFC PATCH v5 094/104] KVM: TDX: Handle TDX PV MMIO hypercall
` [RFC PATCH v5 095/104] KVM: TDX: Implement callbacks for MSR operations for TDX
` [RFC PATCH v5 096/104] KVM: TDX: Handle TDX PV rdmsr hypercall
` [RFC PATCH v5 097/104] KVM: TDX: Handle TDX PV wrmsr hypercall
` [RFC PATCH v5 098/104] KVM: TDX: Handle TDX PV report fatal error hypercall
` [RFC PATCH v5 099/104] KVM: TDX: Handle TDX PV map_gpa hypercall
` [RFC PATCH v5 100/104] KVM: TDX: Silently discard SMI request
` [RFC PATCH v5 101/104] KVM: TDX: Silently ignore INIT/SIPI
` [RFC PATCH v5 102/104] KVM: TDX: Add methods to ignore accesses to CPU state
` [RFC PATCH v5 103/104] Documentation/virtual/kvm: Document on Trust Domain Extensions(TDX)
` [RFC PATCH v5 104/104] KVM: x86: design documentation on TDX support of x86 KVM TDP MMU

[PATCH v2 net-next 00/14] tcp: BIG TCP implementation
 2022-03-04 19:28 UTC  (10+ messages)
` [PATCH v2 net-next 04/14] ipv6: add struct hop_jumbo_hdr definition
` [PATCH v2 net-next 08/14] ipv6: Add hop-by-hop header to jumbograms in ip6_output

[ANNOUNCE] 4.19.232-rt104
 2022-03-04 19:35 UTC 

pm/testing build: 7 builds: 0 failed, 7 passed, 1 warning (thermal-5.17-rc7-127-g87852f90dc5a)
 2022-03-04 20:01 UTC 

[PATCH 1/2] EFI: console: Do not set colorstate until the first text output
 2022-03-04 20:08 UTC  (3+ messages)

[PATCH v4 00/18] target/arm: Implement LVA, LPA, LPA2 features
 2022-03-04 19:52 UTC  (5+ messages)
` [PATCH v4 18/18] hw/arm/virt: Disable LPA2 for -machine virt-6.2

[PATCH v5 0/2] target/arm: Enable LPA2
 2022-03-04 20:03 UTC  (3+ messages)
` [PATCH v5 1/2] target/arm: Provide cpu property for controling FEAT_LPA2
` [PATCH v5 2/2] hw/core: Disable LPA2 for -machine virt-6.2

[dunfell/master PATCH] pruss-fw: am57xx: Update hsr/prp/sw/dual-emac firmware
 2022-03-04 20:06 UTC  (5+ messages)

[ndctl PATCH] scripts/docsurgeon: Fix document header for section 1 man pages
 2022-03-04 20:06 UTC 

DWC3 Isoc Gadget Missed Interrupts on Start Transfer
 2022-03-04 19:36 UTC  (5+ messages)

[PATCH v2 0/5] iotests: add enhanced debugging info to qemu-img failures
 2022-03-04 19:47 UTC  (6+ messages)
` [PATCH v2 1/5] python/utils: add add_visual_margin() text decoration utility
` [PATCH v2 2/5] python/utils: add VerboseProcessError
` [PATCH v2 3/5] iotests: Remove explicit checks for qemu_img() == 0
` [PATCH v2 4/5] iotests: make qemu_img raise on non-zero rc by default
` [PATCH v2 5/5] iotests: fortify compare_images() against crashes

[PATCH bpf-next 0/4] Subskeleton support for BPF libraries
 2022-03-04 19:40 UTC  (12+ messages)
` [PATCH bpf-next 3/4] libbpf: add subskeleton scaffolding
` [PATCH bpf-next 2/4] bpftool: add support for subskeletons

[PATCH] hw/block: m25p80: Add support for w25q01jvq
 2022-03-04 19:47 UTC  (3+ messages)

[PATCH] mtd: rawnand: omap2: Actually prevent invalid configuration and build error
 2022-03-04 20:04 UTC  (4+ messages)

[PATCH v8 0/6] Update gnulib version and drop most gnulib patches
 2022-03-04 20:04 UTC  (8+ messages)
` [PATCH v8 4/6] Drop gnulib no-abort.patch

[PATCH v3] test-lib.sh: Use GLIBC_TUNABLES instead of MALLOC_CHECK_ on glibc >= 2.34
 2022-03-04 19:59 UTC  (2+ messages)

Way to enumerate wireless adapters in kernel
 2022-03-04 19:59 UTC 

[meta-oe][PATCH 1/2] unattended-upgrades: Inherit setuptools3_legacy
 2022-03-04 20:03 UTC  (2+ messages)
` [meta-xfce][PATCH 2/2] menulibre: "

[PATCH v3 0/6] clocksource/drivers/timer-microchip-pit64b: fixes and improvements
 2022-03-04 19:46 UTC  (3+ messages)

[PATCH] libsepol: fix reallocarray imports
 2022-03-04 19:53 UTC  (2+ messages)

[PATCH v8 0/9] vfio/hisilicon: add ACC live migration driver
 2022-03-04 19:44 UTC  (4+ messages)
` [PATCH v8 8/9] hisi_acc_vfio_pci: Add support for VFIO live migration

[PATCH 1/2] nvme: remove support or stream based temperature hint
 2022-03-04 19:36 UTC  (5+ messages)
` [PATCH 2/2] block: remove the per-bio/request write hint

❌ FAIL: Test report for kernel 5.13.0-rc7 (arm-next, 8ab9b1a9)
 2022-03-04 20:00 UTC  (12+ messages)
                  ` ??? "

[PATCH] KEYS: remove support for asym_tpm keys
 2022-03-04 19:40 UTC  (3+ messages)

[next] WARNING: suspicious RCU usage : include/linux/cgroup.h:494 suspicious rcu_dereference_check() usage
 2022-03-04 19:44 UTC  (3+ messages)

[PATCH v7 00/10] vfio/hisilicon: add ACC live migration driver
 2022-03-04 19:56 UTC  (11+ messages)
` [PATCH v7 07/10] vfio: Extend the device migration protocol with PRE_COPY

[PATCH] drm/bridge_connector: enable HPD by default if supported
 2022-03-04 19:38 UTC  (3+ messages)

[PATCH v2 0/3] contributor doc update around log messages
 2022-03-04 19:41 UTC  (6+ messages)
` [PATCH v3 3/3] SubmittingPatches: explain why we care about "
      ` log messages > comments (was: [PATCH v3 3/3] SubmittingPatches: explain why we care about log messages)
        ` log messages > comments

[PATCH v1 1/1] staging: fbtft: Consider type of init sequence values in fbtft_init_display()
 2022-03-04 19:34 UTC 

remove opencoded kmap of bio_vecs v2
 2022-03-04 19:29 UTC  (4+ messages)
` [PATCH 01/10] iss-simdisk: use bvec_kmap_local in simdisk_submit_bio
    ` [Drbd-dev] "

[PATCH] mm: madvise: MADV_DONTNEED_LOCKED
 2022-03-04 19:26 UTC  (2+ messages)

[Intel-gfx] [PATCH v3 0/3] vm- and vma cleanups
 2022-03-04 20:00 UTC  (2+ messages)
` [Intel-gfx] ✓ Fi.CI.IGT: success for vm- and vma cleanups (rev2)

[PATCH v1 1/1] irqchip/gic-v3-its: fixup IRQ affinities to account for online CPUs
 2022-03-04 19:52 UTC 

[PATCH v2] ceph: fix memory leakage in ceph_readdir
 2022-03-04 19:42 UTC  (4+ messages)

[PATCH v4 00/12] KVM: mm: fd-based approach for supporting KVM guest private memory
 2022-03-04 19:24 UTC  (9+ messages)
` [PATCH v4 01/12] mm/shmem: Introduce F_SEAL_INACCESSIBLE

[PATCH] simpldrm: Enable boot time VESA graphic mode selection
 2022-03-04 20:00 UTC  (5+ messages)

[PATCH v2] i386/sev: Ensure attestation report length is valid before retrieving
 2022-03-04 19:37 UTC 

[Intel-gfx] [PATCH] drm/i915: stop checking for NULL vma->obj
 2022-03-04 19:58 UTC  (2+ messages)
` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for "

[PATCH v3 00/39] x86: Kernel IBT
 2022-03-04 19:48 UTC  (4+ messages)
` [PATCH v3 18/39] x86/ibt,ftrace: Make function-graph play nice

[dm-devel] remove bio_devname
 2022-03-04 19:14 UTC  (10+ messages)
` [dm-devel] [PATCH 02/10] block: remove handle_bad_sector
` [dm-devel] [PATCH 05/10] dm-integrity: stop using bio_devname
` [dm-devel] [PATCH 06/10] md-multipath: "
  `  "
` [dm-devel] [PATCH 07/10] raid1: "
  `  "
` [dm-devel] [PATCH 08/10] raid5-ppl: "
  `  "
` [dm-devel] [PATCH 10/10] block: remove bio_devname

[RFC] [PATCH] binman: support mkimage split files
 2022-03-04 19:56 UTC  (2+ messages)
` [PATCH v2] binman: support mkimage separate files

[PATCH v2 00/12] nbd: enable use of TLS on non-TCP transports and other TLS improvements
 2022-03-04 19:36 UTC  (13+ messages)
` [PATCH v2 01/12] crypto: mandate a hostname when checking x509 creds on a client
` [PATCH v2 02/12] block: pass desired TLS hostname through from block driver client
` [PATCH v2 03/12] block/nbd: support override of hostname for TLS certificate validation
` [PATCH v2 04/12] qemu-nbd: add --tls-hostname option "
` [PATCH v2 05/12] block/nbd: don't restrict TLS usage to IP sockets
` [PATCH v2 06/12] tests/qemu-iotests: add QEMU_IOTESTS_REGEN=1 to update reference file
` [PATCH v2 07/12] tests/qemu-iotests: expand _filter_nbd rules
` [PATCH v2 08/12] tests/qemu-iotests: introduce filter for qemu-nbd export list
` [PATCH v2 09/12] tests/qemu-iotests: convert NBD TLS test to use standard filters
` [PATCH v2 10/12] tests/qemu-iotests: validate NBD TLS with hostname mismatch
` [PATCH v2 11/12] tests/qemu-iotests: validate NBD TLS with UNIX sockets
` [PATCH v2 12/12] tests/qemu-iotests: validate NBD TLS with UNIX sockets and PSK

[Intel-gfx] [PATCH 0/8] Some more bits for small BAR enabling
 2022-03-04 19:56 UTC  (7+ messages)
` [Intel-gfx] [PATCH 7/8] drm/i915: fixup the initial fb base on DG1
    `  "
` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Some more bits for small BAR enabling
` [Intel-gfx] ✗ Fi.CI.SPARSE: "
` [Intel-gfx] ✗ Fi.CI.BAT: failure "

[PATCH net] net: phy: meson-gxl: fix interrupt handling in forced mode
 2022-03-04 19:52 UTC  (3+ messages)

[PATCH 00/36] Arm cache coloring
 2022-03-04 19:47 UTC  (3+ messages)
` [PATCH 27/36] xen/arch: add coloring support for Xen

[Buildroot] [PATCH/next 1/1] package/faketime: bump to version 0.9.10
 2022-03-04 19:40 UTC 

Submitting patches for QorIQ components
 2022-03-04 19:36 UTC  (2+ messages)

[PATCH 00/12] nbd: enable use of TLS on non-TCP transports and other TLS improvements
 2022-03-04 19:32 UTC  (7+ messages)
` [PATCH 02/12] block: pass desired TLS hostname through from block driver client
` [PATCH 08/12] tests/qemu-iotests: introduce filter for qemu-nbd export list

[PATCH net-next 00/11] mptcp: Selftest refinements and a new test
 2022-03-04 19:36 UTC  (12+ messages)
` [PATCH net-next 01/11] selftests: mptcp: adjust output alignment for more tests
` [PATCH net-next 02/11] mptcp: add the mibs for MP_FASTCLOSE
` [PATCH net-next 03/11] selftests: mptcp: add the MP_FASTCLOSE mibs check
` [PATCH net-next 04/11] mptcp: add the mibs for MP_RST
` [PATCH net-next 05/11] selftests: mptcp: add the MP_RST mibs check
` [PATCH net-next 06/11] selftests: mptcp: add extra_args in do_transfer
` [PATCH net-next 07/11] selftests: mptcp: reuse linkfail to make given size files
` [PATCH net-next 08/11] selftests: mptcp: add fastclose testcase
` [PATCH net-next 09/11] selftests: mptcp: add invert check in check_transfer
` [PATCH net-next 10/11] selftests: mptcp: add more arguments for chk_join_nr
` [PATCH net-next 11/11] selftests: mptcp: update output info of chk_rm_nr

[PULL 00/11] QEMU changes for 2021-03-02
 2022-03-04 19:30 UTC  (7+ messages)

[Buildroot] [PATCH/next 1/1] package/jpeg-turbo: bump to version 2.1.3
 2022-03-04 19:32 UTC 

[PATCH 0/4] A few fixup patches for memory failure
 2022-03-04 19:32 UTC  (4+ messages)
` [PATCH 1/4] mm/memory-failure.c: fix race with changing page compound again

[PATCH 0/2] staging: vc04_services: address W=1 warnings
 2022-03-04 19:30 UTC  (5+ messages)
` [PATCH 2/2] staging: vchiq_arm: add prototype of function vchiq_platform_init()

[PATCH v2 1/1] Simplify the generation of man pages
 2022-03-04 19:29 UTC 

[PATCH v4 00/24] DEPT(Dependency Tracker)
 2022-03-04 19:28 UTC  (3+ messages)
` [PATCH v4 16/24] locking/lockdep, cpu/hotplus: Use a weaker annotation in AP thread

[PATCH v1 00/10] Support for GMU coredump and some related improvements
 2022-03-04 19:22 UTC  (4+ messages)
` [PATCH v1 07/10] drm/msm/adreno: Retry on gpu resume failure

[PULL v2 00/21] tcg patch queue
 2022-03-04 19:09 UTC 

[PATCH v2] mm/page_alloc: call check_new_pages() while zone spinlock is not held
 2022-03-04 19:19 UTC  (2+ messages)

[PATCH 00/11] Partial bundles
 2022-03-04 19:19 UTC  (2+ messages)

[PATCH] x86/bug: __WARN_FLAGS: prevent shadowing by renaming local variable f to __flags
 2022-03-04 19:18 UTC  (2+ messages)

suricata: enable lua support
 2022-03-04 19:18 UTC 

[PATCH bpf-next v1 0/4] bpf: add __percpu tagging in vmlinux BTF
 2022-03-04 19:16 UTC  (5+ messages)
` [PATCH bpf-next v1 1/4] bpf: Fix checking PTR_TO_BTF_ID in check_mem_access
` [PATCH bpf-next v1 2/4] compiler_types: define __percpu as __attribute__((btf_type_tag("percpu")))
` [PATCH bpf-next v1 3/4] bpf: Reject programs that try to load __percpu memory
` [PATCH bpf-next v1 4/4] selftests/bpf: Add a test for btf_type_tag "percpu"

[PATCH v2 0/8] softmmu: move and refactor -runas, -chroot and -daemonize
 2022-03-04 18:56 UTC  (2+ messages)
` [PATCH v2 7/8] softmmu: move parsing of -runas, -chroot and -daemonize code

[PATCH v32 00/28] LSM: Module stacking for AppArmor
 2022-03-04 19:14 UTC  (5+ messages)
` [PATCH v32 03/28] LSM: Add the lsmblob data structure

[PATCH 00/35] Shadow stacks for userspace
 2022-03-04 19:13 UTC  (14+ messages)

[PATCH 00/14] tree-wide: small fixes for memory leaks
 2022-03-04 19:11 UTC  (5+ messages)
` [PATCH v2 "
  ` [PATCH v2 07/14] transport: stop needlessly copying bundle header references


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.