}
 
 static void __split_huge_page(struct page *page, struct list_head *list,
-               pgoff_t end, unsigned long flags)
+               pgoff_t end)
 {
        struct page *head = compound_head(page);
        pg_data_t *pgdat = page_pgdat(head);
        unsigned int nr = thp_nr_pages(head);
        int i;
 
-       lruvec = mem_cgroup_page_lruvec(head, pgdat);
-
        /* complete memcg works before add pages to LRU */
        mem_cgroup_split_huge_fixup(head);
 
                xa_lock(&swap_cache->i_pages);
        }
 
+       /* prevent PageLRU to go away from under us, and freeze lru stats */
+       spin_lock(&pgdat->lru_lock);
+
+       lruvec = mem_cgroup_page_lruvec(head, pgdat);
+
        for (i = nr - 1; i >= 1; i--) {
                __split_huge_page_tail(head, i, lruvec, list);
                /* Some pages can be beyond i_size: drop them from page cache */
        }
 
        ClearPageCompound(head);
+       spin_unlock(&pgdat->lru_lock);
+       /* Caller disabled irqs, so they are still disabled here */
 
        split_page_owner(head, nr);
 
                page_ref_add(head, 2);
                xa_unlock(&head->mapping->i_pages);
        }
-
-       spin_unlock_irqrestore(&pgdat->lru_lock, flags);
+       local_irq_enable();
 
        remap_page(head, nr);
 
 int split_huge_page_to_list(struct page *page, struct list_head *list)
 {
        struct page *head = compound_head(page);
-       struct pglist_data *pgdata = NODE_DATA(page_to_nid(head));
        struct deferred_split *ds_queue = get_deferred_split_queue(head);
        struct anon_vma *anon_vma = NULL;
        struct address_space *mapping = NULL;
        int count, mapcount, extra_pins, ret;
-       unsigned long flags;
        pgoff_t end;
 
        VM_BUG_ON_PAGE(is_huge_zero_page(head), head);
        unmap_page(head);
        VM_BUG_ON_PAGE(compound_mapcount(head), head);
 
-       /* prevent PageLRU to go away from under us, and freeze lru stats */
-       spin_lock_irqsave(&pgdata->lru_lock, flags);
-
+       /* block interrupt reentry in xa_lock and spinlock */
+       local_irq_disable();
        if (mapping) {
                XA_STATE(xas, &mapping->i_pages, page_index(head));
 
                                __dec_lruvec_page_state(head, NR_FILE_THPS);
                }
 
-               __split_huge_page(page, list, end, flags);
+               __split_huge_page(page, list, end);
                ret = 0;
        } else {
                if (IS_ENABLED(CONFIG_DEBUG_VM) && mapcount) {
                spin_unlock(&ds_queue->split_queue_lock);
 fail:          if (mapping)
                        xa_unlock(&mapping->i_pages);
-               spin_unlock_irqrestore(&pgdata->lru_lock, flags);
+               local_irq_enable();
                remap_page(head, thp_nr_pages(head));
                ret = -EBUSY;
        }