All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2020-08-06 08:43:52 to 2020-08-06 11:01:28 UTC [more...]

[PATCH v2 0/7] target/riscv: NaN-boxing for multiple precison
 2020-08-06 10:02 UTC  (9+ messages)
` [PATCH v2 1/7] target/riscv: Generate nanboxed results from fp helpers

[RFC v3 00/71] target/riscv: support vector extension v1.0
 2020-08-06 10:47 UTC  (72+ messages)
` [RFC v3 01/71] target/riscv: drop vector 0.7.1 and add 1.0 support
` [RFC v3 02/71] target/riscv: Use FIELD_EX32() to extract wd field
` [RFC v3 03/71] target/riscv: rvv-1.0: add mstatus VS field
` [RFC v3 04/71] target/riscv: rvv-1.0: add sstatus "
` [RFC v3 05/71] target/riscv: rvv-1.0: introduce writable misa.v field
` [RFC v3 06/71] target/riscv: rvv-1.0: add translation-time vector context status
` [RFC v3 07/71] target/riscv: rvv-1.0: remove vxrm and vxsat fields from fcsr register
` [RFC v3 08/71] target/riscv: rvv-1.0: add vcsr register
` [RFC v3 09/71] target/riscv: rvv-1.0: add vlenb register
` [RFC v3 10/71] target/riscv: rvv-1.0: check MSTATUS_VS when accessing vector csr registers
` [RFC v3 11/71] target/riscv: rvv-1.0: remove MLEN calculations
` [RFC v3 12/71] target/riscv: rvv-1.0: add fractional LMUL
` [RFC v3 13/71] target/riscv: rvv-1.0: add VMA and VTA
` [RFC v3 14/71] target/riscv: rvv-1.0: update check functions
` [RFC v3 15/71] target/riscv: introduce more imm value modes in translator functions
` [RFC v3 16/71] target/riscv: add fp16 nan-box check generator function
` [RFC v3 17/71] target/riscv: rvv:1.0: add translation-time nan-box helper function
` [RFC v3 18/71] target/riscv: rvv-1.0: apply nanbox helper in opfvf_trans
` [RFC v3 19/71] target/riscv: rvv-1.0: configure instructions
` [RFC v3 20/71] target/riscv: rvv-1.0: stride load and store instructions
` [RFC v3 21/71] target/riscv: rvv-1.0: index "
` [RFC v3 22/71] target/riscv: rvv-1.0: fix address index overflow bug of indexed load/store insns
` [RFC v3 23/71] target/riscv: rvv-1.0: fault-only-first unit stride load
` [RFC v3 24/71] target/riscv: rvv-1.0: amo operations
` [RFC v3 25/71] target/riscv: rvv-1.0: load/store whole register instructions
` [RFC v3 26/71] target/riscv: rvv-1.0: update vext_max_elems() for load/store insns
` [RFC v3 27/71] target/riscv: rvv-1.0: take fractional LMUL into vector max elements calculation
` [RFC v3 28/71] target/riscv: rvv-1.0: floating-point square-root instruction
` [RFC v3 29/71] target/riscv: rvv-1.0: floating-point classify instructions
` [RFC v3 30/71] target/riscv: rvv-1.0: mask population count instruction
` [RFC v3 31/71] target/riscv: rvv-1.0: find-first-set mask bit instruction
` [RFC v3 32/71] target/riscv: rvv-1.0: set-X-first mask bit instructions
` [RFC v3 33/71] target/riscv: rvv-1.0: iota instruction
` [RFC v3 34/71] target/riscv: rvv-1.0: element index instruction
` [RFC v3 35/71] target/riscv: rvv-1.0: allow load element with sign-extended
` [RFC v3 36/71] target/riscv: rvv-1.0: register gather instructions
` [RFC v3 37/71] target/riscv: rvv-1.0: integer scalar move instructions
` [RFC v3 38/71] target/riscv: rvv-1.0: floating-point move instruction
` [RFC v3 39/71] target/riscv: rvv-1.0: floating-point scalar move instructions
` [RFC v3 40/71] target/riscv: rvv-1.0: whole register "
` [RFC v3 41/71] target/riscv: rvv-1.0: integer extension instructions
` [RFC v3 42/71] target/riscv: rvv-1.0: single-width averaging add and subtract instructions
` [RFC v3 43/71] target/riscv: rvv-1.0: single-width bit shift instructions
` [RFC v3 44/71] target/riscv: rvv-1.0: integer add-with-carry/subtract-with-borrow
` [RFC v3 45/71] target/riscv: rvv-1.0: narrowing integer right shift instructions
` [RFC v3 46/71] target/riscv: rvv-1.0: widening integer multiply-add instructions
` [RFC v3 47/71] target/riscv: rvv-1.0: add Zvqmac extension
` [RFC v3 48/71] target/riscv: rvv-1.0: quad-widening integer multiply-add instructions
` [RFC v3 49/71] target/riscv: rvv-1.0: single-width saturating add and subtract instructions
` [RFC v3 50/71] target/riscv: rvv-1.0: integer comparison instructions
` [RFC v3 51/71] target/riscv: use softfloat lib float16 comparison functions
` [RFC v3 52/71] target/riscv: rvv-1.0: floating-point compare instructions
` [RFC v3 53/71] target/riscv: rvv-1.0: mask-register logical instructions
` [RFC v3 54/71] target/riscv: rvv-1.0: slide instructions
` [RFC v3 55/71] target/riscv: rvv-1.0: floating-point "
` [RFC v3 56/71] target/riscv: rvv-1.0: narrowing fixed-point clip instructions
` [RFC v3 57/71] target/riscv: rvv-1.0: single-width floating-point reduction
` [RFC v3 58/71] target/riscv: rvv-1.0: widening floating-point reduction instructions
` [RFC v3 59/71] target/riscv: rvv-1.0: single-width scaling shift instructions
` [RFC v3 60/71] target/riscv: rvv-1.0: remove widening saturating scaled multiply-add
` [RFC v3 61/71] target/riscv: rvv-1.0: remove vmford.vv and vmford.vf
` [RFC v3 62/71] target/riscv: rvv-1.0: remove integer extract instruction
` [RFC v3 63/71] target/riscv: rvv-1.0: floating-point min/max instructions
` [RFC v3 64/71] target/riscv: introduce floating-point rounding mode enum
` [RFC v3 65/71] target/riscv: rvv-1.0: floating-point/integer type-convert instructions
` [RFC v3 66/71] target/riscv: rvv-1.0: widening floating-point/integer type-convert
` [RFC v3 67/71] target/riscv: add "set round to odd" rounding mode helper function
` [RFC v3 68/71] target/riscv: rvv-1.0: narrowing floating-point/integer type-convert
` [RFC v3 69/71] target/riscv: gdb: modify gdb csr xml file to align with csr register map
` [RFC v3 70/71] target/riscv: gdb: support vector registers for rv64
` [RFC v3 71/71] target/riscv: gdb: support vector registers for rv32

