Linux-Modules Archive mirror
 help / color / mirror / Atom feed
 messages from 2024-01-09 18:18:34 to 2024-02-14 15:00:37 UTC [more...]

[PATCH v3 00/35] Memory allocation profiling
 2024-02-14 15:00 UTC  (103+ messages)
` [PATCH v3 01/35] lib/string_helpers: Add flags param to string_get_size()
` [PATCH v3 02/35] scripts/kallysms: Always include __start and __stop symbols
` [PATCH v3 03/35] fs: Convert alloc_inode_sb() to a macro
` [PATCH v3 04/35] mm: enumerate all gfp flags
` [PATCH v3 05/35] mm: introduce slabobj_ext to support slab object extensions
` [PATCH v3 06/35] mm: introduce __GFP_NO_OBJ_EXT flag to selectively prevent slabobj_ext creation
` [PATCH v3 07/35] mm/slab: introduce SLAB_NO_OBJ_EXT to avoid obj_ext creation
` [PATCH v3 08/35] mm: prevent slabobj_ext allocations for slabobj_ext and kmem_cache objects
` [PATCH v3 09/35] slab: objext: introduce objext_flags as extension to page_memcg_data_flags
` [PATCH v3 10/35] lib: code tagging framework
` [PATCH v3 11/35] lib: code tagging module support
` [PATCH v3 12/35] lib: prevent module unloading if memory is not freed
` [PATCH v3 13/35] lib: add allocation tagging support for memory allocation profiling
` [PATCH v3 14/35] lib: introduce support for page allocation tagging
` [PATCH v3 15/35] mm: percpu: increase PERCPU_MODULE_RESERVE to accommodate allocation tags
` [PATCH v3 16/35] change alloc_pages name in dma_map_ops to avoid name conflicts
` [PATCH v3 17/35] mm: enable page allocation tagging
` [PATCH v3 18/35] mm: create new codetag references during page splitting
` [PATCH v3 19/35] mm/page_ext: enable early_page_ext when CONFIG_MEM_ALLOC_PROFILING_DEBUG=y
` [PATCH v3 20/35] lib: add codetag reference into slabobj_ext
` [PATCH v3 21/35] mm/slab: add allocation accounting into slab allocation and free paths
` [PATCH v3 22/35] mm/slab: enable slab allocation tagging for kmalloc and friends
` [PATCH v3 23/35] mm/slub: Mark slab_free_freelist_hook() __always_inline
` [PATCH v3 24/35] mempool: Hook up to memory allocation profiling
` [PATCH v3 25/35] xfs: Memory allocation profiling fixups
` [PATCH v3 26/35] mm: percpu: Introduce pcpuobj_ext
` [PATCH v3 27/35] mm: percpu: Add codetag reference into pcpuobj_ext
` [PATCH v3 28/35] mm: percpu: enable per-cpu allocation tagging
` [PATCH v3 29/35] mm: vmalloc: Enable memory allocation profiling
` [PATCH v3 30/35] rhashtable: Plumb through alloc tag
` [PATCH v3 31/35] lib: add memory allocations report in show_mem()
` [PATCH v3 32/35] codetag: debug: skip objext checking when it's for objext itself
` [PATCH v3 33/35] codetag: debug: mark codetags for reserved pages as empty
` [PATCH v3 34/35] codetag: debug: introduce OBJEXTS_ALLOC_FAIL to mark failed slab_ext allocations
` [PATCH v3 35/35] MAINTAINERS: Add entries for code tagging and memory allocation profiling

[PATCH v1] module.h: define __symbol_get_gpl() as a regular __symbol_get()
 2024-02-13 11:10 UTC  (6+ messages)

[PATCH kmod 00/13] Load compressed modules with compression-less kmod
 2024-02-13 16:33 UTC  (15+ messages)
` [PATCH kmod 01/13] libkmod: use a dup()'d fd for zlib
` [PATCH kmod 02/13] libkmod: keep gzFile gzf local to load_zlib()
` [PATCH kmod 03/13] libkmod: remove kmod_file::{zstd,xz}_used flags
` [PATCH kmod 04/13] libkmod: clear file->memory if map fails
` [PATCH kmod 05/13] libkmod: nuke struct file_ops
` [PATCH kmod 06/13] libkmod: propagate {zstd,xz,zlib}_load errors
` [PATCH kmod 07/13] libkmod: move kmod_file_load_contents as applicable
` [PATCH kmod 08/13] libkmod: always detect the module compression
` [PATCH kmod 09/13] libkmod: swap alloca usage for a few assert_cc
` [PATCH kmod 10/13] libkmod: tidy-up kmod_file_open()
` [PATCH kmod 11/13] libkmod: move load_reg() further up
` [PATCH kmod 12/13] libkmod: keep KMOD_FILE_COMPRESSION_NONE/load_reg in comp_types
` [PATCH kmod 13/13] libkmod: always fallback to do_init_module()

