All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2021-11-29 01:18:48 to 2021-11-29 03:10:36 UTC [more...]

[PATCH v10 00/77] support vector extension v1.0
 2021-11-29  3:03 UTC  (78+ messages)
` [PATCH v10 01/77] target/riscv: drop vector 0.7.1 and add 1.0 support
` [PATCH v10 02/77] target/riscv: Use FIELD_EX32() to extract wd field
` [PATCH v10 03/77] target/riscv: rvv-1.0: add mstatus VS field
` [PATCH v10 04/77] target/riscv: rvv-1.0: set mstatus.SD bit if mstatus.VS is dirty
` [PATCH v10 05/77] target/riscv: rvv-1.0: add sstatus VS field
` [PATCH v10 06/77] target/riscv: rvv-1.0: introduce writable misa.v field
` [PATCH v10 07/77] target/riscv: rvv-1.0: add translation-time vector context status
` [PATCH v10 08/77] target/riscv: rvv-1.0: remove rvv related codes from fcsr registers
` [PATCH v10 09/77] target/riscv: rvv-1.0: add vcsr register
` [PATCH v10 10/77] target/riscv: rvv-1.0: add vlenb register
` [PATCH v10 11/77] target/riscv: rvv-1.0: check MSTATUS_VS when accessing vector csr registers
` [PATCH v10 12/77] target/riscv: rvv-1.0: remove MLEN calculations
` [PATCH v10 14/77] target/riscv: rvv-1.0: add VMA and VTA
` [PATCH v10 15/77] target/riscv: rvv-1.0: update check functions
` [PATCH v10 16/77] target/riscv: introduce more imm value modes in translator functions
` [PATCH v10 17/77] target/riscv: rvv:1.0: add translation-time nan-box helper function
` [PATCH v10 18/77] target/riscv: rvv-1.0: remove amo operations instructions
` [PATCH v10 19/77] target/riscv: rvv-1.0: configure instructions
` [PATCH v10 20/77] target/riscv: rvv-1.0: stride load and store instructions
` [PATCH v10 21/77] target/riscv: rvv-1.0: index "
` [PATCH v10 22/77] target/riscv: rvv-1.0: fix address index overflow bug of indexed load/store insns
` [PATCH v10 23/77] target/riscv: rvv-1.0: fault-only-first unit stride load
` [PATCH v10 24/77] target/riscv: rvv-1.0: load/store whole register instructions
` [PATCH v10 25/77] target/riscv: rvv-1.0: update vext_max_elems() for load/store insns
` [PATCH v10 26/77] target/riscv: rvv-1.0: take fractional LMUL into vector max elements calculation
` [PATCH v10 27/77] target/riscv: rvv-1.0: floating-point square-root instruction
` [PATCH v10 28/77] target/riscv: rvv-1.0: floating-point classify instructions
` [PATCH v10 29/77] target/riscv: rvv-1.0: count population in mask instruction
` [PATCH v10 31/77] target/riscv: rvv-1.0: set-X-first mask bit instructions
` [PATCH v10 32/77] target/riscv: rvv-1.0: iota instruction
` [PATCH v10 33/77] target/riscv: rvv-1.0: element index instruction
` [PATCH v10 34/77] target/riscv: rvv-1.0: allow load element with sign-extended
` [PATCH v10 35/77] target/riscv: rvv-1.0: register gather instructions
` [PATCH v10 36/77] target/riscv: rvv-1.0: integer scalar move instructions
` [PATCH v10 37/77] target/riscv: rvv-1.0: floating-point move instruction
` [PATCH v10 38/77] target/riscv: rvv-1.0: floating-point scalar move instructions
` [PATCH v10 39/77] target/riscv: rvv-1.0: whole register "
` [PATCH v10 40/77] target/riscv: rvv-1.0: integer extension instructions
` [PATCH v10 41/77] target/riscv: rvv-1.0: single-width averaging add and subtract instructions
` [PATCH v10 42/77] target/riscv: rvv-1.0: single-width bit shift instructions
` [PATCH v10 43/77] target/riscv: rvv-1.0: integer add-with-carry/subtract-with-borrow
` [PATCH v10 44/77] target/riscv: rvv-1.0: narrowing integer right shift instructions
` [PATCH v10 46/77] target/riscv: rvv-1.0: single-width saturating add and subtract instructions
` [PATCH v10 47/77] target/riscv: rvv-1.0: integer comparison instructions
` [PATCH v10 49/77] target/riscv: rvv-1.0: mask-register logical instructions
` [PATCH v10 50/77] target/riscv: rvv-1.0: slide instructions
` [PATCH v10 51/77] target/riscv: rvv-1.0: floating-point "
` [PATCH v10 54/77] target/riscv: rvv-1.0: widening floating-point reduction instructions
` [PATCH v10 55/77] target/riscv: rvv-1.0: single-width scaling shift instructions
` [PATCH v10 57/77] target/riscv: rvv-1.0: remove vmford.vv and vmford.vf
` [PATCH v10 58/77] target/riscv: rvv-1.0: remove integer extract instruction
` [PATCH v10 59/77] target/riscv: rvv-1.0: floating-point min/max instructions
` [PATCH v10 60/77] target/riscv: introduce floating-point rounding mode enum
` [PATCH v10 61/77] target/riscv: rvv-1.0: floating-point/integer type-convert instructions
` [PATCH v10 62/77] target/riscv: rvv-1.0: widening floating-point/integer type-convert
` [PATCH v10 63/77] target/riscv: add "set round to odd" rounding mode helper function
` [PATCH v10 64/77] target/riscv: rvv-1.0: narrowing floating-point/integer type-convert
` [PATCH v10 65/77] target/riscv: rvv-1.0: relax RV_VLEN_MAX to 1024-bits
` [PATCH v10 66/77] target/riscv: rvv-1.0: implement vstart CSR
` [PATCH v10 67/77] target/riscv: rvv-1.0: trigger illegal instruction exception if frm is not valid
` [PATCH v10 68/77] target/riscv: gdb: support vector registers for rv64 & rv32
` [PATCH v10 69/77] target/riscv: rvv-1.0: floating-point reciprocal square-root estimate instruction
` [PATCH v10 70/77] target/riscv: rvv-1.0: floating-point reciprocal "
` [PATCH v10 71/77] target/riscv: rvv-1.0: rename r2_zimm to r2_zimm11
` [PATCH v10 72/77] target/riscv: rvv-1.0: add vsetivli instruction
` [PATCH v10 73/77] target/riscv: rvv-1.0: add evl parameter to vext_ldst_us()
` [PATCH v10 74/77] target/riscv: rvv-1.0: add vector unit-stride mask load/store insns
` [PATCH v10 75/77] target/riscv: rvv-1.0: rename vmandnot.mm and vmornot.mm to vmandn.mm and vmorn.mm
` [PATCH v10 76/77] target/riscv: rvv-1.0: update opivv_vadc_check() comment

[PATCH v5 00/17] powerpc: Make hash MMU code build configurable
 2021-11-29  3:07 UTC  (3+ messages)
` [PATCH v5 01/17] powerpc: Remove unused FW_FEATURE_NATIVE references
` [PATCH v5 02/17] powerpc: Rename PPC_NATIVE to PPC_HASH_MMU_NATIVE

[PATCH RFC 0/4] mm: percpu: Cleanup percpu first chunk funciton
 2021-11-29  3:06 UTC  (16+ messages)

[EXT] Re: nvme may get timeout from dd when using different non-prefetch mmio outbound/ranges
 2021-11-29  3:04 UTC  (5+ messages)

[PATCH v2] Makefile: Pass relative paths to the compiler
 2021-11-29  3:05 UTC  (2+ messages)

[PATCH v2 0/3] docs/zh_CN: add scheduler arch and bwc translation
 2021-11-29  3:00 UTC  (4+ messages)
` [PATCH v2 1/3] docs/zh_CN: add scheduler sched-arch translation
` [PATCH v2 2/3] docs/zh_CN: add scheduler sched-bwc translation
` [PATCH v2 3/3] docs/scheduler: fix typo and warning in sched-bwc

