cgroups.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
[PATCH] cgroup/cpuset: Prevent NULL pointer access in free_tmpmasks()
 2025-09-03 18:40 UTC  (3+ messages)

[PATCH RFC v3 00/15] block: fix disordered IO in the case recursive split
 2025-09-03 17:52 UTC  (52+ messages)
` [PATCH RFC v3 01/15] block: cleanup bio_issue
` [PATCH RFC v3 02/15] block: add QUEUE_FLAG_BIO_ISSUE
` [PATCH RFC v3 03/15] md: fix mssing blktrace bio split events
` [PATCH RFC v3 04/15] blk-crypto: fix missing processing for split bio
` [PATCH RFC v3 05/15] block: factor out a helper bio_submit_split_bioset()
` [PATCH RFC v3 06/15] md/raid0: convert raid0_handle_discard() to use bio_submit_split_bioset()
` [PATCH RFC v3 07/15] md/raid1: convert "
` [PATCH RFC v3 08/15] md/raid10: add a new r10bio flag R10BIO_Returned
` [PATCH RFC v3 09/15] md/raid10: convert read/write to use bio_submit_split_bioset()
` [PATCH RFC v3 10/15] md/raid5: convert "
` [PATCH RFC v3 11/15] md/md-linear: "
` [PATCH RFC v3 12/15] blk-crypto: "
` [PATCH RFC v3 13/15] block: skip unnecessary checks for split bio
` [PATCH RFC v3 14/15] block: fix disordered IO in the case recursive split
` [PATCH RFC v3 15/15] md/raid0: convert raid0_make_request() to use bio_submit_split_bioset()

[PATCH] cgroup: replace global percpu_rwsem with signal_struct->group_rwsem when writing cgroup.procs/threads
 2025-09-03 16:53 UTC  (3+ messages)

[RFC v8 00/21] DRM scheduling cgroup controller
 2025-09-03 15:23 UTC  (22+ messages)
` [RFC 01/21] drm/sched: Add some scheduling quality unit tests
` [RFC 02/21] drm/sched: Add some more "
` [RFC 03/21] drm/sched: Implement RR via FIFO
` [RFC 04/21] drm/sched: Consolidate entity run queue management
` [RFC 05/21] drm/sched: Move run queue related code into a separate file
` [RFC 06/21] drm/sched: Free all finished jobs at once
` [RFC 07/21] drm/sched: Account entity GPU time
` [RFC 08/21] drm/sched: Remove idle entity from tree
` [RFC 09/21] drm/sched: Add fair scheduling policy
` [RFC 10/21] drm/sched: Break submission patterns with some randomness
` [RFC 11/21] drm/sched: Remove FIFO and RR and simplify to a single run queue
` [RFC 12/21] drm/sched: Embed run queue singleton into the scheduler
` [RFC 13/21] cgroup: Add the DRM cgroup controller
` [RFC 14/21] cgroup/drm: Track DRM clients per cgroup
` [RFC 15/21] cgroup/drm: Add scheduling weight callback
` [RFC 16/21] cgroup/drm: Introduce weight based scheduling control
` [RFC 17/21] drm/sched: Add helper for tracking entities per client
` [RFC 18/21] drm/sched: Add helper for DRM cgroup controller weight notifications
` [RFC 19/21] drm/amdgpu: Register with the DRM scheduling cgroup controller
` [RFC 20/21] drm/xe: Allow changing GuC scheduling priority
` [RFC 21/21] drm/xe: Register with the DRM scheduling cgroup controller

[PATCH 1/4] mm/swap, memcg: Introduce infrastructure for cgroup-based swap priority
 2025-09-03 10:18 UTC  (19+ messages)

[PATCH] samples/cgroup: rm unused MEMCG_EVENTS macro
 2025-09-03  7:30 UTC 

[PATCH -next RFC 00/11] Refactor cpus mask setting
 2025-09-03  0:51 UTC  (18+ messages)
