From 65c68fb75640be2c5744782081250dda886a7b56 Mon Sep 17 00:00:00 2001 From: Krutika Dhananjay Date: Tue, 10 Mar 2015 22:11:57 +0530 Subject: cluster/afr: Convert quota size from n/w to host order before use Change-Id: I3e4fe15716556441546fcd62b8ac2833869b21cf BUG: 1200670 Signed-off-by: Krutika Dhananjay Reviewed-on: http://review.gluster.org/9853 Reviewed-by: Ravishankar N Reviewed-by: Anuradha Talur Tested-by: Gluster Build System Reviewed-by: Pranith Kumar Karampuri Tested-by: Pranith Kumar Karampuri --- xlators/cluster/afr/src/afr-inode-read.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'xlators/cluster') diff --git a/xlators/cluster/afr/src/afr-inode-read.c b/xlators/cluster/afr/src/afr-inode-read.c index 79acbea2ff1..25d576d0261 100644 --- a/xlators/cluster/afr/src/afr-inode-read.c +++ b/xlators/cluster/afr/src/afr-inode-read.c @@ -30,6 +30,7 @@ #include "stack.h" #include "list.h" #include "call-stub.h" +#include "byte-order.h" #include "defaults.h" #include "common-utils.h" #include "compat-errno.h" @@ -78,6 +79,7 @@ afr_handle_quota_size (call_frame_t *frame, xlator_t *this) continue; if (dict_get_uint64 (replies[i].xdata, QUOTA_SIZE_KEY, &size)) continue; + size = ntoh64 (size); if (read_subvol == -1) read_subvol = i; if (size > max_size) { @@ -89,6 +91,8 @@ afr_handle_quota_size (call_frame_t *frame, xlator_t *this) if (!max_size) return read_subvol; + max_size = hton64 (max_size); + for (i = 0; i < priv->child_count; i++) { if (!replies[i].valid || replies[i].op_ret == -1) continue; -- cgit