linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
 messages from 2016-12-14 19:55:31 to 2016-12-16 17:36:50 UTC [more...]

OOM: Better, but still there on 4.9
 2016-12-16 17:31 UTC  (5+ messages)
  ` OOM: Better, but still there on
    ` [PATCH 1/2] mm: consolidate GFP_NOFAIL checks in the allocator slowpath
    ` [PATCH 2/2] mm, oom: do not enfore OOM killer for __GFP_NOFAIL automatically

[PATCH 0/2] arm64: numa: fix spurious BUG() on NOMAP regions
 2016-12-16 17:14 UTC  (7+ messages)
` [PATCH 2/2] arm64: mm: enable CONFIG_HOLES_IN_ZONE for NUMA

[PATCH 1/4] mm: drop zap_details::ignore_dirty
 2016-12-16 17:02 UTC  (7+ messages)
` [PATCH 2/4] mm: drop zap_details::check_swap_entries
` [PATCH 3/4] mm: drop unused argument of zap_page_range()
` [PATCH 4/4] oom-reaper: use madvise_dontneed() instead of unmap_page_range()

[PATCH v3] arm64: mm: Fix NOMAP page initialization
 2016-12-16 16:54 UTC 

[PATCH 0/9 v2] scope GFP_NOFS api
 2016-12-16 16:38 UTC  (20+ messages)
` [PATCH 1/9] lockdep: allow to disable reclaim lockup detection
` [PATCH 2/9] xfs: introduce and use KM_NOLOCKDEP to silence reclaim lockdep false positives
  ` [PATCH 2/9 v2] "
` [PATCH 3/9] xfs: abstract PF_FSTRANS to PF_MEMALLOC_NOFS
` [PATCH 4/9] mm: introduce memalloc_nofs_{save,restore} API
` [PATCH 5/9] xfs: use memalloc_nofs_{save,restore} instead of memalloc_noio*
` [PATCH 6/9] jbd2: mark the transaction context with the scope GFP_NOFS context
` [PATCH 7/9] jbd2: make the whole kjournald2 kthread NOFS safe
` [PATCH 8/9] Revert "ext4: avoid deadlocks in the writeback path by using sb_getblk_gfp"
` [PATCH 9/9] Revert "ext4: fix wrong gfp type under transaction"
` [DEBUG PATCH 0/2] debug explicit GFP_NO{FS,IO} usage from the scope context
  ` [DEBUG PATCH 1/2] mm, debug: report when GFP_NO{FS,IO} is used explicitly from memalloc_no{fs,io}_{save,restore} context
  ` [DEBUG PATCH 2/2] silent warnings which we cannot do anything about

[PATCH v4 1/3] dax: masking off __GFP_FS in fs DAX handlers
 2016-12-16 16:19 UTC  (5+ messages)
` [PATCH v4 2/3] mm, dax: make pmd_fault() and friends to be the same as fault()
` [PATCH v4 3/3] mm, dax: move pmd_fault() to take only vmf parameter

[PATCH kernel v5 0/5] Extend virtio-balloon for fast (de)inflating & fast live migration
 2016-12-16 16:01 UTC  (23+ messages)
            ` [Qemu-devel] "

[PATCH 1/4] mm: add new mmgrab() helper
 2016-12-16 14:53 UTC  (28+ messages)
` [PATCH 2/4] mm: add new mmget() helper
` [PATCH 3/4] mm: use mmget_not_zero() helper
` [PATCH 4/4] [RFC!] mm: 'struct mm_struct' reference counting debugging
      ` crash during oom reaper (was: Re: [PATCH 4/4] [RFC!] mm: 'struct mm_struct' reference counting debugging)
          ` crash during oom reaper

[PATCH 00/42] userfaultfd tmpfs/hugetlbfs/non-cooperative v2
 2016-12-16 14:48 UTC  (43+ messages)
` [PATCH 01/42] userfaultfd: document _IOR/_IOW
` [PATCH 02/42] userfaultfd: correct comment about UFFD_FEATURE_PAGEFAULT_FLAG_WP
` [PATCH 03/42] userfaultfd: convert BUG() to WARN_ON_ONCE()
` [PATCH 04/42] userfaultfd: use vma_is_anonymous
` [PATCH 05/42] userfaultfd: non-cooperative: Split the find_userfault() routine
` [PATCH 06/42] userfaultfd: non-cooperative: Add ability to report non-PF events from uffd descriptor
` [PATCH 07/42] userfaultfd: non-cooperative: report all available features to userland
` [PATCH 08/42] userfaultfd: non-cooperative: Add fork() event
` [PATCH 09/42] userfaultfd: non-cooperative: Add fork() event, build warning fix
` [PATCH 10/42] userfaultfd: non-cooperative: dup_userfaultfd: use mm_count instead of mm_users
` [PATCH 11/42] userfaultfd: non-cooperative: Add mremap() event
` [PATCH 12/42] userfaultfd: non-cooperative: optimize mremap_userfaultfd_complete()
` [PATCH 13/42] userfaultfd: non-cooperative: Add madvise() event for MADV_DONTNEED request
` [PATCH 14/42] userfaultfd: non-cooperative: avoid MADV_DONTNEED race condition
` [PATCH 15/42] userfaultfd: non-cooperative: wake userfaults after UFFDIO_UNREGISTER
` [PATCH 16/42] userfaultfd: hugetlbfs: add copy_huge_page_from_user for hugetlb userfaultfd support
` [PATCH 17/42] userfaultfd: hugetlbfs: add hugetlb_mcopy_atomic_pte for "
` [PATCH 18/42] userfaultfd: hugetlbfs: add __mcopy_atomic_hugetlb for huge page UFFDIO_COPY
` [PATCH 19/42] userfaultfd: hugetlbfs: fix __mcopy_atomic_hugetlb retry/error processing
` [PATCH 20/42] userfaultfd: hugetlbfs: add userfaultfd hugetlb hook
` [PATCH 21/42] userfaultfd: hugetlbfs: allow registration of ranges containing huge pages
` [PATCH 22/42] userfaultfd: hugetlbfs: add userfaultfd_hugetlb test
` [PATCH 23/42] userfaultfd: hugetlbfs: userfaultfd_huge_must_wait for hugepmd ranges
` [PATCH 24/42] userfaultfd: hugetlbfs: gup: support VM_FAULT_RETRY
` [PATCH 25/42] userfaultfd: hugetlbfs: reserve count on error in __mcopy_atomic_hugetlb
` [PATCH 26/42] userfaultfd: hugetlbfs: UFFD_FEATURE_MISSING_HUGETLBFS
` [PATCH 27/42] userfaultfd: introduce vma_can_userfault
` [PATCH 28/42] userfaultfd: shmem: add shmem_mcopy_atomic_pte for userfaultfd support
` [PATCH 29/42] userfaultfd: shmem: introduce vma_is_shmem
` [PATCH 30/42] userfaultfd: shmem: add tlbflush.h header for microblaze
` [PATCH 31/42] userfaultfd: shmem: use shmem_mcopy_atomic_pte for shared memory
` [PATCH 32/42] userfaultfd: shmem: add userfaultfd hook for shared memory faults
` [PATCH 33/42] userfaultfd: shmem: allow registration of shared memory ranges
` [PATCH 34/42] userfaultfd: shmem: add userfaultfd_shmem test
` [PATCH 35/42] userfaultfd: shmem: lock the page before adding it to pagecache
` [PATCH 36/42] userfaultfd: shmem: avoid leaking blocks and used blocks in UFFDIO_COPY
` [PATCH 37/42] userfaultfd: hugetlbfs: UFFD_FEATURE_MISSING_SHMEM
` [PATCH 38/42] userfaultfd: non-cooperative: selftest: introduce userfaultfd_open
` [PATCH 39/42] userfaultfd: non-cooperative: selftest: add ufd parameter to copy_page
` [PATCH 40/42] userfaultfd: non-cooperative: selftest: add test for FORK, MADVDONTNEED and REMAP events
` [PATCH 41/42] userfaultfd: selftest: test UFFDIO_ZEROPAGE on all memory types
` [PATCH 42/42] mm: mprotect: use pmd_trans_unstable instead of taking the pmd_lock

jemalloc testsuite stalls in memset
 2016-12-16 14:16 UTC  (4+ messages)

[PATCH] mm: simplify node/zone name printing
 2016-12-16 12:32 UTC 

[PATCH v2 1/2] mm, page_alloc: don't convert pfn to idx when merging
 2016-12-16 12:00 UTC  (2+ messages)
` [PATCH v2 2/2] mm, page_alloc: avoid page_to_pfn() when merging buddies

[PATCH] mm: consolidate GFP_NOFAIL checks in the allocator slowpath
 2016-12-16 11:50 UTC  (6+ messages)
  ` [PATCH v2] "

[PATCH v3 1/3] dax: masking off __GFP_FS in fs DAX handlers
 2016-12-16  8:34 UTC  (7+ messages)
` [PATCH v3 2/3] mm, dax: make pmd_fault() and friends to be the same as fault()
` [PATCH v3 3/3] mm, dax: move pmd_fault() to take only vmf parameter

[LSF/MM TOPIC] Un-addressable device memory and block/fs implications
 2016-12-16  8:14 UTC  (12+ messages)
        ` [Lsf-pc] "
` [LSF/MM ATTEND] "

[PATCH v2] block: avoid incorrect bdi_unregiter call
 2016-12-16  5:00 UTC  (2+ messages)

[PATCH 15/33] userfaultfd: hugetlbfs: add __mcopy_atomic_hugetlb for huge page UFFDIO_COPY
 2016-12-16  3:54 UTC  (12+ messages)

[RFC, PATCHv1 00/28] 5-level paging
 2016-12-15 20:57 UTC  (13+ messages)
` [RFC, PATCHv1 15/28] x86: detect 5-level paging support

[PATCH 5/8] linux: drop __bitwise__ everywhere
 2016-12-15 19:44 UTC  (5+ messages)

[PATCH 0/2] mm, slab: consolidate KMALLOC_MAX_SIZE
 2016-12-15 19:11 UTC  (5+ messages)
` [PATCH 1/2] bpf: do not use KMALLOC_SHIFT_MAX
` [PATCH 2/2] mm, slab: make sure that KMALLOC_MAX_SIZE will fit into MAX_ORDER

[PATCH] MAINTAINERS, mm: add IRC info and update include file list
 2016-12-15 18:29 UTC  (3+ messages)

Designing a safe RX-zero-copy Memory Model for Networking
 2016-12-15 16:38 UTC  (26+ messages)

[PATCH] arm64: mm: Fix NOMAP page initialization
 2016-12-15 15:48 UTC  (6+ messages)

[PATCH v2 1/3] dax: masking off __GFP_FS in fs DAX handlers
 2016-12-15 14:04 UTC  (7+ messages)
` [PATCH v2 2/3] mm, dax: make pmd_fault() and friends to be the same as fault()
` [PATCH v2 3/3] mm, dax: move pmd_fault() to take only vmf parameter

[PATCH v8] powerpc: Do not make the entire heap executable
 2016-12-15 13:19 UTC 

[PATCH v6] mm: Add memory allocation watchdog kernel thread
 2016-12-15 10:24 UTC  (2+ messages)

[PATCH] mm/page_alloc: Wait for oom_lock before retrying
 2016-12-15 10:21 UTC  (18+ messages)

[PATCH] mm: throttle show_mem from warn_alloc
 2016-12-15 10:15 UTC 

[PATCH 0/3] mm, oom: add oom detection tracepoints
 2016-12-15  8:18 UTC  (5+ messages)
` [PATCH 3/3] oom, trace: add compaction retry tracepoint

[PATCH] mm: fadvise: avoid expensive remote LRU cache draining after FADV_DONTNEED
 2016-12-15  4:09 UTC  (6+ messages)
      ` [PATCH v2] "

[PATCH/RFC] z3fold: add kref refcounting
 2016-12-15  2:15 UTC  (2+ messages)

mmotm 2016-12-14-16-01 uploaded
 2016-12-15  0:02 UTC 

[PATCH] tmpfs: change shmem_mapping() to test shmem_aops
 2016-12-14 21:15 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).