From 368f96700ec2868367104f9451c3e1bc38c97c95 Mon Sep 17 00:00:00 2001 From: Xavier Hernandez Date: Wed, 22 Jul 2015 17:08:02 +0200 Subject: cluster/ec: Allow read fops to be processed in parallel Currently ec only sends a single read request at a time for a given inode. Since reads do not interfere between them, this patch allows multiple concurrent read requests to be sent in parallel. Change-Id: If853430482a71767823f39ea70ff89797019d46b BUG: 1245689 Signed-off-by: Xavier Hernandez Reviewed-on: http://review.gluster.org/11742 Tested-by: NetBSD Build System Reviewed-by: Pranith Kumar Karampuri Tested-by: Gluster Build System --- libglusterfs/src/fd.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libglusterfs/src/fd.h') diff --git a/libglusterfs/src/fd.h b/libglusterfs/src/fd.h index 53ec93dec6c..a6dc48a0b0e 100644 --- a/libglusterfs/src/fd.h +++ b/libglusterfs/src/fd.h @@ -116,6 +116,9 @@ fd_t * fd_ref (fd_t *fd); +fd_t * +__fd_unref (fd_t *fd); + void fd_unref (fd_t *fd); -- cgit