[PATCH 2/2] drm/ttm: make TT creation purely optional v3
 2020-08-06  9:05 UTC  (6+ messages)
` [2/2] "

[PATCH v2 3/4] drm/gem: Use struct drm_gem_membuf in vmap op and convert GEM backends
 2020-08-06 10:50 UTC  (2+ messages)

[RFC PATCH] mm: silence soft lockups from unlock_page
 2020-08-06  5:46 UTC  (18+ messages)

[PATCH v10 0/5] powerpc: switch VDSO to C implementation
 2020-08-06  5:46 UTC  (6+ messages)
` [PATCH v10 2/5] powerpc/vdso: Prepare for switching VDSO to generic "

[PATCH 2/2] Add a new sysctl knob: unprivileged_userfaultfd_user_mode_only
 2020-08-06  5:44 UTC  (11+ messages)

[PATCH] ext4: handle read only external journal device
 2020-08-06  5:42 UTC  (3+ messages)
` [PATCH v2] "

[PATCH 06/18] fsinfo: Add a uniquifier ID to struct mount [ver #21]
 2020-08-06  5:43 UTC  (8+ messages)
` [PATCH 00/18] VFS: Filesystem information "

[pm:bleeding-edge] BUILD SUCCESS 905922e8acb3b7c7db3b2bc720f44cedcfb284dd
 2020-08-06  5:43 UTC 

