summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhayashier <goodheaven700@gmail.com>2019-12-31 17:46:48 +0900
committerhayashier <goodheaven700@gmail.com>2019-12-31 17:46:48 +0900
commita3b0d8631ff8852967e864e3dd91d6238fe6bda1 (patch)
treef51e6dd4cfbddf61aa1b2e4bf3f240205b61ebc6
parent6e4f70b8170e14ba8a2ada2fde4a75e073effee3 (diff)
downloadredis-a3b0d8631ff8852967e864e3dd91d6238fe6bda1.tar.gz
fix typo from fss to rss
-rw-r--r--src/object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object.c b/src/object.c
index 2201a317a..3ae164919 100644
--- a/src/object.c
+++ b/src/object.c
@@ -1119,13 +1119,13 @@ sds getMemoryDoctorReport(void) {
num_reports++;
}
- /* Allocator fss is higher than 1.1 and 10MB ? */
+ /* Allocator rss is higher than 1.1 and 10MB ? */
if (mh->allocator_rss > 1.1 && mh->allocator_rss_bytes > 10<<20) {
high_alloc_rss = 1;
num_reports++;
}
- /* Non-Allocator fss is higher than 1.1 and 10MB ? */
+ /* Non-Allocator rss is higher than 1.1 and 10MB ? */
if (mh->rss_extra > 1.1 && mh->rss_extra_bytes > 10<<20) {
high_proc_rss = 1;
num_reports++;