SCAN_CGROUP_CHARGE_FAIL,
        SCAN_EXCEED_SWAP_PTE,
        SCAN_TRUNCATED,
+       SCAN_PAGE_HAS_PRIVATE,
 };
 
 #define CREATE_TRACE_POINTS
            (vm_flags & VM_NOHUGEPAGE) ||
            test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
                return false;
-       if (shmem_file(vma->vm_file)) {
+
+       if (shmem_file(vma->vm_file) ||
+           (IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) &&
+            vma->vm_file &&
+            (vm_flags & VM_DENYWRITE))) {
                if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
                        return false;
                return IS_ALIGNED((vma->vm_start >> PAGE_SHIFT) - vma->vm_pgoff,
        unsigned long hstart, hend;
 
        /*
-        * khugepaged does not yet work on non-shmem files or special
-        * mappings. And file-private shmem THP is not supported.
+        * khugepaged only supports read-only files for non-shmem files.
+        * khugepaged does not yet work on special mappings. And
+        * file-private shmem THP is not supported.
         */
        if (!hugepage_vma_check(vma, vm_flags))
                return 0;
 }
 
 /**
- * collapse_file - collapse small tmpfs/shmem pages into huge one.
+ * collapse_file - collapse filemap/tmpfs/shmem pages into huge one.
  *
  * Basic scheme is simple, details are more complex:
  *  - allocate and lock a new huge page;
  *  - scan page cache replacing old pages with the new one
- *    + swap in pages if necessary;
+ *    + swap/gup in pages if necessary;
  *    + fill in gaps;
  *    + keep old pages around in case rollback is required;
  *  - if replacing succeeds:
        LIST_HEAD(pagelist);
        XA_STATE_ORDER(xas, &mapping->i_pages, start, HPAGE_PMD_ORDER);
        int nr_none = 0, result = SCAN_SUCCEED;
+       bool is_shmem = shmem_file(file);
 
+       VM_BUG_ON(!IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) && !is_shmem);
        VM_BUG_ON(start & (HPAGE_PMD_NR - 1));
 
        /* Only allocate from the target node */
        } while (1);
 
        __SetPageLocked(new_page);
-       __SetPageSwapBacked(new_page);
+       if (is_shmem)
+               __SetPageSwapBacked(new_page);
        new_page->index = start;
        new_page->mapping = mapping;
 
                struct page *page = xas_next(&xas);
 
                VM_BUG_ON(index != xas.xa_index);
