~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to mm/swapfile.c

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich, Luke Yelavich, Upstream Kernel Changes
  • Date: 2012-04-04 18:49:36 UTC
  • Revision ID: package-import@ubuntu.com-20120404184936-tqu735914muv4wpg
Tags: 3.2.0-22.30
[ Luke Yelavich ]

* [Config] Update configs after rebase against Ubuntu-3.2.0-22.35

[ Upstream Kernel Changes ]

* Low-latency: Rebase against Ubuntu-3.2.0-22.35

Show diffs side-by-side

added added

removed removed

Lines of Context:
937
937
        pmd = pmd_offset(pud, addr);
938
938
        do {
939
939
                next = pmd_addr_end(addr, end);
940
 
                if (unlikely(pmd_trans_huge(*pmd)))
941
 
                        continue;
942
 
                if (pmd_none_or_clear_bad(pmd))
 
940
                if (pmd_none_or_trans_huge_or_clear_bad(pmd))
943
941
                        continue;
944
942
                ret = unuse_pte_range(vma, pmd, addr, next, entry, page);
945
943
                if (ret)