summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2020-02-20 12:02:05 +0100
committerGitHub <noreply@github.com>2020-02-20 12:02:05 +0100
commit42c4d6aec7d23abaf6cf93b0da34b15cf080b789 (patch)
tree17107a2eaf58393120770dc2880da465c4e4d63e
parentc8c78bd4b9644483c8828f6dbf4cb67155ba526e (diff)
parenta3b0d8631ff8852967e864e3dd91d6238fe6bda1 (diff)
downloadredis-42c4d6aec7d23abaf6cf93b0da34b15cf080b789.tar.gz
Merge pull request #6911 from hayashier/fix-typo-fss
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 cc6b218a0..11e335afc 100644
--- a/src/object.c
+++ b/src/object.c
@@ -1102,13 +1102,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++;