-               if (!page) {
-                       /*
-                        * Stop if extent has been truncated or hole-punched,
-                        * and is now completely empty.
-                        */
-                       if (index == start) {
-                               if (!xas_next_entry(&xas, end - 1)) {
-                                       result = SCAN_TRUNCATED;
+               if (is_shmem) {
+                       if (!page) {
+                               /*
+                                * Stop if extent has been truncated or
+                                * hole-punched, and is now completely
+                                * empty.
+                                */
+                               if (index == start) {
+                                       if (!xas_next_entry(&xas, end - 1)) {
+                                               result = SCAN_TRUNCATED;
+                                               goto xa_locked;
+                                       }
+                                       xas_set(&xas, index);
+                               }
+                               if (!shmem_charge(mapping->host, 1)) {
+                                       result = SCAN_FAIL;
                                        goto xa_locked;
                                }
-                               xas_set(&xas, index);
+                               xas_store(&xas, new_page);
+                               nr_none++;
+                               continue;
                        }
-                       if (!shmem_charge(mapping->host, 1)) {
-                               result = SCAN_FAIL;
+
+                       if (xa_is_value(page) || !PageUptodate(page)) {
+                               xas_unlock_irq(&xas);
+                               /* swap in or instantiate fallocated page */
+                               if (shmem_getpage(mapping->host, index, &page,
+                                                 SGP_NOHUGE)) {
+                                       result = SCAN_FAIL;
+                                       goto xa_unlocked;
+                               }
+                       } else if (trylock_page(page)) {
+                               get_page(page);
+                               xas_unlock_irq(&xas);
+                       } else {
+                               result = SCAN_PAGE_LOCK;
                                goto xa_locked;
                        }
-                       xas_store(&xas, new_page);
-                       nr_none++;
-                       continue;
-               }
-
-               if (xa_is_value(page) || !PageUptodate(page)) {
-                       xas_unlock_irq(&xas);
-                       /* swap in or instantiate fallocated page */
-                       if (shmem_getpage(mapping->host, index, &page,
-                                               SGP_NOHUGE)) {
+               } else {        /* !is_shmem */
+                       if (!page || xa_is_value(page)) {
+                               xas_unlock_irq(&xas);
+                               page_cache_sync_readahead(mapping, &file->f_ra,
+                                                         file, index,
+                                                         PAGE_SIZE);
+                               /* drain pagevecs to help isolate_lru_page() */
+                               lru_add_drain();
+                               page = find_lock_page(mapping, index);
+                               if (unlikely(page == NULL)) {
+                                       result = SCAN_FAIL;
+                                       goto xa_unlocked;
+                               }
+                       } else if (!PageUptodate(page)) {
+                               xas_unlock_irq(&xas);
+                               wait_on_page_locked(page);
+                               if (!trylock_page(page)) {
+                                       result = SCAN_PAGE_LOCK;
+                                       goto xa_unlocked;
+                               }
+                               get_page(page);
+                       } else if (PageDirty(page)) {
                                result = SCAN_FAIL;
-                               goto xa_unlocked;
+                               goto xa_locked;
+                       } else if (trylock_page(page)) {
+                               get_page(page);
+                               xas_unlock_irq(&xas);
+                       } else {
+                               result = SCAN_PAGE_LOCK;
+                               goto xa_locked;
                        }
-               } else if (trylock_page(page)) {
-                       get_page(page);
-                       xas_unlock_irq(&xas);
-               } else {
-                       result = SCAN_PAGE_LOCK;
-                       goto xa_locked;
                }
 
                /*
                        goto out_unlock;
                }
 
+               if (page_has_private(page) &&
+                   !try_to_release_page(page, GFP_KERNEL)) {
+                       result = SCAN_PAGE_HAS_PRIVATE;
+                       goto out_unlock;
+               }
+
                if (page_mapped(page))
                        unmap_mapping_pages(mapping, index, 1, false);
 
                goto xa_unlocked;
        }
 
-       __inc_node_page_state(new_page, NR_SHMEM_THPS);
+       if (is_shmem)
+               __inc_node_page_state(new_page, NR_SHMEM_THPS);
+       else
+               __inc_node_page_state(new_page, NR_FILE_THPS);
+
        if (nr_none) {
                struct zone *zone = page_zone(new_page);
 
                __mod_node_page_state(zone->zone_pgdat, NR_FILE_PAGES, nr_none);
-               __mod_node_page_state(zone->zone_pgdat, NR_SHMEM, nr_none);
+               if (is_shmem)
+                       __mod_node_page_state(zone->zone_pgdat,
+                                             NR_SHMEM, nr_none);
        }
 
 xa_locked:
 
                SetPageUptodate(new_page);
                page_ref_add(new_page, HPAGE_PMD_NR - 1);
-               set_page_dirty(new_page);
                mem_cgroup_commit_charge(new_page, memcg, false, true);
+
+               if (is_shmem) {
+                       set_page_dirty(new_page);
+                       lru_cache_add_anon(new_page);
+               } else {
+                       lru_cache_add_file(new_page);
+               }
                count_memcg_events(memcg, THP_COLLAPSE_ALLOC, 1);
-               lru_cache_add_anon(new_page);
 
                /*
                 * Remove pte page tables, so we can re-fault the page as huge.
                /* Something went wrong: roll back page cache changes */
                xas_lock_irq(&xas);
                mapping->nrpages -= nr_none;
-               shmem_uncharge(mapping->host, nr_none);
+
+               if (is_shmem)
+                       shmem_uncharge(mapping->host, nr_none);
 
                xas_set(&xas, start);
                xas_for_each(&xas, page, end - 1) {
                        break;
                }
 
-               if (page_count(page) != 1 + page_mapcount(page)) {
+               if (page_count(page) !=
+                   1 + page_mapcount(page) + page_has_private(page)) {
                        result = SCAN_PAGE_COUNT;
                        break;
                }
                        VM_BUG_ON(khugepaged_scan.address < hstart ||
                                  khugepaged_scan.address + HPAGE_PMD_SIZE >
                                  hend);
-                       if (shmem_file(vma->vm_file)) {
+                       if (IS_ENABLED(CONFIG_SHMEM) && vma->vm_file) {
                                struct file *file;
                                pgoff_t pgoff = linear_page_index(vma,
                                                khugepaged_scan.address);
-                               if (!shmem_huge_enabled(vma))
+
+                               if (shmem_file(vma->vm_file)
+                                   && !shmem_huge_enabled(vma))
                                        goto skip;
                                file = get_file(vma->vm_file);
                                up_read(&mm->mmap_sem);