[PATCH v3 0/2] docs/zh_CN: add scheduler completion translation
 2021-11-29  2:59 UTC  (3+ messages)
` [PATCH v3 1/2] docs/zh_CN: add scheduler index translation
` [PATCH v3 2/2] docs/zh_CN: add completion translation

[PATCH] ath11k: add support for WCN6855 hw2.1
 2021-11-29  2:56 UTC  (2+ messages)

[PATCH v3] efi_loader: check tcg2 protocol installation outside the TCG protocol
 2021-11-29  3:03 UTC  (3+ messages)

❌ FAIL: Test report for kernel 5.16.0-rc2 (mainline.kernel.org-clang, 9557e60b)
 2021-11-29  3:02 UTC 

💥 PANICKED: Test report for kernel 5.16.0-rc2 (mainline.kernel.org-clang, 0757ca01)
 2021-11-29  3:01 UTC 

[PATCH 0/3] page table check
 2021-11-29  2:55 UTC  (8+ messages)
` [PATCH 2/3] mm: "

+ mm-memcg-percpu-account-extra-objcg-space-to-memory-cgroups.patch added to -mm tree
 2021-11-29  2:57 UTC  (2+ messages)

[arm-platforms:kvm-arm64/nv-5.16 6/71] arch/arm64/include/asm/kvm_host.h:67:70: error: expected ';' before '}' token
 2021-11-29  2:56 UTC  (2+ messages)
` [arm-platforms:kvm-arm64/nv-5.16 6/71] arch/arm64/include/asm/kvm_host.h:67:70: error: expected '; ' "

