Lines Matching refs:excess
533 int64_t excess; in rss_sample_col_cb() local
541 excess = rss - lcol->lcol_rss_cap; in rss_sample_col_cb()
542 if (excess > 0) { in rss_sample_col_cb()
635 int64_t excess = lcol->lcol_rss - lcol->lcol_rss_cap; in excess_print_cb() local
642 (long long)excess); in excess_print_cb()
658 int64_t excess; in scan_cb() local
667 if ((excess = lcol->lcol_rss - lcol->lcol_rss_cap) > 0) { in scan_cb()
668 scan(lcol, excess); in scan_cb()
682 int64_t excess; in scan_gz() local
692 excess = lcol->lcol_rss - lcol->lcol_rss_cap; in scan_gz()
693 if (project_over_cap && excess > 0) { in scan_gz()
696 excess = lcol->lcol_rss - lcol->lcol_rss_cap; in scan_gz()
699 if (excess > 0) { in scan_gz()
700 debug("global zone excess %lldKB\n", (long long)excess); in scan_gz()
701 scan(lcol, excess); in scan_gz()
716 int64_t excess; in soft_scan_cb() local
726 if ((excess = lcol->lcol_rss - lcol->lcol_rss_cap) > 0) { in soft_scan_cb()
728 excess * arg->ssa_scan_goal / arg->ssa_sum_excess; in soft_scan_cb()
735 (long long)excess, (long long)arg->ssa_scan_goal, in soft_scan_cb()
749 int64_t excess; in soft_scan_gz() local
760 excess = lcol->lcol_rss - lcol->lcol_rss_cap; in soft_scan_gz()
761 if (arg->ssa_project_over_cap && excess > 0) { in soft_scan_gz()
764 excess = lcol->lcol_rss - lcol->lcol_rss_cap; in soft_scan_gz()
767 if (excess > 0) { in soft_scan_gz()
769 excess * arg->ssa_scan_goal / arg->ssa_sum_excess; in soft_scan_gz()
776 (long long)excess, (long long)arg->ssa_scan_goal, in soft_scan_gz()