[PATCH] tty: synclink_gt: switch from 'pci_' to 'dma_' API
 2020-08-06  5:44 UTC 

ext4: fix spelling typos in ext4_mb_initialize_context
 2020-08-06  5:38 UTC  (2+ messages)

[PATCH] kprobes: fix compiler warning for !CONFIG_KPROBES_ON_FTRACE
 2020-08-06  5:41 UTC  (2+ messages)

[PATCH V2] venus: core: add shutdown callback for venus
 2020-08-06  5:07 UTC  (2+ messages)

[PATCH] ext4: use generic names for generic ioctls
 2020-08-06  5:36 UTC  (2+ messages)

[PATCH 1/2] sched/topology: Allow archs to override cpu_smt_mask
 2020-08-06  5:32 UTC  (5+ messages)

xtables-addon official website changed from sourceforge to inai.de?
 2020-08-06  5:28 UTC 

[PATCH v1] i2c: nvidia-gpu: Use put_unaligned_be24()
 2020-08-06  5:18 UTC  (3+ messages)

[PATCH v5 0/4] clk: qcom: Support for Low Power Audio Clocks on SC7180
 2020-08-06  5:23 UTC  (4+ messages)
` [PATCH v5 4/4] clk: qcom: lpass: Add support for LPASS clock controller for SC7180

[PATCH v6 15/18] nitro_enclaves: Add Makefile for the Nitro Enclaves driver
 2020-08-06  5:22 UTC  (3+ messages)

[PATCH] dt-bindings: sound: Convert NXP spdif to json-schema
 2020-08-06  5:17 UTC 

[PATCH v3] ext4: don't BUG on inconsistent journal feature
 2020-08-06  5:11 UTC  (2+ messages)

[PATCH] ext4: don't hardcode bit values in EXT4_FL_USER_*
 2020-08-06  5:17 UTC  (2+ messages)

[PATCH v2 0/2] dma-pool fixes
 2020-08-06  5:18 UTC  (5+ messages)
` [PATCH v2 2/2] dma-pool: Only allocate from CMA when in same memory zone

[PATCH v10 0/9] Fix up and simplify error recovery mechanism
 2020-08-06  5:06 UTC  (11+ messages)
` [PATCH 1/9] scsi: ufs: Add checks before setting clk-gating states
` [PATCH 2/9] ufs: ufs-qcom: Fix race conditions caused by func ufs_qcom_testbus_config
` [PATCH 3/9] scsi: ufs-qcom: Remove testbus dump in ufs_qcom_dump_dbg_regs
` [PATCH 4/9] scsi: ufs: Add some debug infos to ufshcd_print_host_state
` [PATCH 5/9] scsi: ufs: Fix concurrency of error handler and other error recovery paths
` [PATCH 6/9] scsi: ufs: Recover hba runtime PM error in error handler
` [PATCH 7/9] scsi: ufs: Move dumps in IRQ handler to "
` [PATCH 8/9] scsi: ufs: Fix a racing problem btw error handler and runtime PM ops
` [PATCH 9/9] scsi: ufs: Properly release resources if a task is aborted successfully
` [PATCH v9 0/9] Fix up and simplify error recovery mechanism

