pcp->batch = batch;
 }
 
-/* a companion to setup_pagelist_highmark() */
+/* a companion to pageset_set_high() */
 static void pageset_set_batch(struct per_cpu_pageset *p, unsigned long batch)
 {
        pageset_update(&p->pcp, 6 * batch, max(1UL, 1 * batch));
 }
 
 /*
- * setup_pagelist_highmark() sets the high water mark for hot per_cpu_pagelist
+ * pageset_set_high() sets the high water mark for hot per_cpu_pagelist
  * to the value high for the pageset p.
  */
-static void setup_pagelist_highmark(struct per_cpu_pageset *p,
+static void pageset_set_high(struct per_cpu_pageset *p,
                                unsigned long high)
 {
        unsigned long batch = max(1UL, high / 4);
 
        pageset_init(pcp);
        if (percpu_pagelist_fraction)
-               setup_pagelist_highmark(pcp,
+               pageset_set_high(pcp,
                        (zone->managed_pages /
                                percpu_pagelist_fraction));
        else
                unsigned long  high;
                high = zone->managed_pages / percpu_pagelist_fraction;
                for_each_possible_cpu(cpu)
-                       setup_pagelist_highmark(
-                                       per_cpu_ptr(zone->pageset, cpu), high);
+                       pageset_set_high(per_cpu_ptr(zone->pageset, cpu),
+                                        high);
        }
        mutex_unlock(&pcp_batch_high_lock);
        return 0;