public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-03-27 19:44:48 to 2025-03-27 22:27:09 UTC [more...]

[GIT PULL] regmap updates for v6.15
 2025-03-27 22:26 UTC 

[PATCH 0/3] Additional fixes for dma coherent allocator
 2025-03-27 22:26 UTC  (5+ messages)
` [PATCH 1/3] rust: dma: be consistent in using the `coherent` nomenclature
` [PATCH 2/3] rust: dma: convert the read/write macros to return Result

[PATCH] platform/x86: amd: Add ISP platform info
 2025-03-27 22:25 UTC  (5+ messages)

[PATCH v4 00/35] GNR retirement latencies, topic and metric updates
 2025-03-27 22:23 UTC  (36+ messages)
` [PATCH v4 01/35] perf vendor events: Update alderlake events/metrics
` [PATCH v4 02/35] perf vendor events: Update AlderlakeN events/metrics
` [PATCH v4 03/35] perf vendor events: Update arrowlake events/metrics
` [PATCH v4 04/35] perf vendor events: Update bonnell events
` [PATCH v4 05/35] perf vendor events: Update broadwell metrics
` [PATCH v4 06/35] perf vendor events: Update broadwellde metrics
` [PATCH v4 07/35] perf vendor events: Update broadwellx metrics
` [PATCH v4 08/35] perf vendor events: Update cascadelakex events/metrics
` [PATCH v4 09/35] perf vendor events: Update clearwaterforest events
` [PATCH v4 10/35] perf vendor events: Update elkhartlake events
` [PATCH v4 11/35] perf vendor events: Update emeraldrapids events/metrics
` [PATCH v4 12/35] perf vendor events: Update grandridge events/metrics
` [PATCH v4 13/35] perf vendor events: Add graniterapids retirement latencies
` [PATCH v4 14/35] perf vendor events: Update haswell metrics
` [PATCH v4 15/35] perf vendor events: Update haswellx metrics
` [PATCH v4 16/35] perf vendor events: Update icelake events/metrics
` [PATCH v4 17/35] perf vendor events: Update icelakex events/metrics
` [PATCH v4 18/35] perf vendor events: Update ivybridge metrics
` [PATCH v4 19/35] perf vendor events: Update ivytown metrics
` [PATCH v4 20/35] perf vendor events: Update jaketown metrics
` [PATCH v4 21/35] perf vendor events: Update lunarlake events/metrics
` [PATCH v4 22/35] perf vendor events: Update meteorlake events/metrics
` [PATCH v4 23/35] perf vendor events: Update nehalemep events
` [PATCH v4 24/35] perf vendor events: Update nehalemex events
` [PATCH v4 25/35] perf vendor events: Update rocketlake events/metrics
` [PATCH v4 26/35] perf vendor events: Update sandybridge metrics
` [PATCH v4 27/35] perf vendor events: Update sapphirerapids events/metrics
` [PATCH v4 28/35] perf vendor events: Update sierraforest events/metrics
` [PATCH v4 29/35] perf vendor events: Update skylake metrics
` [PATCH v4 30/35] perf vendor events: Update skylakex events/metrics
` [PATCH v4 31/35] perf vendor events: Update snowridgex events
` [PATCH v4 32/35] perf vendor events: Update tigerlake metrics
` [PATCH v4 33/35] perf vendor events: Update westmereep-dp events
` [PATCH v4 34/35] "
` [PATCH v4 35/35] "

[PATCH 00/41] Simplify, reorganize and clean up the x86 INT3 based batch-patching code (alternative.c)
 2025-03-27 22:19 UTC  (43+ messages)
` [PATCH 01/41] x86/alternatives: Rename 'struct bp_patching_desc' to 'struct int3_patching_desc'
` [PATCH 02/41] x86/alternatives: Rename 'bp_refs' to 'int3_refs'
` [PATCH 03/41] x86/alternatives: Rename 'text_poke_bp_batch()' to 'text_poke_int3_batch()'
` [PATCH 04/41] x86/alternatives: Rename 'text_poke_bp()' to 'text_poke_int3()'
` [PATCH 05/41] x86/alternatives: Rename 'poke_int3_handler()' to 'text_poke_int3_handler()'
` [PATCH 06/41] x86/alternatives: Rename 'poking_mm' to 'text_poke_mm'
` [PATCH 07/41] x86/alternatives: Rename 'text_poke_addr' to 'text_poke_int3_addr'
` [PATCH 08/41] x86/alternatives: Rename 'poking_addr' to 'text_poke_addr'
` [PATCH 09/41] x86/alternatives: Rename 'bp_desc' to 'int3_desc'
` [PATCH 10/41] x86/alternatives: Remove duplicate 'text_poke_early()' prototype
` [PATCH 11/41] x86/alternatives: Update comments in int3_emulate_push()
` [PATCH 12/41] x86/alternatives: Remove the confusing, inaccurate & unnecessary 'temp_mm_state_t' abstraction
` [PATCH 13/41] x86/alternatives: Rename 'text_poke_flush()' to 'text_poke_int3_flush()'
` [PATCH 14/41] x86/alternatives: Rename 'text_poke_finish()' to 'text_poke_int3_finish()'
` [PATCH 15/41] x86/alternatives: Rename 'text_poke_queue()' to 'text_poke_int3_queue()'
` [PATCH 16/41] x86/alternatives: Rename 'text_poke_loc_init()' to 'text_poke_int3_loc_init()'
` [PATCH 17/41] x86/alternatives: Rename 'struct text_poke_loc' to 'struct text_poke_int3_loc'
` [PATCH 18/41] x86/alternatives: Rename 'struct int3_patching_desc' to 'struct text_poke_int3_vec'
` [PATCH 19/41] x86/alternatives: Rename 'int3_desc' to 'int3_vec'
` [PATCH 20/41] x86/alternatives: Add text_mutex) assert to text_poke_int3_flush()
` [PATCH 21/41] x86/alternatives: Assert that text_poke_int3_handler() can only ever handle 'tp_vec[]' based requests
` [PATCH 22/41] x86/alternatives: Use non-inverted logic instead of 'tp_order_fail()'
` [PATCH 23/41] x86/alternatives: Remove the 'addr == NULL means forced-flush' hack from text_poke_int3_finish()/text_poke_int3_flush()/tp_addr_ordered()
` [PATCH 24/41] x86/alternatives: Simplify text_poke_int3() by using tp_vec and existing APIs
` [PATCH 25/41] x86/alternatives: Assert input parameters in text_poke_int3_batch()
` [PATCH 26/41] x86/alternatives: Introduce 'struct text_poke_int3_array' and move tp_vec and tp_vec_nr to it
` [PATCH 27/41] x86/alternatives: Remove the tp_vec indirection
` [PATCH 28/41] x86/alternatives: Rename 'try_get_desc()' to 'try_get_tp_array()'
` [PATCH 29/41] x86/alternatives: Rename 'put_desc()' to 'put_tp_array()'
` [PATCH 30/41] x86/alternatives: Simplify try_get_tp_array()
` [PATCH 31/41] x86/alternatives: Simplify text_poke_int3_handler()
` [PATCH 32/41] x86/alternatives: Simplify text_poke_int3_batch()
` [PATCH 33/41] x86/alternatives: Rename 'text_poke_int3_batch()' to 'text_poke_int3_batch_process()'
` [PATCH 34/41] x86/alternatives: Rename 'int3_refs' to 'tp_array_refs'
` [PATCH 35/41] x86/alternatives: Move the tp_array manipulation into text_poke_int3_loc_init() and rename it to text_poke_int3_loc_add()
` [PATCH 36/41] x86/alternatives: Remove the mixed-patching restriction on text_poke_int3()
` [PATCH 37/41] x86/alternatives: Rename 'text_poke_int3()' to 'text_poke_int3_now()'
` [PATCH 38/41] x86/alternatives: Add documentation for text_poke_int3_queue()
` [PATCH 39/41] x86/alternatives: Move tp_array completion from text_poke_int3_finish() and text_poke_int3_flush() to text_poke_int3_batch_process()
` [PATCH 40/41] x86/alternatives: Rename 'text_poke_sync()' to 'text_poke_sync_each_cpu()'
` [PATCH 41/41] x86/alternatives: Simplify tp_addr_ordered()

