linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
 messages from 2013-09-26 15:37:55 to 2013-09-29 02:05:24 UTC [more...]

[PATCHv4 00/10] split page table lock for PMD tables
 2013-09-28 16:12 UTC  (16+ messages)
` [PATCHv4 01/10] mm: rename USE_SPLIT_PTLOCKS to USE_SPLIT_PTE_PTLOCKS
` [PATCHv4 02/10] mm: convert mm->nr_ptes to atomic_t
` [PATCHv4 03/10] mm: introduce api for split page table lock for PMD level
` [PATCHv4 04/10] mm, thp: change pmd_trans_huge_lock() to return taken lock
` [PATCHv4 05/10] mm, thp: move ptl taking inside page_check_address_pmd()
` [PATCHv4 06/10] mm, thp: do not access mm->pmd_huge_pte directly
` [PATCHv4 07/10] mm, hugetlb: convert hugetlbfs to use split pmd lock
` [PATCHv4 08/10] mm: convent the rest to new page table lock api
` [PATCHv4 09/10] mm: implement split page table lock for PMD level
` [PATCHv4 10/10] x86, mm: enable "

[patch 0/7] improve memcg oom killer robustness v2
 2013-09-27  2:04 UTC  (14+ messages)

[PATCH 0/63] Basic scheduler support for automatic NUMA balancing V8
 2013-09-29  2:05 UTC  (65+ messages)
` [PATCH 01/63] sched: monolithic code dump of what is being pushed upstream
` [PATCH 02/63] mm: numa: Document automatic NUMA balancing sysctls
` [PATCH 03/63] sched, numa: Comment fixlets
` [PATCH 04/63] mm: numa: Do not account for a hinting fault if we raced
` [PATCH 05/63] mm: Wait for THP migrations to complete during NUMA hinting faults
` [PATCH 06/63] mm: Prevent parallel splits during THP migration
` [PATCH 07/63] mm: Account for a THP NUMA hinting update as one PTE update
` [PATCH 08/63] mm: Do not flush TLB during protection change if !pte_present && !migration_entry
` [PATCH 09/63] mm: Only flush TLBs if a transhuge PMD is modified for NUMA pte scanning
` [PATCH 10/63] mm: numa: Sanitize task_numa_fault() callsites
` [PATCH 11/63] mm: Close races between THP migration and PMD numa clearing
` [PATCH 12/63] mm: numa: Do not migrate or account for hinting faults on the zero page
` [PATCH 13/63] sched: numa: Mitigate chance that same task always updates PTEs
` [PATCH 14/63] sched: numa: Continue PTE scanning even if migrate rate limited
` [PATCH 15/63] Revert "mm: sched: numa: Delay PTE scanning until a task is scheduled on a new node"
` [PATCH 16/63] sched: numa: Initialise numa_next_scan properly
` [PATCH 17/63] sched: Set the scan rate proportional to the memory usage of the task being scanned
` [PATCH 18/63] sched: numa: Slow scan rate if no NUMA hinting faults are being recorded
` [PATCH 19/63] sched: Track NUMA hinting faults on per-node basis
` [PATCH 20/63] sched: Select a preferred node with the most numa hinting faults
` [PATCH 21/63] sched: Update NUMA hinting faults once per scan
` [PATCH 22/63] sched: Favour moving tasks towards the preferred node
` [PATCH 23/63] sched: Resist moving tasks towards nodes with fewer hinting faults
` [PATCH 24/63] sched: Reschedule task on preferred NUMA node once selected
` [PATCH 25/63] sched: Add infrastructure for split shared/private accounting of NUMA hinting faults
` [PATCH 26/63] sched: Check current->mm before allocating NUMA faults
` [PATCH 27/63] mm: numa: Scan pages with elevated page_mapcount
` [PATCH 28/63] sched: Remove check that skips small VMAs
` [PATCH 29/63] sched: Set preferred NUMA node based on number of private faults
` [PATCH 30/63] sched: Do not migrate memory immediately after switching node
` [PATCH 31/63] mm: numa: only unmap migrate-on-fault VMAs
` [PATCH 32/63] sched: Avoid overloading CPUs on a preferred NUMA node
` [PATCH 33/63] sched: Retry migration of tasks to CPU on a preferred node
` [PATCH 34/63] sched: numa: increment numa_migrate_seq when task runs in correct location
` [PATCH 35/63] sched: numa: Do not trap hinting faults for shared libraries
` [PATCH 36/63] mm: numa: Only trap pmd hinting faults if we would otherwise trap PTE faults
` [PATCH 37/63] stop_machine: Introduce stop_two_cpus()
` [PATCH 38/63] sched: Introduce migrate_swap()
` [PATCH 39/63] sched: numa: Use a system-wide search to find swap/migration candidates
` [PATCH 40/63] sched: numa: Favor placing a task on the preferred node
` [PATCH 41/63] sched: numa: fix placement of workloads spread across multiple nodes
` [PATCH 42/63] mm: numa: Change page last {nid,pid} into {cpu,pid}
` [PATCH 43/63] sched: numa: Use {cpu, pid} to create task groups for shared faults
` [PATCH 44/63] sched: numa: Report a NUMA task group ID
` [PATCH 45/63] mm: numa: copy cpupid on page migration
` [PATCH 46/63] mm: numa: Do not group on RO pages
` [PATCH 47/63] mm: numa: Do not batch handle PMD pages
` [PATCH 48/63] sched: numa: stay on the same node if CLONE_VM
` [PATCH 49/63] sched: numa: use group fault statistics in numa placement
` [PATCH 50/63] sched: numa: call task_numa_free from do_execve
` [PATCH 51/63] sched: numa: Prevent parallel updates to group stats during placement
` [PATCH 52/63] sched: numa: add debugging
` [PATCH 53/63] sched: numa: Decide whether to favour task or group weights based on swap candidate relationships
` [PATCH 54/63] sched: numa: fix task or group comparison
` [PATCH 55/63] sched: numa: Avoid migrating tasks that are placed on their preferred node
` [PATCH 56/63] sched: numa: be more careful about joining numa groups
` [PATCH 57/63] sched: numa: Take false sharing into account when adapting scan rate
` [PATCH 58/63] sched: numa: adjust scan rate in task_numa_placement
` [PATCH 59/63] sched: numa: Remove the numa_balancing_scan_period_reset sysctl
` [PATCH 60/63] mm: numa: revert temporarily disabling of NUMA migration
` [PATCH 61/63] sched: numa: skip some page migrations after a shared fault
` [PATCH 62/63] sched: numa: use unsigned longs for numa group fault stats
` [PATCH 63/63] sched: numa: periodically retry task_numa_migrate

[PATCH] hotplug: Optimize {get,put}_online_cpus()
 2013-09-28 20:46 UTC  (21+ messages)

[PATCH v5 0/9] extend hugepage migration
 2013-09-28 17:26 UTC  (3+ messages)
` [PATCH 4/9] migrate: add hugepage migration code to move_pages()