` [PATCH -next RFC 01/11] cpuset: move the root cpuset write check earlier
` [PATCH -next RFC 06/11] cpuset: introduce cpus_excl_conflict and mems_excl_conflict helpers
` [PATCH -next RFC 07/11] cpuset: refactor out invalidate_cs_partition
` [PATCH -next RFC 08/11] cpuset: refactor acpus_validate_change
` [PATCH -next RFC 09/11] cpuset: refactor partition_cpus_change

drm/ttm/memcg/lru: enable memcg tracking for ttm and amdgpu driver (complete series v3)
 2025-09-03  0:44 UTC  (19+ messages)
` [PATCH 01/15] mm: add gpu active/reclaim per-node stat counters (v2)
` [PATCH 02/15] drm/ttm: use gpu mm stats to track gpu memory allocations. (v4)
` [PATCH 03/15] ttm/pool: port to list_lru. (v2)
` [PATCH 04/15] ttm/pool: drop numa specific pools
` [PATCH 05/15] ttm/pool: make pool shrinker NUMA aware
` [PATCH 06/15] ttm/pool: track allocated_pages per numa node
` [PATCH 07/15] memcg: add support for GPU page counters. (v3)
` [PATCH 08/15] ttm: add a memcg accounting flag to the alloc/populate APIs
` [PATCH 09/15] ttm/pool: initialise the shrinker earlier
` [PATCH 10/15] ttm: add objcg pointer to bo and tt
` [PATCH 11/15] ttm/pool: enable memcg tracking and shrinker. (v2)
` [PATCH 12/15] ttm: hook up memcg placement flags
` [PATCH 13/15] memcontrol: allow objcg api when memcg is config off
` [PATCH 14/15] amdgpu: add support for memory cgroups
` [PATCH 15/15] ttm: add support for a module option to disable memcg integration

next-20250805: ampere: WARNING: kernel/cgroup/cpuset.c:1352 at remote_partition_disable
 2025-09-02 18:47 UTC  (4+ messages)

[PATCH] cpuset: prevent freeing unallocated cpumask in hotplug handling
 2025-09-02 18:21 UTC  (5+ messages)

[PATCH 14/33] cpuset: Update HK_TYPE_DOMAIN cpumask from cpuset
 2025-09-02 15:44 UTC  (8+ messages)
` [PATCH 17/33] cpuset: Propagate cpuset isolation update to workqueue through housekeeping
` [PATCH 18/33] cpuset: Remove cpuset_cpu_is_isolated()
` [PATCH 26/33] cgroup/cpuset: Fail if isolated and nohz_full don't leave any housekeeping
` [PATCH 28/33] kthread: Honour kthreads preferred affinity after cpuset changes

[PATCH RFC 0/7] block: fix disordered IO in the case recursive split
 2025-09-02 14:46 UTC  (13+ messages)
` [PATCH RFC 4/7] md/raid10: convert read/write to use bio_submit_split()

[RFC 0/3] cgroups: Add support for pinned device memory
 2025-09-02 13:42 UTC  (9+ messages)

[RFC] cgroup: Avoid thousands of -Wflex-array-member-not-at-end warnings
 2025-09-02 12:37 UTC  (11+ messages)

[PATCH v2 0/4] nios2: Add architecture support for clone3
 2025-09-02 11:44 UTC  (20+ messages)
` [PATCH v2 1/4] copy_sighand: Handle architectures where sizeof(unsigned long) < sizeof(u64)
` [PATCH v2 2/4] copy_process: pass clone_flags as u64 across calltree
` [PATCH v2 3/4] arch: copy_thread: pass clone_flags as u64
` [PATCH v2 4/4] nios2: implement architecture-specific portion of sys_clone3

[RFC PATCH v2 bpf-next 0/3] bpf: cgroup: support writing and freezing cgroups from BPF
 2025-09-01 19:53 UTC  (5+ messages)

[PATCH RFC v2 00/10] block: fix disordered IO in the case recursive split
 2025-09-01  6:51 UTC  (27+ messages)
` [PATCH RFC v2 01/10] block: factor out a helper bio_submit_split_bioset()
` [PATCH RFC v2 02/10] md/raid0: convert raid0_handle_discard() to use bio_submit_split_bioset()
` [PATCH RFC v2 03/10] md/raid1: convert "
` [PATCH RFC v2 04/10] md/raid10: convert read/write "
` [PATCH RFC v2 05/10] md/raid5: convert "
` [PATCH RFC v2 06/10] md/md-linear: "
` [PATCH RFC v2 07/10] blk-crypto: "
` [PATCH RFC v2 08/10] block: skip unnecessary checks for split bio
` [PATCH RFC v2 09/10] block: fix disordered IO in the case recursive split

[PATCH v2 0/2] kernfs: Fix UAF in PSI polling when open file is released
 2025-09-01  6:06 UTC  (7+ messages)
` [PATCH v2 2/2] cgroup/psi: Set of->priv to NULL upon file release

[syzbot] [mm?] INFO: rcu detected stall in sys_madvise (2)
 2025-08-31  2:33 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 NNTP newsgroup(s).