diff options
-rw-r--r-- | drivers/base/node.c | 9 | ||||
-rw-r--r-- | include/linux/mmzone.h | 2 | ||||
-rw-r--r-- | mm/readahead.c | 8 | ||||
-rw-r--r-- | mm/vmstat.c | 8 |
4 files changed, 4 insertions, 23 deletions
diff --git a/drivers/base/node.c b/drivers/base/node.c index 001e6f6b9c1b..475e33f76e0d 100644 --- a/drivers/base/node.c +++ b/drivers/base/node.c | |||
@@ -40,13 +40,8 @@ static ssize_t node_read_meminfo(struct sys_device * dev, char * buf) | |||
40 | int n; | 40 | int n; |
41 | int nid = dev->id; | 41 | int nid = dev->id; |
42 | struct sysinfo i; | 42 | struct sysinfo i; |
43 | unsigned long inactive; | ||
44 | unsigned long active; | ||
45 | unsigned long free; | ||
46 | 43 | ||
47 | si_meminfo_node(&i, nid); | 44 | si_meminfo_node(&i, nid); |
48 | __get_zone_counts(&active, &inactive, &free, NODE_DATA(nid)); | ||
49 | |||
50 | 45 | ||
51 | n = sprintf(buf, "\n" | 46 | n = sprintf(buf, "\n" |
52 | "Node %d MemTotal: %8lu kB\n" | 47 | "Node %d MemTotal: %8lu kB\n" |
@@ -74,8 +69,8 @@ static ssize_t node_read_meminfo(struct sys_device * dev, char * buf) | |||
74 | nid, K(i.totalram), | 69 | nid, K(i.totalram), |
75 | nid, K(i.freeram), | 70 | nid, K(i.freeram), |
76 | nid, K(i.totalram - i.freeram), | 71 | nid, K(i.totalram - i.freeram), |
77 | nid, K(active), | 72 | nid, node_page_state(nid, NR_ACTIVE), |
78 | nid, K(inactive), | 73 | nid, node_page_state(nid, NR_INACTIVE), |
79 | #ifdef CONFIG_HIGHMEM | 74 | #ifdef CONFIG_HIGHMEM |
80 | nid, K(i.totalhigh), | 75 | nid, K(i.totalhigh), |
81 | nid, K(i.freehigh), | 76 | nid, K(i.freehigh), |
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index d15b1f68aef9..398f2ec55f54 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
@@ -444,8 +444,6 @@ typedef struct pglist_data { | |||
444 | 444 | ||
445 | #include <linux/memory_hotplug.h> | 445 | #include <linux/memory_hotplug.h> |
446 | 446 | ||
447 | void __get_zone_counts(unsigned long *active, unsigned long *inactive, | ||
448 | unsigned long *free, struct pglist_data *pgdat); | ||
449 | void get_zone_counts(unsigned long *active, unsigned long *inactive, | 447 | void get_zone_counts(unsigned long *active, unsigned long *inactive, |
450 | unsigned long *free); | 448 | unsigned long *free); |
451 | void build_all_zonelists(void); | 449 | void build_all_zonelists(void); |
diff --git a/mm/readahead.c b/mm/readahead.c index 0f539e8e827a..93d9ee692fd8 100644 --- a/mm/readahead.c +++ b/mm/readahead.c | |||
@@ -575,10 +575,6 @@ void handle_ra_miss(struct address_space *mapping, | |||
575 | */ | 575 | */ |
576 | unsigned long max_sane_readahead(unsigned long nr) | 576 | unsigned long max_sane_readahead(unsigned long nr) |
577 | { | 577 | { |
578 | unsigned long active; | 578 | return min(nr, (node_page_state(numa_node_id(), NR_INACTIVE) |
579 | unsigned long inactive; | 579 | + node_page_state(numa_node_id(), NR_FREE_PAGES)) / 2); |
580 | unsigned long free; | ||
581 | |||
582 | __get_zone_counts(&active, &inactive, &free, NODE_DATA(numa_node_id())); | ||
583 | return min(nr, (inactive + free) / 2); | ||
584 | } | 580 | } |
diff --git a/mm/vmstat.c b/mm/vmstat.c index 2ee7ec5e003f..21ba6f88b35c 100644 --- a/mm/vmstat.c +++ b/mm/vmstat.c | |||
@@ -13,14 +13,6 @@ | |||
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/cpu.h> | 14 | #include <linux/cpu.h> |
15 | 15 | ||
16 | void __get_zone_counts(unsigned long *active, unsigned long *inactive, | ||
17 | unsigned long *free, struct pglist_data *pgdat) | ||
18 | { | ||
19 | *active = node_page_state(pgdat->node_id, NR_ACTIVE); | ||
20 | *inactive = node_page_state(pgdat->node_id, NR_INACTIVE); | ||
21 | *free = node_page_state(pgdat->node_id, NR_FREE_PAGES); | ||
22 | } | ||
23 | |||
24 | void get_zone_counts(unsigned long *active, | 16 | void get_zone_counts(unsigned long *active, |
25 | unsigned long *inactive, unsigned long *free) | 17 | unsigned long *inactive, unsigned long *free) |
26 | { | 18 | { |