[PATCH] mm: pagevec: cleanup: drop pvec->cold argument in all places
 2013-09-28  8:33 UTC 

[PATCH v6 5/6] MCS Lock: Restructure the MCS lock defines and locking code into its own file
 2013-09-28  7:54 UTC  (43+ messages)
                          ` [PATCH] checkpatch: Make the memory barrier test noisier

[PATCH] Problems with RAID 4/5/6 and kmem_cache
 2013-09-28  6:49 UTC  (3+ messages)

[PATCH v2 0/5] mm: migrate zbud pages
 2013-09-28  2:43 UTC  (8+ messages)

Mapping range locking and related stuff
 2013-09-27 23:32 UTC  (2+ messages)

[PATCH v5 0/6] x86, memblock: Allocate memory near kernel image before SRAT parsed
 2013-09-27 23:14 UTC  (34+ messages)
` [PATCH v5 1/6] memblock: Factor out of top-down allocation
` [PATCH v5 2/6] memblock: Introduce bottom-up allocation mode
` [PATCH v5 3/6] x86/mm: Factor out of top-down direct mapping setup
` [PATCH v5 4/6] x86/mem-hotplug: Support initialize page tables in bottom-up
` [PATCH v5 5/6] x86, acpi, crash, kdump: Do reserve_crashkernel() after SRAT is parsed
` [PATCH v5 6/6] mem-hotplug: Introduce movablenode boot option

[PATCH] slub: Proper kmemleak tracking if CONFIG_SLUB_DEBUG disabled
 2013-09-27 20:38 UTC 

mm: insure topdown mmap chooses addresses above security minimum
 2013-09-27 15:39 UTC  (5+ messages)

[PATCH] OOM killer: wait for tasks with pending SIGKILL to exit
 2013-09-27 14:58 UTC  (5+ messages)

[RFC PATCH v4 00/40] mm: Memory Power Management
 2013-09-27  6:34 UTC  (22+ messages)
` [RFC PATCH v4 06/40] mm: Demarcate and maintain pageblocks in region-order in the zones' freelists
` [Results] [RFC PATCH v4 00/40] mm: Memory Power Management

[BUG REPORT] ZSWAP: theoretical race condition issues
 2013-09-27  4:58 UTC  (11+ messages)

[PATCH V1] oom: avoid selecting threads sharing mm with init
 2013-09-27  2:04 UTC  (3+ messages)

[PATCHv2 0/9] split page table lock for PMD tables
 2013-09-27  0:04 UTC  (12+ messages)

mmotm 2013-09-26-16-15 uploaded
 2013-09-26 23:16 UTC 

[PATCH v7 0/6] rwsem: performance optimizations
 2013-09-26 22:21 UTC  (7+ messages)
` [PATCH v7 1/6] rwsem: check the lock before cpmxchg in down_write_trylock
` [PATCH v7 2/6] rwsem: remove 'out' label in do_wake
` [PATCH v7 3/6] rwsem: remove try_reader_grant label do_wake
` [PATCH v7 4/6] rwsem/wake: check lock before do atomic update
` [PATCH v7 5/6] MCS Lock: Restructure the MCS lock defines and locking code into its own file
` [PATCH v7 6/6] rwsem: do optimistic spinning for writer lock acquisition

[PATCHv6 00/22] Transparent huge page cache: phase 1, everything but mmap()
 2013-09-26 21:13 UTC  (6+ messages)

[RFC 0/4] cleancache: SSD backed cleancache backend
 2013-09-26 16:14 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;
as well as URLs for NNTP newsgroup(s).