drivers/iio/adc/at91-sama5d2_adc.c:530:0: warning: syntax error [syntaxError]
 2021-11-29  2:56 UTC 

[PATCH v3] PCI: mediatek-gen3: Disable DVFSRC voltage request
 2021-11-29  2:51 UTC  (5+ messages)

[RFC PATCH v3 00/59] KVM: X86: TDX support
 2021-11-29  2:49 UTC  (3+ messages)
` [RFC PATCH v3 16/59] KVM: x86: Add per-VM flag to disable direct IRQ injection

[RFC 0/3] Namespace IMA
 2021-11-29  2:52 UTC  (13+ messages)
` [RFC 1/3] userns: add uuid field
` [RFC 2/3] ima: Namespace IMA

stable-rc/queue/4.19 build: 196 builds: 6 failed, 190 passed, 2 errors, 38 warnings (v4.19.218-54-g88fd43d770ff1)
 2021-11-29  2:49 UTC 

[PATCH] btrfs: fix re-dirty process of tree-log nodes
 2021-11-29  2:49 UTC 

[PATCH 1/2] virito-balloon: process all in sgs for free_page_vq
 2021-11-29  2:48 UTC  (6+ messages)
` [PATCH 2/2] virtio-balloon: correct used length

[PATCH v2] ccw: clarify device reset
 2021-11-29  2:42 UTC  (2+ messages)

[PATCH] fuse: unnecessary fsync for read-only mounts
 2021-11-29  2:38 UTC 

[PATCH 0/2] kobject: avoid to cleanup kobject after module is unloaded
 2021-11-29  2:38 UTC  (6+ messages)
` [PATCH 1/2] kobject: don't delay to cleanup module kobject

[PATCH v3] virtio-mmio: Specify wait needed in driver during reset
 2021-11-29  2:40 UTC  (3+ messages)
    ` [virtio-dev] "

stable-rc/queue/4.4 build: 184 builds: 5 failed, 179 passed, 6 errors, 35 warnings (v4.4.293-17-g9e5bba8753862)
 2021-11-29  2:38 UTC 

[PATCH V3 0/4] thermal: qcom: Add support for PMIC5 Gen2 ADC_TM
 2021-11-29  2:32 UTC  (5+ messages)
` [PATCH V3 3/4] thermal: qcom: Add support for multiple generations of devices
` [PATCH V3 4/4] thermal: qcom: add support for PMIC5 Gen2 ADCTM

