|
@@ -139,7 +139,7 @@ static inline bool res_counter_limit_check_locked(struct res_counter *cnt)
|
|
|
|
|
|
static inline bool res_counter_soft_limit_check_locked(struct res_counter *cnt)
|
|
|
{
|
|
|
- if (cnt->usage < cnt->soft_limit)
|
|
|
+ if (cnt->usage <= cnt->soft_limit)
|
|
|
return true;
|
|
|
|
|
|
return false;
|
|
@@ -202,7 +202,7 @@ static inline bool res_counter_check_margin(struct res_counter *cnt,
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-static inline bool res_counter_check_under_soft_limit(struct res_counter *cnt)
|
|
|
+static inline bool res_counter_check_within_soft_limit(struct res_counter *cnt)
|
|
|
{
|
|
|
bool ret;
|
|
|
unsigned long flags;
|