summaryrefslogtreecommitdiffstats
path: root/xlators/performance/quick-read/src/quick-read.h
diff options
context:
space:
mode:
authorRaghavendra G <raghavendra@gluster.com>2012-03-30 10:04:45 +0530
committerVijay Bellur <vijay@gluster.com>2012-04-02 02:38:24 -0700
commit0f3b55be4376c1c59131d999469d3b3c6aaddd87 (patch)
tree628c5f71c5391403ebaa48a1e56a830d89739016 /xlators/performance/quick-read/src/quick-read.h
parent67450da471307d1c09bd21694a76fb12b2fcd405 (diff)
performance/quick-read: open shouldn't be worried about checking
whether it is being done on a deleted dentry. lookup would've taken care of sending ENOENT, in case the entry was already deleted. Change-Id: I79c51e34ae3a202eb04123a2a58d0e819b6e94fa BUG: 808017 Signed-off-by: Raghavendra G <raghavendra@gluster.com> Reviewed-on: http://review.gluster.com/3044 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators/performance/quick-read/src/quick-read.h')
-rw-r--r--xlators/performance/quick-read/src/quick-read.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/xlators/performance/quick-read/src/quick-read.h b/xlators/performance/quick-read/src/quick-read.h
index 6058d523b63..41ac4887bc6 100644
--- a/xlators/performance/quick-read/src/quick-read.h
+++ b/xlators/performance/quick-read/src/quick-read.h
@@ -74,13 +74,6 @@ struct qr_local {
};
typedef struct qr_local qr_local_t;
-struct qr_dentry {
- char *name;
- uuid_t pargfid;
- struct list_head unlink_list;
-};
-typedef struct qr_dentry qr_dentry_t;
-
struct qr_inode {
dict_t *xattr;
inode_t *inode;
@@ -119,7 +112,6 @@ typedef struct qr_inode_table qr_inode_table_t;
struct qr_private {
qr_conf_t conf;
qr_inode_table_t table;
- struct mem_pool *dentry_pool;
};
typedef struct qr_private qr_private_t;