[igt-dev] [PATCH i-g-t] intel-ci: Add testdisplay test to BAT
 2020-08-06 11:08 UTC 

[PATCH] ext4: Do not block RWF_NOWAIT dio write on unallocated space
 2020-08-06  5:06 UTC  (2+ messages)

[PATCH v2] ext4: lost matching-pair of trace in ext4_unlink
 2020-08-06  4:56 UTC  (2+ messages)

[PATCH] Replace HTTP links with HTTPS ones: Ext4
 2020-08-06  5:03 UTC  (2+ messages)

[PATCH v9 0/9] Fix up and simplify error recovery mechanism
 2020-08-06  4:53 UTC  (4+ messages)
` [PATCH v9 8/9] scsi: ufs: Fix a racing problem btw error handler and runtime PM ops

stable-rc/linux-5.4.y baseline: 147 runs, 3 regressions (v5.4.55-97-g1c4819817cd8)
 2020-08-06  5:01 UTC 

[PATCH v3 1/2] ext4: introduce EXT4_BG_WAS_TRIMMED to optimize trim
 2020-08-06  4:47 UTC  (2+ messages)

[PATCH v2] ext4: lost matching-pair of trace in ext4_truncate
 2020-08-06  4:53 UTC  (2+ messages)

[PATCH V2 0/2] Two patches for rnbd
 2020-08-06  4:50 UTC  (2+ messages)

stable-rc/linux-5.7.y baseline: 143 runs, 1 regressions (v5.7.12-125-g0ceaad177e51)
 2020-08-06  4:29 UTC 

drivers/usb/host/ehci.h:743:17: sparse: sparse: incorrect type in argument 1 (different address spaces)
 2020-08-06  4:44 UTC 

[PATCH for-rc] RDMA/bnxt_re: Do not add user qps to flushlist
 2020-08-06  4:45 UTC 

[PATCH] jbd2: add the missing unlock_buffer() in the error path of jbd2_write_superblock()
 2020-08-06  4:16 UTC  (2+ messages)

[PATCH 5/7] usb: dwc3: gadget: Account for extra TRB
 2020-08-06  4:03 UTC  (2+ messages)

[Intel-gfx] [PATCH 00/37] Replace obj->mm.lock with reservation_ww_class
 2020-08-06 10:44 UTC  (4+ messages)
` [Intel-gfx] [PATCH 03/37] drm/i915/gt: Free stale request on destroying the virtual engine

[PATCH] drm/amdgpu: Enable P2P dmabuf over XGMI
 2020-08-06  9:04 UTC 

[PATCH] drm/amd/powerplay: update driver if file for sienna_cichlid
 2020-08-06  9:42 UTC 

[PATCH] drm/amdgpu: use mode1 reset by default for sienna_cichlid
 2020-08-06  9:43 UTC 

[PATCH 0/6] multipath cleanups
 2020-08-06 10:58 UTC  (6+ messages)
` [PATCH 2/6] kpartx: fix -Wsign-compare error
` [PATCH 3/6] libmultipath: remove code duplication in path counting

[Buildroot] [PATCH 1/4] package/mender-artifact: bump version to 3.4.0
 2020-08-06 10:57 UTC  (3+ messages)

[igt-dev] [PATCH v3 0/2] tests/kms_pipe_crc_basic: Sanity check for CRC mismatches
 2020-08-06 18:24 UTC  (6+ messages)
` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_pipe_crc_basic: Sanity check for CRC mismatches (rev7)
` [igt-dev] [PATCH v3 1/2] tests/kms_pipe_crc_basic: Sanity check for CRC mismatches
` [igt-dev] [PATCH v1 2/2] intel-ci: Add compare CRC sanity test to BAT
  ` [igt-dev] [PATCH v2] "

[PATCH] can: grcan: fix spelling mistake "buss" -> "bus"
 2020-08-06 10:56 UTC  (2+ messages)

