From e627977617dd765f6b58a70882c6acda6c6aab6e Mon Sep 17 00:00:00 2001 From: Krutika Dhananjay Date: Fri, 5 Oct 2018 11:32:21 +0530 Subject: features/shard: Hold a ref on base inode when adding a shard to lru list In __shard_update_shards_inode_list(), previously shard translator was not holding a ref on the base inode whenever a shard was added to the lru list. But if the base shard is forgotten and destroyed either by fuse due to memory pressure or due to the file being deleted at some point by a different client with this client still containing stale shards in its lru list, the client would crash at the time of locking lru_base_inode->lock owing to illegal memory access. So now the base shard is ref'd into the inode ctx of every shard that is added to lru list until it gets lru'd out. The patch also handles the case where none of the shards associated with a file that is about to be deleted are part of the LRU list and where an unlink at the beginning of the operation destroys the base inode (because there are no refkeepers) and hence all of the shards that are about to be deleted will be resolved without the existence of a base shard in-memory. This, if not handled properly, could lead to a crash. Change-Id: Ic15ca41444dd04684a9458bd4a526b1d3e160499 updates: bz#1605056 Signed-off-by: Krutika Dhananjay --- tests/volume.rc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/volume.rc') diff --git a/tests/volume.rc b/tests/volume.rc index cc0b5c670e4..261c6554d46 100644 --- a/tests/volume.rc +++ b/tests/volume.rc @@ -857,7 +857,8 @@ function get_active_fd_count { function get_mount_active_size_value { local vol=$1 - local statedump=$(generate_mount_statedump $vol) + local mount=$2 + local statedump=$(generate_mount_statedump $vol $mount) sleep 1 local val=$(grep "active_size" $statedump | cut -f2 -d'=' | tail -1) rm -f $statedump @@ -866,7 +867,8 @@ function get_mount_active_size_value { function get_mount_lru_size_value { local vol=$1 - local statedump=$(generate_mount_statedump $vol) + local mount=$2 + local statedump=$(generate_mount_statedump $vol $mount) sleep 1 local val=$(grep "lru_size" $statedump | cut -f2 -d'=' | tail -1) rm -f $statedump -- cgit