diff --git a/linux-ramdump-parser-v2/qdss.py b/linux-ramdump-parser-v2/qdss.py
old mode 100644
new mode 100755
index 1cfff7003660402918a23289bd464679259b4117..97de37fdc09a3d60f12c8ee6da326c8d1cb39287
--- a/linux-ramdump-parser-v2/qdss.py
+++ b/linux-ramdump-parser-v2/qdss.py
@@ -305,7 +305,7 @@ class QDSSDump():
                     start = blk
                     continue
                 elif (entry & 0x2) == 2:
-                    if blk < rwpval and rwpval < (blk + 4096):
+                    if blk <= rwpval and rwpval < (blk + 4096):
                         if not bottom_delta_read:
                             it = range(rwpval, blk + 4096)
                             bottom_delta_read = True
@@ -319,7 +319,7 @@ class QDSSDump():
                         continue
                     start += 4
                 elif (entry & 0x1) == 1:
-                    if blk < rwpval and rwpval < (blk + 4096):
+                    if blk <= rwpval and rwpval < (blk + 4096):
                         if not bottom_delta_read:
                             it = range(rwpval, blk + 4096)
                             bottom_delta_read = True