[syzbot] [netfs?] INFO: task hung in netfs_unbuffered_write_iter
 2025-03-27 22:18 UTC  (3+ messages)

[PATCH v7 0/7] rust: reduce `as` casts, enable related lints
 2025-03-27 22:17 UTC  (10+ messages)
` [PATCH v7 7/7] rust: enable `clippy::ref_as_ptr` lint

[PATCH 0/2] mailbox: Add support for bcm74110 mailbox
 2025-03-27 22:16 UTC  (3+ messages)
` [PATCH 1/2] "
` [PATCH 2/2] dt-bindings: mailbox: Add devicetree binding for bcm74110 mbox

[PATCH v3] platform/x86: Add AMD ISP platform config for OV05C10
 2025-03-27 22:11 UTC 

[PATCH] rust: clarify the language unstable features in use
 2025-03-27 22:13 UTC  (2+ messages)

[PATCH v8 00/16] Enable CXL PCIe port protocol error handling and logging
 2025-03-27 22:04 UTC  (2+ messages)

[PATCH] iomap: Fix conflicting values of iomap flags
 2025-03-27 22:04 UTC  (2+ messages)

commit 7ffb791423c7 breaks steam game
 2025-03-27 22:03 UTC  (11+ messages)

[PATCH 1/2] binder: Refactor binder_node print synchronization
 2025-03-27 22:02 UTC  (2+ messages)
` [PATCH 2/2] binder: Create safe versions of binder log files

