Commit f4fa0370 authored by Gargi Sharma's avatar Gargi Sharma Committed by Greg Kroah-Hartman

staging: lustre: Remove max_u64 function

Removed the max_u64 function to find the maximum value of
two unsigned 64 bit numbers to use the linux macro max
instead.
Signed-off-by: default avatarGargi Sharma <gs051095@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 91800b05
...@@ -101,11 +101,6 @@ static inline int node_equal(struct interval_node *n1, struct interval_node *n2) ...@@ -101,11 +101,6 @@ static inline int node_equal(struct interval_node *n1, struct interval_node *n2)
return extent_equal(&n1->in_extent, &n2->in_extent); return extent_equal(&n1->in_extent, &n2->in_extent);
} }
static inline __u64 max_u64(__u64 x, __u64 y)
{
return x > y ? x : y;
}
static struct interval_node *interval_first(struct interval_node *node) static struct interval_node *interval_first(struct interval_node *node)
{ {
if (!node) if (!node)
...@@ -134,8 +129,8 @@ static void __rotate_change_maxhigh(struct interval_node *node, ...@@ -134,8 +129,8 @@ static void __rotate_change_maxhigh(struct interval_node *node,
rotate->in_max_high = node->in_max_high; rotate->in_max_high = node->in_max_high;
left_max = node->in_left ? node->in_left->in_max_high : 0; left_max = node->in_left ? node->in_left->in_max_high : 0;
right_max = node->in_right ? node->in_right->in_max_high : 0; right_max = node->in_right ? node->in_right->in_max_high : 0;
node->in_max_high = max_u64(interval_high(node), node->in_max_high = max(interval_high(node),
max_u64(left_max, right_max)); max(left_max, right_max));
} }
/* The left rotation "pivots" around the link from node to node->right, and /* The left rotation "pivots" around the link from node to node->right, and
...@@ -394,8 +389,8 @@ static void update_maxhigh(struct interval_node *node, ...@@ -394,8 +389,8 @@ static void update_maxhigh(struct interval_node *node,
while (node) { while (node) {
left_max = node->in_left ? node->in_left->in_max_high : 0; left_max = node->in_left ? node->in_left->in_max_high : 0;
right_max = node->in_right ? node->in_right->in_max_high : 0; right_max = node->in_right ? node->in_right->in_max_high : 0;
node->in_max_high = max_u64(interval_high(node), node->in_max_high = max(interval_high(node),
max_u64(left_max, right_max)); max(left_max, right_max));
if (node->in_max_high >= old_maxhigh) if (node->in_max_high >= old_maxhigh)
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment