1. 23 3月, 2022 2 次提交
  2. 30 1月, 2022 1 次提交
  3. 15 1月, 2022 5 次提交
  4. 26 12月, 2021 2 次提交
  5. 16 11月, 2021 1 次提交
  6. 14 11月, 2021 1 次提交
  7. 07 11月, 2021 5 次提交
  8. 29 10月, 2021 2 次提交
    • Y
      mm: filemap: check if THP has hwpoisoned subpage for PMD page fault · eac96c3e
      Yang Shi 提交于
      When handling shmem page fault the THP with corrupted subpage could be
      PMD mapped if certain conditions are satisfied.  But kernel is supposed
      to send SIGBUS when trying to map hwpoisoned page.
      
      There are two paths which may do PMD map: fault around and regular
      fault.
      
      Before commit f9ce0be7 ("mm: Cleanup faultaround and finish_fault()
      codepaths") the thing was even worse in fault around path.  The THP
      could be PMD mapped as long as the VMA fits regardless what subpage is
      accessed and corrupted.  After this commit as long as head page is not
      corrupted the THP could be PMD mapped.
      
      In the regular fault path the THP could be PMD mapped as long as the
      corrupted page is not accessed and the VMA fits.
      
      This loophole could be fixed by iterating every subpage to check if any
      of them is hwpoisoned or not, but it is somewhat costly in page fault
      path.
      
      So introduce a new page flag called HasHWPoisoned on the first tail
      page.  It indicates the THP has hwpoisoned subpage(s).  It is set if any
      subpage of THP is found hwpoisoned by memory failure and after the
      refcount is bumped successfully, then cleared when the THP is freed or
      split.
      
      The soft offline path doesn't need this since soft offline handler just
      marks a subpage hwpoisoned when the subpage is migrated successfully.
      But shmem THP didn't get split then migrated at all.
      
      Link: https://lkml.kernel.org/r/20211020210755.23964-3-shy828301@gmail.com
      Fixes: 800d8c63 ("shmem: add huge pages support")
      Signed-off-by: NYang Shi <shy828301@gmail.com>
      Reviewed-by: NNaoya Horiguchi <naoya.horiguchi@nec.com>
      Suggested-by: NKirill A. Shutemov <kirill.shutemov@linux.intel.com>
      Cc: Hugh Dickins <hughd@google.com>
      Cc: Matthew Wilcox <willy@infradead.org>
      Cc: Oscar Salvador <osalvador@suse.de>
      Cc: Peter Xu <peterx@redhat.com>
      Cc: <stable@vger.kernel.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      eac96c3e
    • Y
      mm: hwpoison: remove the unnecessary THP check · c7cb42e9
      Yang Shi 提交于
      When handling THP hwpoison checked if the THP is in allocation or free
      stage since hwpoison may mistreat it as hugetlb page.  After commit
      415c64c1 ("mm/memory-failure: split thp earlier in memory error
      handling") the problem has been fixed, so this check is no longer
      needed.  Remove it.  The side effect of the removal is hwpoison may
      report unsplit THP instead of unknown error for shmem THP.  It seems not
      like a big deal.
      
      The following patch "mm: filemap: check if THP has hwpoisoned subpage
      for PMD page fault" depends on this, which fixes shmem THP with
      hwpoisoned subpage(s) are mapped PMD wrongly.  So this patch needs to be
      backported to -stable as well.
      
      Link: https://lkml.kernel.org/r/20211020210755.23964-2-shy828301@gmail.comSigned-off-by: NYang Shi <shy828301@gmail.com>
      Suggested-by: NNaoya Horiguchi <naoya.horiguchi@nec.com>
      Acked-by: NNaoya Horiguchi <naoya.horiguchi@nec.com>
      Cc: Hugh Dickins <hughd@google.com>
      Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
      Cc: Matthew Wilcox <willy@infradead.org>
      Cc: Oscar Salvador <osalvador@suse.de>
      Cc: Peter Xu <peterx@redhat.com>
      Cc: <stable@vger.kernel.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      c7cb42e9
  9. 27 10月, 2021 1 次提交
  10. 27 9月, 2021 1 次提交
  11. 25 9月, 2021 2 次提交
  12. 04 9月, 2021 8 次提交
  13. 21 8月, 2021 1 次提交
  14. 13 7月, 2021 1 次提交
  15. 02 7月, 2021 1 次提交
  16. 01 7月, 2021 3 次提交
  17. 30 6月, 2021 2 次提交
  18. 25 6月, 2021 1 次提交