NULL pointer dereference in cpufreq_update_limits(?) under Xen PV dom0 - regression in 6.13
 2025-03-27 22:02 UTC  (4+ messages)

[PATCH 00/27] Improve ABI documentation generation
 2025-03-27 21:58 UTC  (2+ messages)
` [f2fs-dev] "

[RFC v2 00/38] Improve ABI documentation generation
 2025-03-27 21:58 UTC  (2+ messages)
` [f2fs-dev] "

[PATCH RFC 00/10] Improve ABI documentation generation
 2025-03-27 21:58 UTC  (2+ messages)
` [f2fs-dev] "

[GIT PULL] f2fs update for 6.15-rc1
 2025-03-27 21:58 UTC  (3+ messages)
` [f2fs-dev] "

[PATCH v1 1/2] Bluetooth: btnxpuart: Add msleep() after changing the baudrate
 2025-03-27 21:52 UTC  (2+ messages)

[PATCH v4 1/1] scsi: ufs: core: add device level exception support
 2025-03-27 21:45 UTC  (7+ messages)

[PATCH 0/2] Clear AMD's microcode cache on load failure
 2025-03-27 21:44 UTC  (5+ messages)
` [PATCH 1/2] x86/microcode/AMD: Fix __apply_microcode_amd()'s return value
` [PATCH 2/2] x86/microcode/AMD: Clean the cache if update did not load microcode

[syzbot] [mm?] [fs?] BUG: sleeping function called from invalid context in folio_mc_copy
 2025-03-27 21:42 UTC  (2+ messages)

[PATCH] tracing: Use _text and the kernel offset in last_boot_info
 2025-03-27 21:38 UTC  (2+ messages)

[PATCH v7 09/28] landlock: Add AUDIT_LANDLOCK_ACCESS and log ptrace denials
 2025-03-27 21:38 UTC  (2+ messages)

[PATCH 1/1] genirq/msi: Dynamic remove/add stroage adapter hits EEH
 2025-03-27 21:36 UTC  (6+ messages)

[PATCH v4] drm/syncobj: Extend EXPORT_SYNC_FILE for timeline syncobjs
 2025-03-27 21:36 UTC 

[PATCH v2] x86/i8253: fix possible deadlock when turning off the PIT
 2025-03-27 21:36 UTC  (6+ messages)

kernel/sched/isolation.c:50: undefined reference to `sched_numa_find_closest'
 2025-03-27 21:35 UTC  (3+ messages)

[PATCH] tracing: Verify event formats that have "%*p.."
 2025-03-27 21:35 UTC  (6+ messages)

[PATCH] tpm: Make chip->{status,cancel,req_canceled} opt
 2025-03-27 21:29 UTC  (8+ messages)

[PATCH RESEND v2] PCI/MSI: Fix x86 VMs crash due to dereferencing NULL MSI domain
 2025-03-27 21:29 UTC  (3+ messages)

[PATCH 0/4] Enable automatic SVN updates for SGX enclaves
 2025-03-27 21:28 UTC  (19+ messages)
` [PATCH 1/4] x86/sgx: Add total number of EPC pages
` [PATCH 2/4] x86/sgx: Change counter sgx_nr_free_pages -> sgx_nr_used_pages
` [PATCH 4/4] x86/sgx: Implement ENCLS[EUPDATESVN] and opportunistically call it during first EPC page alloc

