Linux Hardening
 help / color / mirror / Atom feed
 messages from 2026-01-21 06:44:33 to 2026-01-29 10:28:03 UTC [more...]

[PATCH v3 00/30] kernel-doc: make it parse new functions and structs
 2026-01-29 10:27 UTC  (37+ messages)
` [PATCH v3 01/30] docs: kdoc_re: add support for groups()
` [PATCH v3 02/30] docs: kdoc_re: don't go past the end of a line
` [PATCH v3 03/30] docs: kdoc_parser: move var transformers to the beginning
  ` [Intel-wired-lan] "
` [PATCH v3 04/30] docs: kdoc_parser: don't mangle with function defines
  ` [Intel-wired-lan] "
` [PATCH v3 05/30] docs: kdoc_parser: add functions support for NestedMatch
  ` [Intel-wired-lan] "
` [PATCH v3 06/30] docs: kdoc_parser: use NestedMatch to handle __attribute__ on functions
  ` [Intel-wired-lan] "
` [PATCH v3 07/30] docs: kdoc_parser: fix variable regexes to work with size_t
  ` [Intel-wired-lan] "
` [PATCH v3 08/30] docs: kdoc_parser: fix the default_value logic for variables
` [PATCH v3 09/30] docs: kdoc_parser: add some debug for variable parsing
` [PATCH v3 10/30] docs: kdoc_parser: don't exclude defaults from prototype
  ` [Intel-wired-lan] "
` [PATCH v3 11/30] docs: kdoc_parser: fix parser to support multi-word types
` [PATCH v3 12/30] docs: kdoc_parser: ignore context analysis and lock attributes
` [PATCH v3 13/30] docs: kdoc_parser: add support for LIST_HEAD
` [PATCH v3 14/30] kdoc_parser: handle struct member macro VIRTIO_DECLARE_FEATURES(name)
` [PATCH v3 15/30] docs: kdoc_re: properly handle strings and escape chars on it
` [PATCH v3 16/30] docs: kdoc_re: better show KernRe() at documentation
` [PATCH v3 17/30] docs: kdoc_re: don't recompile NextMatch regex every time
` [PATCH v3 18/30] docs: kdoc_re: Change NestedMath args replacement to \0
` [PATCH v3 19/30] docs: kdoc_re: make NextedMatch use KernRe
` [PATCH v3 20/30] docs: kdoc_re: add support on NestedMatch for argument replacement
` [PATCH v3 21/30] docs: python: add helpers to run unit tests
` [PATCH v3 22/30] unittests: add tests for NestedMatch class
` [PATCH v3 23/30] docs: kdoc_parser: better handle struct_group macros
` [PATCH v3 24/30] docs: kdoc_re: fix a parse bug on struct page_pool_params
` [PATCH v3 25/30] docs: kdoc_re: add a helper class to declare C function matches
` [PATCH v3 26/30] docs: kdoc_parser: use the new CFunction class
` [PATCH v3 27/30] docs: kdoc_parser: minimize differences with struct_group_tagged
` [PATCH v3 28/30] docs: kdoc_parser: move transform lists to a separate file
` [PATCH v3 29/30] docs: kdoc_re: don't remove the trailing ";" with NestedMatch
` [PATCH v3 30/30] docs: xforms_lists.py: use CFuntion to handle all function macros

[PATCH v6 0/8] riscv: optimize string functions and add kunit tests
 2026-01-29  7:02 UTC  (9+ messages)
` [PATCH v6 1/8] lib/string_kunit: add correctness test for strlen()
` [PATCH v6 2/8] lib/string_kunit: add correctness test for strnlen()
` [PATCH v6 3/8] lib/string_kunit: add correctness test for strrchr()
` [PATCH v6 4/8] lib/string_kunit: add performance benchmark for strlen()
` [PATCH v6 5/8] lib/string_kunit: extend benchmarks to strnlen() and chr searches
` [PATCH v6 6/8] riscv: lib: add strnlen() implementation
` [PATCH v6 7/8] riscv: lib: add strchr() implementation
` [PATCH v6 8/8] riscv: lib: add strrchr() implementation

