All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2021-01-07 21:58:45 to 2021-01-07 22:38:25 UTC [more...]

[PULL 00/66] MIPS patches for 2021-01-07
 2021-01-07 22:34 UTC  (91+ messages)
` [PULL 01/66] target/mips: Add CP0 Config0 register definitions for MIPS3 ISA
` [PULL 02/66] target/mips: Replace CP0_Config0 magic values by proper definitions
` [PULL 03/66] target/mips/addr: Add translation helpers for KSEG1
` [PULL 04/66] target/mips/mips-defs: Remove USE_HOST_FLOAT_REGS comment
` [PULL 05/66] target/mips/mips-defs: Reorder CPU_MIPS5 definition
` [PULL 06/66] target/mips/mips-defs: Rename CPU_MIPSxx Release 1 as CPU_MIPSxxR1
` [PULL 07/66] target/mips/mips-defs: Introduce CPU_MIPS64 and cpu_type_is_64bit()
` [PULL 08/66] hw/mips/boston: Check 64-bit support with cpu_type_is_64bit()
` [PULL 09/66] target/mips/mips-defs: Use ISA_MIPS32 definition to check Release 1
` [PULL 10/66] target/mips/mips-defs: Use ISA_MIPS32R2 definition to check Release 2
` [PULL 11/66] target/mips/mips-defs: Use ISA_MIPS32R3 definition to check Release 3
` [PULL 12/66] target/mips/mips-defs: Use ISA_MIPS32R5 definition to check Release 5
` [PULL 13/66] target/mips/mips-defs: Use ISA_MIPS32R6 definition to check Release 6
` [PULL 14/66] target/mips/mips-defs: Rename ISA_MIPS32 as ISA_MIPS_R1
` [PULL 15/66] target/mips/mips-defs: Rename ISA_MIPS32R2 as ISA_MIPS_R2
` [PULL 16/66] target/mips/mips-defs: Rename ISA_MIPS32R3 as ISA_MIPS_R3
` [PULL 17/66] target/mips/mips-defs: Rename ISA_MIPS32R5 as ISA_MIPS_R5
` [PULL 18/66] target/mips/mips-defs: Rename ISA_MIPS32R6 as ISA_MIPS_R6
` [PULL 19/66] target/mips: Inline cpu_state_reset() in mips_cpu_reset()
` [PULL 20/66] target/mips: Extract FPU helpers to 'fpu_helper.h'
` [PULL 21/66] target/mips: Add !CONFIG_USER_ONLY comment after #endif
` [PULL 22/66] target/mips: Remove consecutive CONFIG_USER_ONLY ifdefs
` [PULL 23/66] target/mips: Move common helpers from helper.c to cpu.c
` [PULL 24/66] target/mips: Rename helper.c as tlb_helper.c
` [PULL 25/66] target/mips: Fix code style for checkpatch.pl
` [PULL 26/66] target/mips: Move mmu_init() functions to tlb_helper.c
` [PULL 27/66] target/mips: Rename translate_init.c as cpu-defs.c
` [PULL 28/66] target/mips/translate: Extract DisasContext structure
` [PULL 29/66] target/mips/translate: Add declarations for generic code
` [PULL 30/66] target/mips: Replace gen_exception_err(err=0) by gen_exception_end()
` [PULL 32/66] target/mips: Declare generic FPU functions in 'translate.h'
` [PULL 33/66] target/mips: Extract FPU specific definitions to translate.h
` [PULL 34/66] target/mips: Only build TCG code when CONFIG_TCG is set
` [PULL 35/66] target/mips/translate: Extract decode_opc_legacy() from decode_opc()
` [PULL 36/66] target/mips/translate: Expose check_mips_64() to 32-bit mode
` [PULL 37/66] target/mips: Introduce ase_msa_available() helper
` [PULL 38/66] target/mips: Simplify msa_reset()
` [PULL 39/66] target/mips: Use CP0_Config3 to set MIPS_HFLAG_MSA
` [PULL 40/66] target/mips: Simplify MSA TCG logic
` [PULL 41/66] target/mips: Remove now unused ASE_MSA definition
` [PULL 42/66] target/mips: Alias MSA vector registers on FPU scalar registers
` [PULL 43/66] target/mips: Extract msa_translate_init() from mips_tcg_init()
` [PULL 44/66] target/mips: Remove CPUMIPSState* argument from gen_msa*() methods
` [PULL 45/66] target/mips: Explode gen_msa_branch() as gen_msa_BxZ_V/BxZ()
` [PULL 46/66] target/mips: Move msa_reset() to msa_helper.c
` [PULL 47/66] target/mips: Extract MSA helpers from op_helper.c
` [PULL 48/66] target/mips: Extract MSA helper definitions
` [PULL 49/66] target/mips: Declare gen_msa/_branch() in 'translate.h'
` [PULL 51/66] target/mips: Pass TCGCond argument to MSA gen_check_zero_element()
` [PULL 52/66] target/mips: Introduce decode tree bindings for MSA ASE
` [PULL 53/66] target/mips: Use decode_ase_msa() generated from decodetree
` [PULL 54/66] target/mips: Extract LSA/DLSA translation generators
` [PULL 55/66] target/mips: Introduce decodetree helpers for MSA LSA/DLSA opcodes
` [PULL 56/66] target/mips: Introduce decodetree helpers for Release6 "
` [PULL 57/66] target/mips: Remove now unreachable LSA/DLSA opcodes code
` [PULL 58/66] target/mips: Convert Rel6 Special2 opcode to decodetree
` [PULL 59/66] target/mips: Convert Rel6 COP1X "
` [PULL 60/66] target/mips: Convert Rel6 CACHE/PREF opcodes "
` [PULL 61/66] target/mips: Convert Rel6 LWL/LWR/SWL/SWR "
` [PULL 62/66] target/mips: Convert Rel6 LWLE/LWRE/SWLE/SWRE "
` [PULL 63/66] target/mips: Convert Rel6 LDL/LDR/SDL/SDR "
` [PULL 64/66] target/mips: Convert Rel6 LLD/SCD "
` [PULL 65/66] target/mips: Convert Rel6 LL/SC "
` [PULL 66/66] docs/system: Remove deprecated 'fulong2e' machine alias