[PATCH v5 0/5] media: uvcvideo: Implement Granular Power Saving
 2025-03-27 21:27 UTC  (7+ messages)
` [PATCH v5 3/5] media: uvcvideo: Increase/decrease the PM counter per IOCTL

[PATCH v5] rust: kernel: add support for bits/genmask macros
 2025-03-27 21:27 UTC  (2+ messages)

[PATCH v4 0/4] iio: adc: ad4000: Add SPI offload support
 2025-03-27 21:25 UTC  (5+ messages)
` [PATCH v4 1/4] iio: adc: ad4000: Add support for SPI offload
` [PATCH v4 2/4] Documentation: iio: ad4000: Add new supported parts
` [PATCH v4 3/4] Documentation: iio: ad4000: Add IIO Device characteristics section
` [PATCH v4 4/4] Documentation: iio: ad4000: Describe offload support

[PATCH v3 0/2] clk: sophgo: add SG2044 clock controller support
 2025-03-27 21:21 UTC  (11+ messages)
` [PATCH v3 1/2] dt-bindings: clock: sophgo: add clock controller for SG2044

[PATCH 21/22] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config()
 2025-03-27 21:21 UTC  (4+ messages)
` [tip: objtool/urgent] objtool, pwm: mediatek: Prevent theoretical "

[PATCH 0/5] Improve WARN_ON_ONCE() output by adding the condition string
 2025-03-27 21:18 UTC  (6+ messages)
` [PATCH 4/5] bugs/x86: Augment warnings output by concatenating 'cond_str' with the regular __FILE__ string in _BUG_FLAGS()

[PATCH 00/14] Improve WARN_ON_ONCE() output by adding the condition string
 2025-03-27 21:14 UTC  (4+ messages)
` [PATCH 13/14] bugs/sh: Concatenate 'cond_str' with '__FILE__' in __WARN_FLAGS(), to extend WARN_ON/BUG_ON output

[PATCH v4 0/3] fs: introduce getfsxattrat and setfsxattrat syscalls
 2025-03-27 21:13 UTC  (7+ messages)

[PATCH] spi: fsl-qspi: use devm function instead of driver remove
 2025-03-27 21:11 UTC  (2+ messages)

[PATCH] ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path
 2025-03-27 21:11 UTC  (2+ messages)

[PATCH v2] binder: use buffer offsets in debug logs
 2025-03-27 21:11 UTC  (5+ messages)

[PATCH] drm/bridge: anx7625: Remove redundant 'flush_workqueue()' calls
 2025-03-27 21:09 UTC  (2+ messages)

[GIT PULL] ring-buffer: Updates for v6.15
 2025-03-27 21:10 UTC 

[PATCH net v1] net: Fix tuntap uninitialized value
 2025-03-27 21:08 UTC  (2+ messages)

[PATCH] EDAC/amd64: Fix size calculation for Non-Power-of-Two DIMMs
 2025-03-27 21:03 UTC 

[RFC PATCH V3 00/43] rv64ilp32_abi: Build CONFIG_64BIT kernel-self with ILP32 ABI
 2025-03-27 21:06 UTC  (2+ messages)

[PATCH v6 0/5] media: uvcvideo: Implement Granular Power Saving
 2025-03-27 21:05 UTC  (6+ messages)
` [PATCH v6 1/5] media: uvcvideo: Keep streaming state in the file handle
` [PATCH v6 2/5] media: uvcvideo: Create uvc_pm_(get|put) functions
` [PATCH v6 3/5] media: uvcvideo: Increase/decrease the PM counter per IOCTL
` [PATCH v6 4/5] media: uvcvideo: Make power management granular
` [PATCH v6 5/5] media: uvcvideo: Do not turn on the camera for some ioctls

[syzbot] [btrfs?] kernel BUG in write_all_supers
 2025-03-27 21:04 UTC  (3+ messages)

[PATCH] x86/alternatives: remove false sharing in poke_int3_handler()
 2025-03-27 20:56 UTC  (11+ messages)

[PATCH v3 0/4] Add UFS support for SM8750
 2025-03-27 20:54 UTC  (5+ messages)