[PATCH v5 0/8] riscv: optimize string functions and add kunit tests
 2026-01-29  2:19 UTC  (17+ messages)
` [PATCH v5 1/8] lib/string_kunit: add correctness test for strlen()
` [PATCH v5 2/8] lib/string_kunit: add correctness test for strnlen()
` [PATCH v5 3/8] lib/string_kunit: add correctness test for strrchr()
` [PATCH v5 4/8] lib/string_kunit: add performance benchmark for strlen()
` [PATCH v5 5/8] lib/string_kunit: extend benchmarks to strnlen() and chr searches
` [PATCH v5 6/8] riscv: lib: add strnlen() implementation
` [PATCH v5 7/8] riscv: lib: add strchr() implementation
` [PATCH v5 8/8] riscv: lib: add strrchr() implementation

[PATCH v4 0/3] Fix bugs and performance of kstack offset randomisation
 2026-01-28 18:32 UTC  (5+ messages)
` [PATCH v4 2/3] prandom: Add __always_inline version of prandom_u32_state()

[RFC v3 0/6] Improve function parameters in ISO C2y
 2026-01-28 15:21 UTC  (11+ messages)
  ` [RFC v3 1/6] alx-0077r3 - disallow function parameters of function type
  ` [RFC v3 2/6] alx-0076r3 - incompatible array parameters
  ` [RFC v3 3/6] alx-0078r2 - [static n] shouldn't access more than n elements
  ` [RFC v3 4/6] alx-0079r2 - [static n] == non-null [n]
  ` [RFC v3 5/6] alx-0081r2 - array parameters of 0 elements
  ` [RFC v3 6/6] alx-0080r1 - [static] without array length expression

[PATCH v2 00/10] arm64: Unmap linear alias of kernel data/bss
 2026-01-27 17:37 UTC  (38+ messages)
` [PATCH v2 01/10] arm64: Move the zero page to rodata
` [PATCH v2 02/10] arm64: Move fixmap page tables to end of kernel image
` [PATCH v2 03/10] arm64: mm: Permit contiguous descriptors to be rewritten
` [PATCH v2 04/10] arm64: mm: Preserve existing table mappings when mapping DRAM
` [PATCH v2 05/10] arm64: mm: Preserve non-contiguous descriptors "
` [PATCH v2 06/10] arm64: mm: Remove bogus stop condition from map_mem() loop
` [PATCH v2 07/10] arm64: mm: Drop redundant pgd_t* argument from map_mem()
` [PATCH v2 08/10] arm64: mm: Don't abuse memblock NOMAP to check for overlaps
` [PATCH v2 09/10] arm64: mm: Map the kernel data/bss read-only in the linear map
` [PATCH v2 10/10] arm64: mm: Unmap kernel data/bss entirely from "

[PATCH v3 0/7] Initial Redmi Note 8T support and more
 2026-01-27 15:56 UTC  (11+ messages)
` [PATCH v3 1/7] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Remove board-id
` [PATCH v3 2/7] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Correct reserved memory ranges
` [PATCH v3 3/7] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Set memory-region for framebuffer
` [PATCH v3 4/7] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Remove extcon
` [PATCH v3 5/7] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Fix reserved gpio ranges
` [PATCH v3 6/7] dt-bindings: arm: qcom: Add Xiaomi Redmi Note 8T
` [PATCH v3 7/7] arm64: dts: qcom: Add "

[PATCH v3 0/3] Retrieve information about DDR from SMEM
 2026-01-27 14:22 UTC  (4+ messages)
` [PATCH v3 1/3] soc: qcom: smem: Expose DDR data "

[PATCH v2 0/3] Add Amlogic general DMA
 2026-01-27  3:27 UTC  (4+ messages)
` [PATCH v2 1/3] dt-bindings: dma: Add Amlogic A9 SoC DMA
` [PATCH v2 2/3] dma: amlogic: Add general DMA driver for A9
` [PATCH v2 3/3] MAINTAINERS: Add an entry for Amlogic DMA driver

[PATCH v3 0/3] lib and lib/cmdline enhancements
 2026-01-26 16:44 UTC  (8+ messages)
` [PATCH v3 1/3] lib: fix _parse_integer_limit() to handle overflow
` [PATCH v3 2/3] lib/cmdline_kunit: add test case for memparse()
` [PATCH v3 3/3] lib/cmdline: adjust a few comments to fix kernel-doc -Wreturn warnings

[PATCH v4 0/8] riscv: optimize string functions and add kunit tests
 2026-01-26  9:28 UTC  (12+ messages)
` [PATCH v4 1/8] lib/string_kunit: add correctness test for strlen()
` [PATCH v4 2/8] lib/string_kunit: add correctness test for strnlen()
` [PATCH v4 3/8] lib/string_kunit: add correctness test for strrchr()
` [PATCH v4 4/8] lib/string_kunit: add performance benchmark for strlen()
` [PATCH v4 5/8] lib/string_kunit: extend benchmarks to strnlen() and chr searches
` [PATCH v4 6/8] riscv: lib: add strnlen() implementation
` [PATCH v4 7/8] riscv: lib: add strchr() implementation
` [PATCH v4 8/8] riscv: lib: add strrchr() implementation

[PATCH v2 0/3] lib and lib/cmdline enhancements
 2026-01-23 16:10 UTC  (6+ messages)
` [PATCH v2 1/3] lib: fix _parse_integer_limit() to handle overflow
` [PATCH v2 2/3] lib/cmdline_kunit: add test case for memparse()
` [PATCH v2 3/3] lib/cmdline: adjust a few comments to fix kernel-doc -Wreturn warnings

[PATCH RFT 0/5] dmaengine: dw-edma: support dynamtic add link entry during dma engine running
 2026-01-23 14:15 UTC  (4+ messages)
` [PATCH RFT 4/5] dmaengine: dw-edma: Dynamitc append new request during dmaengine running

[PATCH v3 0/8] riscv: optimize string functions and add kunit tests
 2026-01-23 10:16 UTC  (11+ messages)
` [PATCH v3 6/8] riscv: lib: add strnlen implementation

[PATCH 0/4] arm64: Unmap linear alias of kernel data/bss
 2026-01-23  7:27 UTC  (12+ messages)
` [PATCH 1/4] arm64: Move fixmap page tables to end of kernel image
` [PATCH 2/4] arm64: Map the kernel data/bss read-only in the linear map
` [PATCH 3/4] arm64: Move the zero page to rodata
` [PATCH 4/4] arm64: Unmap kernel data/bss entirely from the linear map

[PATCH 0/2] minor lib/cmdline enhancements
 2026-01-22 15:25 UTC  (7+ messages)
` [PATCH 1/2] lib/cmdline_kunit: add test case for memparse()
` [PATCH 2/2] lib/cmdline: adjust a few comments to fix kernel-doc -Wreturn warnings

[RFC/RFT PATCH 00/19] Link the relocatable x86 kernel as PIE
 2026-01-22 14:25 UTC  (14+ messages)
` [RFC/RFT PATCH 01/19] x86/idt: Move idt_table to __ro_after_init section

[PATCH 00/26] Introduce meminspect
 2026-01-22 10:03 UTC  (7+ messages)
` [PATCH 18/26] mm/memblock: Add MEMBLOCK_INSPECT flag

[net] Revert "net: wwan: mhi_wwan_mbim: Avoid -Wflex-array-member-not-at-end warning"
 2026-01-22  2:18 UTC  (4+ messages)
      `  "

[PATCH v2 0/7] Initial Redmi Note 8T support and more
 2026-01-21 15:31 UTC  (9+ messages)
` [PATCH v2 2/7] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Correct reserved memory ranges
` [PATCH v2 3/7] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Set memory-region for framebuffer
` [PATCH v2 5/7] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Fix reserved gpio ranges

[PATCH v3 1/2] lib: introduce simple error-checking wrapper for memparse()
 2026-01-21 13:25 UTC  (9+ messages)
` [PATCH v4 1/3] "
  ` [PATCH v4 3/3] xfs: adjust handling of a few numerical mount options

[PATCH v2 0/7] thermal: samsung: Add support for Google GS101 TMU
 2026-01-21  7:52 UTC  (3+ messages)
` [PATCH v2 1/7] dt-bindings: thermal: Add "


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