[PATCH v3 00/13] io_uring: buffer registration enhancements
 2021-01-07 22:33 UTC  (9+ messages)
` [PATCH v3 08/13] io_uring: implement fixed buffers registration similar to fixed files

[RFC PATCH v2 2/2] fs/task_mmu: acquire mmap_lock for write on soft-dirty cleanup
 2021-01-07 22:37 UTC  (18+ messages)
` [PATCH 0/2] page_count can't be used to decide when wp_page_copy
  ` [PATCH 2/2] mm: soft_dirty: userfaultfd: introduce wrprotect_tlb_flush_pending

[PATCH net-next 0/4] udp_tunnel_nic: post conversion cleanup
 2021-01-07 22:34 UTC  (2+ messages)

[PATCH] x86: efi: avoid BUILD_BUG_ON() for non-constant p4d_index
 2021-01-07 22:34 UTC 

[PATCH] drm/msm: Fix MSM_INFO_GET_IOVA with carveout
 2021-01-07 22:36 UTC  (4+ messages)

+ linux-next-git-rejects.patch added to -mm tree
 2021-01-07 22:33 UTC 

[merged] percpu_ref-dump-mem_dump_obj-info-upon-reference-count-underflow.patch removed from -mm tree
 2021-01-07 22:32 UTC 

[PATCH v3 0/6] Add support for ECDSA image signing (with test)
 2021-01-07 22:33 UTC  (7+ messages)
` [PATCH v3 1/6] lib: Rename rsa-checksum.c to hash-checksum.c
` [PATCH v3 2/6] lib/rsa: Make fdt_add_bignum() available outside of RSA code
` [PATCH v3 3/6] lib: Add support for ECDSA image signing
` [PATCH v3 4/6] doc: signature.txt: Document devicetree format for ECDSA keys
` [PATCH v3 5/6] test/py: Add pycryptodomex to list of required pakages
` [PATCH v3 6/6] test/py: ecdsa: Add test for mkimage ECDSA signing

[Buildroot] [PATCH] package/libiec61850: new package
 2021-01-07 22:33 UTC  (2+ messages)

[merged] mm-add-mem_dump_obj-to-print-source-of-memory-block.patch removed from -mm tree
 2021-01-07 22:32 UTC 

[merged] mm-make-mem_dump_obj-handle-null-and-zero-sized-pointers.patch removed from -mm tree
 2021-01-07 22:32 UTC 

[merged] mm-make-mem_dump_obj-handle-vmalloc-memory.patch removed from -mm tree
 2021-01-07 22:32 UTC 

[merged] mm-make-mem_obj_dump-vmalloc-dumps-include-start-and-length.patch removed from -mm tree
 2021-01-07 22:32 UTC 

[merged] rcu-make-call_rcu-print-mem_dump_obj-info-for-double-freed-callback.patch removed from -mm tree
 2021-01-07 22:32 UTC 

[PATCH v2 0/6] brcmstb: add EP regulators and panic handler
 2021-01-07 22:31 UTC  (6+ messages)
` [PATCH v2 1/6] dt-bindings: PCI: Add bindings for Brcmstb EP voltage regulators

[Buildroot] [git commit] package/libiec61850: new package
 2021-01-07 22:32 UTC 

[RFC V1 RESEND 0/6] Introduce dynamic allocation/freeing of MSI-X vectors
 2021-01-07 22:30 UTC  (4+ messages)
` [RFC V1 RESEND 2/6] PCI/MSI: Dynamic allocation of MSI-X vectors by group

[PATCH v13 0/4] SELinux support for anonymous inodes and UFFD
 2021-01-07 22:30 UTC  (5+ messages)
` [PATCH v13 3/4] selinux: teach SELinux about anonymous inodes

Aarch64 EXT4FS inode checksum failures - seems to be weak memory ordering issues
 2021-01-07 22:27 UTC  (14+ messages)

[PATCH] x86/kernel/cpu/resctrl: replace 'of->kn->priv' with of_rft()
 2021-01-07 22:29 UTC  (2+ messages)

[Buildroot] [git commit] DEVELOPERS: add myself for php
 2021-01-07 22:27 UTC  (3+ messages)

[PATCH v2 00/13] HID: new driver for PS5 'DualSense' controller
 2021-01-07 22:26 UTC  (9+ messages)
` [PATCH v2 10/13] HID: playstation: add microphone mute support for DualSense
` [PATCH v2 11/13] HID: playstation: add DualSense player LEDs support
` [PATCH v2 12/13] HID: playstation: DualSense set LEDs to default player id
` [PATCH v2 13/13] HID: playstation: report DualSense hardware and firmware version

[PATCH v2 0/6] kernel-shark: Visualization plugin tools
 2021-01-07 22:26 UTC  (6+ messages)
` [PATCH v2 2/6] kernel-shark: Add kshark_data_container to libkshark
` [PATCH v2 3/6] kernel-shark: Add KS_DEFINE_PLUGIN_CONTEXT macro

[Buildroot] [PATCH 1/2] package/fluidsynth: add sdl2 optional dependency
 2021-01-07 22:25 UTC  (4+ messages)
` [Buildroot] [PATCH 2/2] package/fluidsynth: add systemd "

[PATCH 00/18] net: iosm: PCIe Driver for Intel M.2 Modem
 2021-01-07 22:23 UTC  (3+ messages)
` [PATCH 17/18] net: iosm: readme file

[Buildroot] [PATCH] package/nodejs: security bump to version 12.20.1
 2021-01-07 22:24 UTC 