Revert "ARM: socfpga: Remove socfpga_sdram_apply_static_cfg()
 2020-08-06 10:53 UTC 

[PATCH] ALSA: usb: fix spelling mistake "buss" -> "bus"
 2020-08-06 10:51 UTC 

[PATCH][next][V2] staging: wfx: fix a handful of spelling mistakes
 2020-08-06 10:47 UTC 

RISC-V: crash in riscv_get_time()
 2020-08-06 10:44 UTC 

[igt-dev] [PATCH v3 0/2] tests/kms_pipe_crc_basic: Sanity check for CRC mismatches
 2020-08-06 18:34 UTC  (4+ messages)
` [igt-dev] [PATCH v3 1/2] "
` [igt-dev] [PATCH v2 2/2] intel-ci: Add compare CRC sanity test to BAT

[MPTCP] mptcp diag interface weirdness
 2020-08-06 10:41 UTC 

[PATCH] cml1: Add the option to choose the .config root dir
 2020-08-06 10:37 UTC 

Host related testcases in openbmc-test-automation
 2020-08-06 10:36 UTC 

[PATCH v2] cmd: exception: unaligned data access on RISC-V
 2020-08-06 10:34 UTC 

[PATCH][V2] macintosh: windfarm: remove detatch debug containing spelling mistakes
 2020-08-06 10:29 UTC 

[PATCH v3 0/6] mm: introduce memfd_secret system call to create "secret" memory areas
 2020-08-06 10:27 UTC  (5+ messages)
` [PATCH v3 1/6] mm: add definition of PMD_PAGE_ORDER
` [PATCH v3 3/6] mm: introduce memfd_secret system call to create "secret" memory areas

[p2pmem:nvme_spin_lock 1/1] drivers/nvme/host/core.c:3013 nvme_get_effects_log() error: double unlocked 'ctrl->lock' (orig line 2991)
 2020-08-06 10:27 UTC 

[intel-linux-intel-lts:5.4/yocto 3/3] drivers/gpu/drm/hantro_driver/hx280enc.c:393:17: sparse: sparse: incorrect type in argument 1 (different address spaces)
 2020-08-06 10:24 UTC 

[intel-linux-intel-lts:5.4/preempt-rt 8748/9103] drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c:1058:35: warning: variable 'mem' is uninitialized when used here
 2020-08-06 10:21 UTC 

fs/exfat/namei.c:1297:6: warning: Variable 'ret' is reassigned a value before the old one has been used
 2020-08-06 10:20 UTC 

[igt-dev] [PATCH v2] tests/kms_pipe_crc_basic: Sanity check for CRC mismatches
 2020-08-06 18:04 UTC  (4+ messages)
` [igt-dev] [PATCH v3 1/2] "
` [igt-dev] [PATCH v1 2/2] intel-ci: Add compare CRC sanity test to BAT

[mm/swap.c] 1ce108b11b: WARNING:at_include/linux/cpumask.h:#cpumask_test_cpu
 2020-08-06 10:14 UTC  (2+ messages)

[PATCH] drivers: usb: Fix config indentation
 2020-08-06 10:12 UTC 

[igt-dev] [PATCH] tests/kms_pipe_crc_basic: Sanity check for CRC mismatches
 2020-08-06 18:04 UTC  (2+ messages)
` [igt-dev] [PATCH v3 0/2] "

[Buildroot] [PATCH 1/1] package/smstools3: fix build with gcc 10.x
 2020-08-06  9:58 UTC 

[PATCH] configs: socfpga: add CONFIG_BOOTCOMMAND for cyclone5
 2020-08-06  9:55 UTC  (2+ messages)

[Buildroot] sysklogd 1.6: messages from klogd are logged to user facility
 2020-08-06  9:46 UTC  (3+ messages)

[PATCH 1/2] ghostscript: fix CVE-2020-15900
 2020-08-06  9:46 UTC  (2+ messages)
` [PATCH 2/2] qemu : fix CVE-2020-15863