[PATCH kmod] Remove unmaintained experimental tools
 2024-02-12 17:07 UTC 

[PATCH kmod 1/3] Add kmod_new_flags() variant of kmod_new(), with abiver 32
 2024-02-07  6:06 UTC  (5+ messages)
` [PATCH kmod 2/3] Add KMOD_NEW_IGNORE_CMDLINE
      `  "

[PATCH 0/4] Drop what's not maintained
 2024-02-07  5:08 UTC  (7+ messages)
` [PATCH 1/4] Drop python bindings
` [PATCH 2/4] ci: drop travis config
    `  "
` [PATCH 3/4] testsuite: drop mkosi
` [PATCH 4/4] gitignore: Ignore *.pc files

[PATCH 0/2] Polish module_directory help string, install symlinks
 2024-02-06 16:15 UTC  (13+ messages)
` [PATCH 1/2] configure: tweak the module_directory help string
` [PATCH 2/2] make: install/uninstall tools symlinks to kmod
      `  "
          `  "

[RFC PATCH] kernel/module: add a safer implementation of try_module_get()
 2024-02-02 18:31 UTC  (4+ messages)

[PATCH v2 0/3] modules: few of alignment fixes
 2024-02-02 18:23 UTC  (9+ messages)
` [PATCH v2 1/4] selftests: add new kallsyms selftests
` [PATCH v2 2/4] modules: Ensure 64-bit alignment on __ksymtab_* sections
` [PATCH v2 3/4] vmlinux.lds.h: add missing alignment for symbol CRCs
` [PATCH v2 4/4] modules: Add missing entry for __ex_table

[PATCH] lib/test_kmod: fix kernel-doc warnings
 2024-02-01 18:04 UTC  (3+ messages)

[PATCH 1/3] init: Declare rodata_enabled and mark_rodata_ro() at all time
 2024-01-31 22:16 UTC  (12+ messages)

[PATCH RFC 00/12] x86 NUMA-aware kernel replication
 2024-01-30 23:36 UTC  (14+ messages)
` [PATCH RFC 02/12] mm: add config option and per-NUMA node VMS support
` [PATCH RFC 04/12] x86: add support of memory protection for NUMA replicas

[RESEND PATCH v2] modules: wait do_free_init correctly
 2024-01-30 14:21 UTC  (4+ messages)

[PATCH 1/3] module: Use set_memory_rox()
 2024-01-29 20:01 UTC  (2+ messages)

[PATCH 0/4] Section alignment issues?
 2024-01-29 18:50 UTC  (11+ messages)
` [PATCH 2/4] modules: Ensure 64-bit alignment on __ksymtab_* sections
` [PATCH 4/4] modules: Add missing entry for __ex_table

[PATCH] kbuild: detect depmod version to exclude new SHA3 module signing options
 2024-01-21 19:54 UTC  (10+ messages)
      `  "

[GIT PULL] Modules changes for v6.8-rc1
 2024-01-11  2:24 UTC  (2+ messages)

[syzbot] [modules?] INFO: task hung in _vm_unmap_aliases (3)
 2024-01-09 18:18 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).