` [PATCH v3 1/4] dt-bindings: ufs: qcom: Document the SM8750 UFS Controller
` [PATCH v3 2/4] arm64: dts: qcom: sm8750: Add UFS nodes for SM8750 SoC
` [PATCH v3 3/4] arm64: dts: qcom: sm8750: Add UFS nodes for SM8750 MTP
` [PATCH v3 4/4] arm64: dts: qcom: sm8750: Add UFS nodes for SM8750 QRD board

[PATCH v3] drm/panel/sharp-ls043t1le01: Use _multi variants
 2025-03-27 20:54 UTC  (2+ messages)

[GIT PULL] ext4 updates for v6.15-rc1
 2025-03-27 20:49 UTC  (2+ messages)

[GIT PULL] jfs updates for v6.14
 2025-03-27 20:48 UTC  (2+ messages)

[GIT PULL] bcachefs for 6.15, v2
 2025-03-27 20:48 UTC  (2+ messages)

[GIT PULL] Btrfs updates for 6.15
 2025-03-27 20:48 UTC  (2+ messages)

[GIT PULL] erofs updates for 6.15-rc1
 2025-03-27 20:48 UTC  (2+ messages)

[GIT PULL] dlm updates for 6.15
 2025-03-27 20:48 UTC  (2+ messages)

[GIT PULL] gfs2 changes for 6.15
 2025-03-27 20:48 UTC  (2+ messages)

[tip:timers/core] [posix] 1535cb8028: stress-ng.epoll.ops_per_sec 36.2% regression
 2025-03-27 20:45 UTC  (15+ messages)

[PATCH v3 00/12] media: imx8: add camera support
 2025-03-27 20:37 UTC  (19+ messages)
` [PATCH v3 03/12] media: dt-bindings: Add binding doc for i.MX8QXP and i.MX8QM ISI
` [PATCH v3 04/12] media: nxp: imx8-isi: Allow num_sources to be greater than num_sink
` [PATCH v3 05/12] media: imx8-isi: Add support for i.MX8QM and i.MX8QXP
` [PATCH v3 07/12] media: imx8mq-mipi-csi2: Add imx8mq_plat_data for different compatible strings
` [PATCH v3 08/12] media: imx8mq-mipi-csi2: Add support for i.MX8QXP
` [PATCH v3 09/12] arm64: dts: imx8: add capture controller for i.MX8's img subsystem
` [PATCH v3 11/12] arm64: dts: imx8q: add linux,cma node for imx8qm-mek and imx8qxp-mek

[PATCH] mm: use per-numa-node atomics instead of percpu_counters
 2025-03-27 20:35 UTC  (3+ messages)

[PATCH v2 00/10] vhost-scsi: log write descriptors for live migration (and three bugfix)
 2025-03-27 20:27 UTC  (5+ messages)
` [PATCH v2 06/10] vhost-scsi: cache log buffer in I/O queue vhost_scsi_cmd

[PATCH v3] mm/filemap: Allow arch to request folio size for exec memory
 2025-03-27 20:23 UTC  (3+ messages)

[PATCH v6 0/2] Add more devm_ functions to fix PM imbalance in spi/atmel-quadspi.c
 2025-03-27 19:59 UTC  (3+ messages)
` [PATCH v6 1/2] pm: runtime: Add new devm functions
` [PATCH v6 2/2] spi: atmel-quadspi: Fix unbalanced pm_runtime by using devm_ API

[PATCH V4 0/5] Support auto counter reload
 2025-03-27 19:52 UTC  (6+ messages)
` [PATCH V4 1/5] perf/x86: Add dynamic constraint
` [PATCH V4 2/5] perf/x86/intel: Track the num of events needs late setup
` [PATCH V4 3/5] perf: Extend the bit width of the arch-specific flag
` [PATCH V4 4/5] perf/x86/intel: Add CPUID enumeration for the auto counter reload
` [PATCH V4 5/5] perf/x86/intel: Support "

[main-line]Build warnings on PowerPC system
 2025-03-27 18:55 UTC  (6+ messages)

[PATCH] lib/sort.c: Add _nonatomic() variants with cond_resched()
 2025-03-27 19:47 UTC  (3+ messages)

[PATCH v2] ACPI: platform_profile: Optimize _aggregate_choices()
 2025-03-27 19:46 UTC  (2+ messages)

[PATCH v8 13/16] cxl/pci: Assign CXL Endpoint protocol error handlers
 2025-03-27 19:46 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox