messages from 2026-05-19 18:19:45 to 2026-05-27 11:19:30 UTC [more...]
[PATCH v5 0/4] Enable sysfs module symlink for more built-in drivers
2026-05-27 11:19 UTC (7+ messages)
` [PATCH v5 1/4] soc/tegra: cbb: Move driver registration from pure_initcall to core_initcall
` [PATCH v5 2/4] kernel: param: initialize module_kset in a pure_initcall
[PATCH] rust: module_param: use `pr_warn_once!` for null pointer warning
2026-05-26 23:59 UTC (4+ messages)
[PATCH 0/4] module: force sh_addr=0 for arch-specific sections
2026-05-26 23:40 UTC (2+ messages)
[PATCH v2] genksyms: Support arm64 CRC32 hardware acceleration
2026-05-26 19:13 UTC (7+ messages)
` [PATCH v2] genksyms: Support arm64 CRC32 hardware acceleration1~
build failure for stablerc
2026-05-26 17:17 UTC (3+ messages)
[PATCH v5 00/14] module: Introduce hash-based integrity checking
2026-05-26 13:14 UTC (16+ messages)
` [PATCH v5 06/14] module: Switch load_info::len to size_t
` [PATCH v5 07/14] module: Make module authentication usable without MODULE_SIG
` [PATCH v5 08/14] module: Move authentication logic into dedicated new file
` [PATCH v5 09/14] module: Move signature type check out of mod_check_sig()
` [PATCH v5 10/14] module: Prepare for additional module authentication mechanisms
[PATCH 00/11] Convert moduleparams to seq_buf
2026-05-26 6:53 UTC (27+ messages)
` [PATCH 01/11] params: bound array element output to the caller's page buffer
` [PATCH 02/11] panic: Replace panic_print_get() with generic helper
` [PATCH 03/11] moduleparam: Add DEFINE_KERNEL_PARAM_OPS macro family
` [PATCH 04/11] treewide: Convert struct kernel_param_ops initializers to DEFINE_KERNEL_PARAM_OPS
` [PATCH 05/11] moduleparam: Rename .get field to .get_str
` [PATCH 06/11] moduleparam: Add seq_buf-based .get callback alongside .get_str
` [PATCH 07/11] moduleparam: Route DEFINE_KERNEL_PARAM_OPS get pointer via _Generic
` [PATCH 08/11] params: Convert generic kernel_param_ops .get helpers to seq_buf
` [PATCH 09/11] treewide: Convert custom kernel_param_ops .get callbacks to seq_buf via cocci
` [PATCH 10/11] treewide: Manually convert custom kernel_param_ops .get callbacks
` [PATCH 11/11] moduleparam: Drop legacy kernel_param_ops .get_str field and dispatch logic
[PATCH v2 00/24] dynamic-debug cleanups refactors maintenance + alignment fix
2026-05-25 9:24 UTC (35+ messages)
` [PATCH v2 01/24] docs/dyndbg: update examples \012 to \n
` [PATCH v2 02/24] docs/dyndbg: explain flags parse 1st
` [PATCH v2 03/24] vmlinux.lds.h: refactor BOUNDED_SECTION_* macros into bounded_sections.lds.h
` [PATCH v2 04/24] vmlinux.lds.h: drop unused HEADERED_SECTION* macros
` [PATCH v2 05/24] vmlinux.lds.h: Fix ALIGN(8) omission causing NULL ptr on i386
` [PATCH v2 06/24] vmlinux.lds.h: remove redundant ALIGN(8) directives
` [PATCH v2 07/24] dyndbg.lds.S: fix lost dyndbg sections in modules
` [PATCH v2 08/24] dyndbg: factor ddebug_match_desc out from ddebug_change
` [PATCH v2 09/24] dyndbg: add stub macro for DECLARE_DYNDBG_CLASSMAP
` [PATCH v2 10/24] dyndbg: reword "class unknown," to "class:_UNKNOWN_"
` [PATCH v2 11/24] dyndbg-API: remove DD_CLASS_TYPE_(DISJOINT|LEVEL)_NAMES and code
` [PATCH v2 12/24] dyndbg: drop NUM_TYPE_ARGS
` [PATCH v2 13/24] dyndbg: reduce verbose/debug clutter
` [PATCH v2 14/24] dyndbg: refactor param_set_dyndbg_classes and below
` [PATCH v2 15/24] dyndbg: tighten fn-sig of ddebug_apply_class_bitmap
` [PATCH v2 16/24] dyndbg: replace classmap list with an array-slice
` [PATCH v2 17/24] dyndbg: macrofy a 2-index for-loop pattern
` [PATCH v2 18/24] dyndbg: Upgrade class param storage to u64 for 64-bit classmaps
` [PATCH v2 19/24] dyndbg,module: make proper substructs in _ddebug_info
` [PATCH v2 20/24] dyndbg: move mod_name down from struct ddebug_table to _ddebug_info
` [PATCH v2 21/24] dyndbg: hoist classmap-filter-by-modname up to ddebug_add_module
` [PATCH v2 22/24] selftests-dyndbg: add a dynamic_debug run_tests target
` [PATCH v2 23/24] dyndbg: change __dynamic_func_call_cls* macros into expressions
` [PATCH v2 24/24] dyndbg: improve section names
[PATCH v18 00/42] DEPT(DEPendency Tracker)
2026-05-23 15:04 UTC (5+ messages)
` DEPT (the dependency tracker) as AI review prompt? (was: DEPT v18)
` DEPT (the dependency tracker) as AI review prompt?
[linux-next:master] BUILD REGRESSION 550604d6c9b9efc8d068aff94dc301694a7afdee
2026-05-22 0:33 UTC
[PATCH] rust: module_param: add missing newline to pr_warn
2026-05-21 16:14 UTC
[PATCH] ARM: module.lds: fix unwind metadata for merged .text sections
2026-05-21 15:57 UTC
[PATCH 0/8] Fix missing fops.owner in Rust DRM/misc abstractions
2026-05-21 7:59 UTC (7+ messages)
` [PATCH 2/8] rust: driver: make `DriverModule` struct pub(crate) in `module_driver!`
` [PATCH 3/8] rust: drm: add `ThisModule` associated type to `Driver` trait
[PATCH v2 0/7] Fix missing fops.owner in Rust DRM/misc abstractions
2026-05-21 7:52 UTC (8+ messages)
` [PATCH v2 1/7] rust: module: add `THIS_MODULE` const to `ModuleMetadata` trait
` [PATCH v2 2/7] rust: macros: auto-insert ThisModule in #[vtable]
` [PATCH v2 3/7] rust: doctest: add LocalModule fallback for #[vtable] ThisModule
` [PATCH v2 4/7] rust: drm: set fops.owner from driver module pointer
` [PATCH v2 5/7] rust: miscdevice: "
` [PATCH v2 6/7] rust: configfs: use `LocalModule` for `THIS_MODULE`
` [PATCH v2 7/7] block: rnull: "
[PATCH v2] module: decompress: check return value of module_extend_max_pages()
2026-05-20 21:33 UTC (5+ messages)
page: | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox