|
@@ -352,7 +352,7 @@ arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
|
|
|
extern void arch_unmap_area(struct mm_struct *, unsigned long);
|
|
|
extern void arch_unmap_area_topdown(struct mm_struct *, unsigned long);
|
|
|
|
|
|
-#if NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS
|
|
|
+#if USE_SPLIT_PTLOCKS
|
|
|
/*
|
|
|
* The mm counters are not protected by its page_table_lock,
|
|
|
* so must be incremented atomically.
|
|
@@ -363,7 +363,7 @@ extern void arch_unmap_area_topdown(struct mm_struct *, unsigned long);
|
|
|
#define inc_mm_counter(mm, member) atomic_long_inc(&(mm)->_##member)
|
|
|
#define dec_mm_counter(mm, member) atomic_long_dec(&(mm)->_##member)
|
|
|
|
|
|
-#else /* NR_CPUS < CONFIG_SPLIT_PTLOCK_CPUS */
|
|
|
+#else /* !USE_SPLIT_PTLOCKS */
|
|
|
/*
|
|
|
* The mm counters are protected by its page_table_lock,
|
|
|
* so can be incremented directly.
|
|
@@ -374,7 +374,7 @@ extern void arch_unmap_area_topdown(struct mm_struct *, unsigned long);
|
|
|
#define inc_mm_counter(mm, member) (mm)->_##member++
|
|
|
#define dec_mm_counter(mm, member) (mm)->_##member--
|
|
|
|
|
|
-#endif /* NR_CPUS < CONFIG_SPLIT_PTLOCK_CPUS */
|
|
|
+#endif /* !USE_SPLIT_PTLOCKS */
|
|
|
|
|
|
#define get_mm_rss(mm) \
|
|
|
(get_mm_counter(mm, file_rss) + get_mm_counter(mm, anon_rss))
|