[intel-linux-intel-lts:5.4/preempt-rt 1346/9103] sound/soc/sof/topology.c:729:40: warning: unused variable 'stream_tokens'
 2020-08-06  9:43 UTC 

[RESEND PATCH v2 00/18] Add new board: Xen guest for ARM64
 2020-08-06  9:43 UTC  (19+ messages)
` [RESEND PATCH v2 01/18] Add MIT License
` [RESEND PATCH v2 02/18] Kconfig: Introduce CONFIG_XEN
` [RESEND PATCH v2 03/18] xen: Add essential and required interface headers
` [RESEND PATCH v2 04/18] board: Introduce xenguest_arm64 board
` [RESEND PATCH v2 05/18] xen: Port Xen hypervisor related code from mini-os
` [RESEND PATCH v2 06/18] xen: Port Xen event channel driver "
` [RESEND PATCH v2 07/18] serial: serial_xen: Add Xen PV serial driver
` [RESEND PATCH v2 08/18] linux/compat.h: Add wait_event_timeout macro
` [RESEND PATCH v2 09/18] lib: sscanf: add sscanf implementation
` [RESEND PATCH v2 10/18] xen: Port Xen bus driver from mini-os
` [RESEND PATCH v2 11/18] xen: Port Xen grant table "
` [RESEND PATCH v2 12/18] xen: pvblock: Add initial support for para-virtualized block driver
` [RESEND PATCH v2 13/18] xen: pvblock: Enumerate virtual block devices
` [RESEND PATCH v2 14/18] xen: pvblock: Read XenStore configuration and initialize
` [RESEND PATCH v2 15/18] xen: pvblock: Implement front-back protocol and do IO
` [RESEND PATCH v2 16/18] xen: pvblock: Print found devices indices
` [RESEND PATCH v2 17/18] board: xen: De-initialize before jumping to Linux
` [RESEND PATCH v2 18/18] doc: xen: Add Xen guest ARM64 board documentation

[meta-oe][sumo][PATCH] systemd: fix codesonar warnings
 2020-08-06  9:37 UTC 

[PATCH] kernel-yocto: Fix bb.debug to add missing log level
 2020-08-06  9:33 UTC  (2+ messages)
` ✗ patchtest: failure for "

[Buildroot] Fix OpTee PyCryptodomex Python 2 vs 3 issue
 2020-08-06  9:30 UTC 

[LTP] [PATCH V8] syscalls: clock_settime: Add test around y2038 vulnerability
 2020-08-06  9:21 UTC  (4+ messages)

[PATCH v8 00/14] Rockchip ISP1 Driver
 2020-08-06  9:21 UTC  (7+ messages)
` [PATCH v8 05/14] media: rkisp1: add Rockchip ISP1 subdev driver

[LTP] [PATCH] [COMMITTED] safe_macros: Add SAFE_SIGPROCMASK() and SAFE_SIGWAIT()
 2020-08-06  9:19 UTC 

[PATCH 0/4] kernel/yocto: conslidated pull request
 2020-08-06  9:15 UTC  (4+ messages)
  ` [OE-core] "

[OE-core] [PATCH] libcap:upgrade 2.41 -> 2.42
 2020-08-06 21:10 UTC  (3+ messages)
` [OE-core] [PATCH] libinput:upgrade 1.15.6 -> 1.16.0
` [OE-core] [PATCH] python3-setuptools:upgrade 49.2.0 -> 49.2.1

[ebiggers:wip-fscrypt 13/20] fs/crypto/keysetup.c:490 fscrypt_setup_encryption_info() warn: passing a valid pointer to 'PTR_ERR'
 2020-08-06  8:45 UTC 

[igt-dev] [PATCH v2] tests: use an empty brace initializer
 2020-08-06  8:43 UTC  (3+ messages)


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.