Re: [mp2] Apache2::SizeLimit should be using $s->rss, not $s->size for Linux::Smaps
Max Kanat-Alexander <[email protected]>
| Newsgroups | gmane.comp.apache.mod-perl,gmane.comp.java.ofbiz.devel |
|---|---|
| Organization | Bugzilla Project |
| Message-ID | <[email protected]> |
On 02/02/2010 02:19 PM, Fred Moyer wrote:
> Can you submit these patches inline?
Here is the patch inline:
Index: lib/Apache/SizeLimit/Core.pm
===================================================================
--- lib/Apache/SizeLimit/Core.pm (revision 905815)
+++ lib/Apache/SizeLimit/Core.pm (working copy)
@@ -175,7 +175,7 @@
return $class->_linux_size_check() unless $USE_SMAPS;
my $s = Linux::Smaps->new($$)->all;
- return ($s->size, $s->shared_clean + $s->shared_dirty);
+ return ($s->rss, $s->shared_clean + $s->shared_dirty);
}
sub _linux_size_check {