[Buildroot] [git commit] package/fluidsynth: add systemd optional dependency
 2021-01-07 22:24 UTC 

[PATCH RFC v2 0/5] Add support for ECDSA image signing (with test)
 2021-01-07 22:24 UTC  (6+ messages)
` [PATCH RFC v2 3/5] lib: Add support for ECDSA image signing

[Buildroot] [git commit] package/fluidsynth: add sdl2 optional dependency
 2021-01-07 22:24 UTC 

[Buildroot] [PATCH] package/swupdate: note init script tokenizing limitation
 2021-01-07 22:23 UTC  (2+ messages)

[Bug 1910586] [NEW] SD card size constraint conceptually wrong
 2021-01-07 22:13 UTC  (4+ messages)

[Intel-gfx] [RFC] drm/i915/pps: Add PPS power domain
 2021-01-07 22:21 UTC  (2+ messages)
` [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pps: Add PPS power domain (rev3)

[Buildroot] [git commit] package/swupdate: note init script tokenizing limitation
 2021-01-07 22:21 UTC 

[SPDK] Re: Could not write synchronously to blobfs
 2021-01-07 22:21 UTC 

v5.10.1 xfs deadlock
 2021-01-07 22:19 UTC  (9+ messages)
` [PATCH] xfs: Wake CIL push waiters more reliably

[Buildroot] [PATCH] package/luasyslog: bump to version 2.2.0 (fork)
 2021-01-07 22:20 UTC  (2+ messages)

[dm-devel] [PATCH RFC 0/7] dm: add support of iopoll
 2021-01-07 22:18 UTC  (4+ messages)
` [dm-devel] [PATCH RFC 6/7] block: track cookies of split bios for bio-based device
  `  "

[Buildroot] [git commit] package/luasyslog: bump to version 2.2.0 from a fork
 2021-01-07 22:19 UTC 

[PATCH] fs: process fput task_work with TWA_SIGNAL
 2021-01-07 22:17 UTC  (2+ messages)

[Intel-gfx] [PATCH 1/5] drm/i915/selftests: Skip unstable timing measurements
 2021-01-07 22:17 UTC  (5+ messages)
` [Intel-gfx] [PATCH 2/5] drm/i915/gt: Restore ce->signal flush before releasing virtual engine
` [Intel-gfx] [PATCH 3/5] drm/i915/gt: Only retire on the last breadcrumb if the last request
` [Intel-gfx] [PATCH 4/5] drm/i915/gt: Only disable preemption on gen8 render engines
` [Intel-gfx] [PATCH 5/5] drm/i915/gt: Disable arbitration on no-preempt requests

[PATCH] mmc: sdhci-brcmstb: Fix mmc timeout errors on S5 suspend
 2021-01-07 22:15 UTC  (2+ messages)

pull-request: bpf 2021-01-07
 2021-01-07 22:15 UTC 

[PATCH 0/3] Revert "drm/amd/display: Expose new CRC window property" and changes associated with this commit
 2021-01-07 22:16 UTC  (3+ messages)

[poky][PATCH] bitbake: remove /usr from pseudo ignore paths
 2021-01-07 22:16 UTC  (2+ messages)
    ` [OE-core] "

[PATCH] Revert "drm/amd/display: Fixed Intermittent blue screen on OLED panel"
 2021-01-07 22:15 UTC  (2+ messages)

frequent frozen desktops since upgrade to kernel 5.9
 2021-01-07 22:15 UTC  (2+ messages)

[PATCH] ARM: dts: arria10: add PMU node
 2021-01-07 22:14 UTC 

BUG: IPv4 conntrack reassembles forwarded packets
 2021-01-07 22:14 UTC  (3+ messages)
` [PATCH net 0/3] net: fix netfilter defrag/ip tunnel pmtu blackhole

[Buildroot] [PATCH 1/3] package/environment-setup: fix spelling of the script file in the manual
 2021-01-07 22:13 UTC  (3+ messages)
` [Buildroot] [PATCH 4/4] "

Raid1 of a slow hdd and a fast(er) SSD, howto to prioritize the SSD?
 2021-01-07 22:11 UTC  (4+ messages)
  `  "

[PATCH V2 0/4] x86/resctrl: Fix a few issues in moving a task to a resource group
 2021-01-07 22:11 UTC  (4+ messages)
` [PATCH V2 1/4] x86/resctrl: Use IPI instead of task_work_add() to update PQR_ASSOC MSR

[Outreachy] Internship blog 2020 post #3
 2021-01-07 22:10 UTC  (2+ messages)
  ` [Wireshark-dev] "

[PATCH v2] media: v4l2-async: Add waiting subdevices debugfs
 2021-01-07 22:08 UTC  (5+ messages)

[Buildroot] [git commit] package/environment-setup: fix spelling of the script file in the manual
 2021-01-07 22:09 UTC 

[PATCH 1/1] v4l: fwnode: v4l2_async_notifier_parse_fwnode_endpoints is deprecated
 2021-01-07 22:07 UTC  (3+ messages)

[PATCH v3] btrfs: shrink delalloc pages instead of full inodes
 2021-01-07 22:08 UTC 

[PATCH RESEND v8 0/4] input: elants: Support Asus TF300T and Nexus 7 touchscreens
 2021-01-07 22:06 UTC  (8+ messages)
` [PATCH RESEND v8 2/4] input: elants: support old touch report format

[SPDK] Could not write synchronously to blobfs
 2021-01-07 22:06 UTC 

[PATCH 00/13] lazytime fixes and cleanups
 2021-01-07 22:05 UTC  (5+ messages)
` [PATCH 11/13] fs: add a lazytime_expired method
      ` [f2fs-dev] "

[PATCH v3 0/3] Support wakeup methods of Atmel maXTouch controllers
 2021-01-07 22:05 UTC  (6+ messages)

[Intel-gfx] [PATCH] drm/i915/gt: Limit VFE threads based on GT
 2021-01-07 22:04 UTC  (4+ messages)

[pull request][net 00/11] mlx5 fixes 2021-01-07
 2021-01-07 22:04 UTC  (3+ messages)
` [net 04/11] net/mlx5e: CT: Use per flow counter when CT flow accounting is enabled

[Buildroot] [git commit] package/freescale-imx/firmware-imx/Config.in: install imx6q binaries for IM6UL platform
 2021-01-07 22:05 UTC 

[PATCH 3/6] hugetlb: add free page reporting support
 2021-01-07 22:04 UTC  (2+ messages)

PROBLEM: Firmware loader fallback mechanism no longer works with sendfile
 2021-01-07 22:03 UTC  (5+ messages)

[Buildroot] [PATCH 1/1] package/freescale-imx/firmware-imx/Config.in: install imx6q binaries for IM6UL platform
 2021-01-07 22:04 UTC  (2+ messages)

[PATCH v2 00/24] target/arm: enforce alignment
 2021-01-07 22:02 UTC  (4+ messages)
` [PATCH v2 24/24] target/arm: Enforce alignment for sve unpredicated LDR/STR

[Buildroot] [git commit] package/coremark-pro: new package
 2021-01-07 22:01 UTC 

[Buildroot] [git commit] package/coremark: new package
 2021-01-07 22:01 UTC 

[PATCH 1/3] bash: Set HEREDOC_PIPESIZE deterministically
 2021-01-07 22:01 UTC  (3+ messages)
` [PATCH 2/3] qemu: Fix mingw builds
` [PATCH 3/3] ppp: Fix reproducibility issue

[Buildroot] [PATCH v2 1/2] package/coremark: new package
 2021-01-07 22:00 UTC  (3+ messages)
` [Buildroot] [PATCH v2 2/2] package/coremark-pro: "

[PATCH v4 0/6] Additional NPCM7xx devices
 2021-01-07 21:58 UTC  (4+ messages)
` [PATCH v4 3/6] hw/adc: Add an ADC module for NPCM7XX


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.