| Index: tools/deep_memory_profiler/dmprof
|
| diff --git a/tools/deep_memory_profiler/dmprof b/tools/deep_memory_profiler/dmprof
|
| index e4c04b0b89c9696fdd274ac19a861cba3dd20728..b6e2990ed7cc5b942358100db3e89e7523026e08 100755
|
| --- a/tools/deep_memory_profiler/dmprof
|
| +++ b/tools/deep_memory_profiler/dmprof
|
| @@ -550,7 +550,8 @@ class Dump(object):
|
| sum(self.counters[i] for i in removed))
|
| if 'total-exclude-profiler' in sizes:
|
| sizes['total-exclude-profiler'] = (
|
| - self.counters['total_committed'] - sizes['mmap-profiler'])
|
| + self.counters['total_committed'] -
|
| + (sizes['mmap-profiler'] + sizes['mmap-allocated-type']))
|
| if 'hour' in sizes:
|
| sizes['hour'] = (self.dump_time - first_dump_time) / 60.0 / 60.0
|
| if 'minute' in sizes:
|
|
|