74b1de
From 7221352670a750e35268573dba36c139a5041b14 Mon Sep 17 00:00:00 2001
74b1de
From: Krutika Dhananjay <kdhananj@redhat.com>
74b1de
Date: Fri, 3 May 2019 10:50:40 +0530
74b1de
Subject: [PATCH 188/192] features/shard: Fix integer overflow in block count
74b1de
 accounting
74b1de
74b1de
... by holding delta_blocks in 64-bit int as opposed to 32-bit int.
74b1de
74b1de
> Upstream: https://review.gluster.org/22655
74b1de
> BUG: 1705884
74b1de
> Change-Id: I2c1ddab17457f45e27428575ad16fa678fd6c0eb
74b1de
74b1de
Change-Id: I2c1ddab17457f45e27428575ad16fa678fd6c0eb
74b1de
updates: bz#1668001
74b1de
Signed-off-by: Krutika Dhananjay <kdhananj@redhat.com>
74b1de
Reviewed-on: https://code.engineering.redhat.com/gerrit/173476
74b1de
Tested-by: RHGS Build Bot <nigelb@redhat.com>
74b1de
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
74b1de
---
74b1de
 xlators/features/shard/src/shard.h | 2 +-
74b1de
 1 file changed, 1 insertion(+), 1 deletion(-)
74b1de
74b1de
diff --git a/xlators/features/shard/src/shard.h b/xlators/features/shard/src/shard.h
74b1de
index 570fe46..cd6a663 100644
74b1de
--- a/xlators/features/shard/src/shard.h
74b1de
+++ b/xlators/features/shard/src/shard.h
74b1de
@@ -275,7 +275,7 @@ typedef struct shard_local {
74b1de
     size_t req_size;
74b1de
     size_t readdir_size;
74b1de
     int64_t delta_size;
74b1de
-    int delta_blocks;
74b1de
+    int64_t delta_blocks;
74b1de
     loc_t loc;
74b1de
     loc_t dot_shard_loc;
74b1de
     loc_t dot_shard_rm_loc;
74b1de
-- 
74b1de
1.8.3.1
74b1de