diff --git a/OOMAnalyser.html b/OOMAnalyser.html
index 8893e7c..1b3d888 100644
--- a/OOMAnalyser.html
+++ b/OOMAnalyser.html
@@ -173,9 +173,10 @@ function goBack() {
Bit mask indicating the cores on which the process can run |
- Requested memory pages (order) |
-
- (2^)
+ | Requested memory (order) |
+
+ (2^) pages /
+
|
The kernel specifies the requested number of pages as exponent of power of two.
|
diff --git a/OOMAnalyser.py b/OOMAnalyser.py
index 51031ae..61bbc07 100644
--- a/OOMAnalyser.py
+++ b/OOMAnalyser.py
@@ -828,6 +828,7 @@ Killed process 6576 (java) total-vm:33914892kB, anon-rss:20629004kB, file-rss:0k
self.details['swap_cache_kb']
self.details['trigger_proc_requested_memory'] = 2**self.details['trigger_proc_order']
+ self.details['trigger_proc_requested_memory_kbytes'] = self.details['page_size']
# process gfp_mask
if self.details['trigger_proc_gfp_flags'] != '': # None has been is converted to ''