vmstat.c (4f98a2fee8acdb4ac84545df98cccecfd130f8db) | vmstat.c (556adecba110bf5f1db6c6b56416cfab5bcab698) |
---|---|
1/* 2 * linux/mm/vmstat.c 3 * 4 * Manages VM statistics 5 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds 6 * 7 * zoned VM statistics 8 * Copyright (C) 2006 Silicon Graphics, Inc., --- 724 unchanged lines hidden (view full) --- 733#ifdef CONFIG_SMP 734 seq_printf(m, "\n vm stats threshold: %d", 735 pageset->stat_threshold); 736#endif 737 } 738 seq_printf(m, 739 "\n all_unreclaimable: %u" 740 "\n prev_priority: %i" | 1/* 2 * linux/mm/vmstat.c 3 * 4 * Manages VM statistics 5 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds 6 * 7 * zoned VM statistics 8 * Copyright (C) 2006 Silicon Graphics, Inc., --- 724 unchanged lines hidden (view full) --- 733#ifdef CONFIG_SMP 734 seq_printf(m, "\n vm stats threshold: %d", 735 pageset->stat_threshold); 736#endif 737 } 738 seq_printf(m, 739 "\n all_unreclaimable: %u" 740 "\n prev_priority: %i" |
741 "\n start_pfn: %lu", | 741 "\n start_pfn: %lu" 742 "\n inactive_ratio: %u", |
742 zone_is_all_unreclaimable(zone), 743 zone->prev_priority, | 743 zone_is_all_unreclaimable(zone), 744 zone->prev_priority, |
744 zone->zone_start_pfn); | 745 zone->zone_start_pfn, 746 zone->inactive_ratio); |
745 seq_putc(m, '\n'); 746} 747 748/* 749 * Output information about zones in @pgdat. 750 */ 751static int zoneinfo_show(struct seq_file *m, void *arg) 752{ --- 146 unchanged lines hidden --- | 747 seq_putc(m, '\n'); 748} 749 750/* 751 * Output information about zones in @pgdat. 752 */ 753static int zoneinfo_show(struct seq_file *m, void *arg) 754{ --- 146 unchanged lines hidden --- |