|
@@ -1130,7 +1130,7 @@ static void frag_stop(struct seq_file *m, void *arg)
|
|
* If @assert_populated is true, only use callback for zones that are populated.
|
|
* If @assert_populated is true, only use callback for zones that are populated.
|
|
*/
|
|
*/
|
|
static void walk_zones_in_node(struct seq_file *m, pg_data_t *pgdat,
|
|
static void walk_zones_in_node(struct seq_file *m, pg_data_t *pgdat,
|
|
- bool assert_populated,
|
|
|
|
|
|
+ bool assert_populated, bool nolock,
|
|
void (*print)(struct seq_file *m, pg_data_t *, struct zone *))
|
|
void (*print)(struct seq_file *m, pg_data_t *, struct zone *))
|
|
{
|
|
{
|
|
struct zone *zone;
|
|
struct zone *zone;
|
|
@@ -1141,9 +1141,11 @@ static void walk_zones_in_node(struct seq_file *m, pg_data_t *pgdat,
|
|
if (assert_populated && !populated_zone(zone))
|
|
if (assert_populated && !populated_zone(zone))
|
|
continue;
|
|
continue;
|
|
|
|
|
|
- spin_lock_irqsave(&zone->lock, flags);
|
|
|
|
|
|
+ if (!nolock)
|
|
|
|
+ spin_lock_irqsave(&zone->lock, flags);
|
|
print(m, pgdat, zone);
|
|
print(m, pgdat, zone);
|
|
- spin_unlock_irqrestore(&zone->lock, flags);
|
|
|
|
|
|
+ if (!nolock)
|
|
|
|
+ spin_unlock_irqrestore(&zone->lock, flags);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
@@ -1166,7 +1168,7 @@ static void frag_show_print(struct seq_file *m, pg_data_t *pgdat,
|
|
static int frag_show(struct seq_file *m, void *arg)
|
|
static int frag_show(struct seq_file *m, void *arg)
|
|
{
|
|
{
|
|
pg_data_t *pgdat = (pg_data_t *)arg;
|
|
pg_data_t *pgdat = (pg_data_t *)arg;
|
|
- walk_zones_in_node(m, pgdat, true, frag_show_print);
|
|
|
|
|
|
+ walk_zones_in_node(m, pgdat, true, false, frag_show_print);
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1207,7 +1209,7 @@ static int pagetypeinfo_showfree(struct seq_file *m, void *arg)
|
|
seq_printf(m, "%6d ", order);
|
|
seq_printf(m, "%6d ", order);
|
|
seq_putc(m, '\n');
|
|
seq_putc(m, '\n');
|
|
|
|
|
|
- walk_zones_in_node(m, pgdat, true, pagetypeinfo_showfree_print);
|
|
|
|
|
|
+ walk_zones_in_node(m, pgdat, true, false, pagetypeinfo_showfree_print);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
@@ -1258,7 +1260,8 @@ static int pagetypeinfo_showblockcount(struct seq_file *m, void *arg)
|
|
for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
|
|
for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
|
|
seq_printf(m, "%12s ", migratetype_names[mtype]);
|
|
seq_printf(m, "%12s ", migratetype_names[mtype]);
|
|
seq_putc(m, '\n');
|
|
seq_putc(m, '\n');
|
|
- walk_zones_in_node(m, pgdat, true, pagetypeinfo_showblockcount_print);
|
|
|
|
|
|
+ walk_zones_in_node(m, pgdat, true, false,
|
|
|
|
+ pagetypeinfo_showblockcount_print);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
@@ -1284,7 +1287,8 @@ static void pagetypeinfo_showmixedcount(struct seq_file *m, pg_data_t *pgdat)
|
|
seq_printf(m, "%12s ", migratetype_names[mtype]);
|
|
seq_printf(m, "%12s ", migratetype_names[mtype]);
|
|
seq_putc(m, '\n');
|
|
seq_putc(m, '\n');
|
|
|
|
|
|
- walk_zones_in_node(m, pgdat, true, pagetypeinfo_showmixedcount_print);
|
|
|
|
|
|
+ walk_zones_in_node(m, pgdat, true, true,
|
|
|
|
+ pagetypeinfo_showmixedcount_print);
|
|
#endif /* CONFIG_PAGE_OWNER */
|
|
#endif /* CONFIG_PAGE_OWNER */
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1446,7 +1450,7 @@ static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,
|
|
static int zoneinfo_show(struct seq_file *m, void *arg)
|
|
static int zoneinfo_show(struct seq_file *m, void *arg)
|
|
{
|
|
{
|
|
pg_data_t *pgdat = (pg_data_t *)arg;
|
|
pg_data_t *pgdat = (pg_data_t *)arg;
|
|
- walk_zones_in_node(m, pgdat, false, zoneinfo_show_print);
|
|
|
|
|
|
+ walk_zones_in_node(m, pgdat, false, false, zoneinfo_show_print);
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1852,7 +1856,7 @@ static int unusable_show(struct seq_file *m, void *arg)
|
|
if (!node_state(pgdat->node_id, N_MEMORY))
|
|
if (!node_state(pgdat->node_id, N_MEMORY))
|
|
return 0;
|
|
return 0;
|
|
|
|
|
|
- walk_zones_in_node(m, pgdat, true, unusable_show_print);
|
|
|
|
|
|
+ walk_zones_in_node(m, pgdat, true, false, unusable_show_print);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
@@ -1904,7 +1908,7 @@ static int extfrag_show(struct seq_file *m, void *arg)
|
|
{
|
|
{
|
|
pg_data_t *pgdat = (pg_data_t *)arg;
|
|
pg_data_t *pgdat = (pg_data_t *)arg;
|
|
|
|
|
|
- walk_zones_in_node(m, pgdat, true, extfrag_show_print);
|
|
|
|
|
|
+ walk_zones_in_node(m, pgdat, true, false, extfrag_show_print);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|