include/linux/sunrpc/svc_rdma_pcl.h:64:2: warning: Use of memory after it is freed [clang-analyzer-unix.Malloc]
 2021-11-29  2:35 UTC 

[linux-next:master 3329/3897] drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c:267 amdgpu_ctx_do_set_pstate_profile() warn: variable dereferenced before check 'ctx' (see line 262)
 2021-11-29  2:35 UTC 

[PATCH 0/3] docs/zh_CN: add scheduler arch and bwc translation
 2021-11-29  2:30 UTC  (4+ messages)
` [PATCH 2/3] docs/zh_CN: add scheduler sched-bwc translation

[PATCH 0/4] Inspect reflog data programmatically in more tests
 2021-11-29  2:30 UTC  (13+ messages)
` [PATCH 2/4] refs: trim newline from reflog message

What's cooking in git.git (Nov 2021, #06; Wed, 24)
 2021-11-29  2:29 UTC  (3+ messages)
` bc/require-c99 + jc/c99-var-decl-in-for-loop (was: What's cooking in git.git (Nov 2021, #06; Wed, 24))
  ` bc/require-c99 + jc/c99-var-decl-in-for-loop

[PATCH] intel-iommu: ignore SNP bit in scalable mode
 2021-11-29  2:28 UTC  (9+ messages)

stable-rc/queue/4.14 build: 175 builds: 3 failed, 172 passed, 2 errors, 31 warnings (v4.14.256-28-g54e5647834e42)
 2021-11-29  2:28 UTC 

[PATCH] rtw88: add debugfs to fix tx rate
 2021-11-29  2:25 UTC  (3+ messages)

net/mctp/test/utils.c:15 mctp_test_dev_tx() error: use kfree_skb() here instead of kfree(skb)
 2021-11-29  2:24 UTC  (3+ messages)

[f2fs-dev] [PATCH v3 1/2] f2fs: fix remove page failed in invalidate compress pages
 2021-11-29  2:23 UTC  (3+ messages)
` [f2fs-dev] [PATCH v3 2/2] f2fs: support POSIX_FADV_DONTNEED drop compressed page cache

[PATCH] drm/msm: Initialize MDSS irq domain at probe time
 2021-11-29  2:20 UTC  (3+ messages)

[PATCH RFT 0/3] blk-mq: Optimise blk_mq_queue_tag_busy_iter() for shared tags
 2021-11-29  2:19 UTC  (3+ messages)
` [PATCH RFT 3/3] "

[PATCH net] mctp: test: fix skb free in test device tx
 2021-11-29  2:16 UTC 

[PATCH 0/2] ftrace: improve ftrace during compiling
 2021-11-29  2:13 UTC  (4+ messages)
` [PATCH v4] ftrace sorting optimization changelog
  ` [PATCH v4] scripts: ftrace - move the sort-processing in ftrace_init to compile time

[PATCH -next] block: Fix fsync always failed if once failed
 2021-11-29  2:13 UTC  (2+ messages)

[PATCH] rtw88: refine tx_pwr_tbl debugfs to show channel and bandwidth
 2021-11-29  2:06 UTC 

[PATCH v2] rtw88: add debugfs to fix tx rate
 2021-11-29  2:05 UTC 

Linux 5.16-rc3
 2021-11-29  1:59 UTC  (2+ messages)

[PATCH v3 net-next 0/3] update seville to use shared MDIO driver
 2021-11-29  1:57 UTC  (4+ messages)
` [PATCH v3 net-next 1/3] net: mdio: mscc-miim: convert to a regmap implementation
` [PATCH v3 net-next 2/3] net: dsa: ocelot: seville: utilize of_mdiobus_register
` [PATCH v3 net-next 3/3] net: dsa: ocelot: felix: utilize shared mscc-miim driver for indirect MDIO access

[PATCH v3 00/13] add initial support for the i.MXRTxxxx SoC family starting from i.IMXRT1050 SoC
 2021-11-29  1:54 UTC  (6+ messages)
` [PATCH v3 13/13] ARM: imxrt_defconfig: add i.MXRT family defconfig

[BUG] fs: btrfs: several possible ABBA deadlocks
 2021-11-29  1:48 UTC  (3+ messages)

[PATCH v2] dt-bindings: mailbox: zynqmp_ipi: convert to yaml
 2021-11-29  1:46 UTC  (2+ messages)

[PATCH v3 0/7] MediaTek Ethernet Patches on MT8195
 2021-11-29  1:46 UTC  (17+ messages)
` [PATCH v3 4/7] net-next: dt-bindings: dwmac: Convert mediatek-dwmac to DT schema
` [PATCH v3 7/7] net-next: dt-bindings: dwmac: add support for mt8195

[RFC 0/8] perf/bpf: Add batch support for [ku]probes attach
 2021-11-29  1:43 UTC  (5+ messages)
` [PATCH 1/8] perf/kprobe: Add support to create multiple probes

[PATCH v2 1/3] ARM: dts: stm32: Enable LVDS panel on i.Core STM32MP1 EDIMM2.2
 2021-11-29  1:42 UTC  (4+ messages)
` [PATCH v2 2/3] dt-bindings: arm: stm32: Add Engicam i.Core STM32MP1 C.TOUCH 2.0 10.1" OF

[PATCH V4 0/2] riscv: add RISC-V Svpbmt Standard Extension supports
 2021-11-29  1:40 UTC  (6+ messages)
` [PATCH V4 1/2] dt-bindings: riscv: add MMU Standard Extensions support for Svpbmt
` [PATCH V4 2/2] riscv: add RISC-V Svpbmt extension supports

[PATCH v4 0/2] arm64: Enable OPTPROBE for arm64
 2021-11-29  1:40 UTC  (7+ messages)
` [PATCH v4 2/2] arm64: kprobe: "

[PATCH 0/2] Add SD/SDIO control driver for Sunplus SP7021 SoC
 2021-11-29  1:37 UTC  (4+ messages)
` [PATCH v2 "
  ` [PATCH v2 2/2] devicetree bindings mmc Add bindings doc for Sunplus SP7021

[PATCH v2] acpi/tables: Add AEST in ACPI Table Definition
 2021-11-29  1:33 UTC  (6+ messages)

drivers/net/wireless/ath/ath11k/qmi.c:2031 ath11k_qmi_load_file_target_mem() error: uninitialized symbol 'ret'
 2021-11-29  1:35 UTC 

[PATCH v2 0/2] Add RTC driver for Sunplus SP7021 SoC
 2021-11-29  1:31 UTC  (3+ messages)
` [PATCH v2 2/2] dt-bindings: rtc: Convert Sunplus RTC to json-schema

Please pull u-boot-dm/next
 2021-11-29  1:29 UTC 

[PATCH v2 1/2] dt-bindings: usb: Add Apple dwc3 bindings
 2021-11-29  1:27 UTC  (2+ messages)

[PATCH] fstests: generic/571: skip test if locktest -t on NFS returns EAGAIN
 2021-11-29  1:26 UTC 

[PATCH v3 0/4] media: HEVC: RPS clean up
 2021-11-29  1:22 UTC  (5+ messages)
` [PATCH v3 3/4] media: hantro: Use syscon instead of 'ctrl' register

[PATCH v3 00/14] NVIDIA Tegra ARM32 device-tree patches for 5.17 (new devices and more)
 2021-11-29  1:21 UTC  (5+ messages)
` [PATCH v3 01/14] dt-bindings: ARM: tegra: Document ASUS Transformers
` [PATCH v3 02/14] dt-bindings: ARM: tegra: Document Pegatron Chagall

[PATCH bpf-next 0/4] samples/bpf: xdpsock app enhancements
 2021-11-29  1:17 UTC  (4+ messages)
` [PATCH bpf-next 4/4] samples/bpf: xdpsock: add time-out for cleaning Tx

[PATCH v4 00/25] Introduce power-off+restart call chain API
 2021-11-29  0:36 UTC  (11+ messages)
` [PATCH v4 05/25] reboot: Warn if restart handler has duplicated priority
` [PATCH v4 08/25] kernel: Add combined power-off+restart handler call chain API


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.