summaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre
diff options
context:
space:
mode:
authorAastha Gupta <aastha.gupta4104@gmail.com>2017-10-18 17:44:22 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-10-18 15:34:46 +0200
commit0bb73711b7dd65f101413338ae8f2e566c5946d4 (patch)
tree7ca93c4d34b285685ba54498bbf6ea7dbeef946e /drivers/staging/lustre
parent8b66d8eb321c6e8194e02db5b467aaa9dc0b00c0 (diff)
downloadop-kernel-dev-0bb73711b7dd65f101413338ae8f2e566c5946d4.zip
op-kernel-dev-0bb73711b7dd65f101413338ae8f2e566c5946d4.tar.gz
staging: lustre: fix comparisons should place the constant on the right side
This patch fixes checkpatch.pl warning: WARNING: Comparisons should place the constant on the right side of the test Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre')
-rw-r--r--drivers/staging/lustre/lustre/include/lu_object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h
index 4f213c4..a3c0481 100644
--- a/drivers/staging/lustre/lustre/include/lu_object.h
+++ b/drivers/staging/lustre/lustre/include/lu_object.h
@@ -1130,7 +1130,7 @@ struct lu_context_key {
{ \
type *value; \
\
- BUILD_BUG_ON(PAGE_SIZE < sizeof(*value)); \
+ BUILD_BUG_ON(sizeof(*value) > PAGE_SIZE); \
\
value = kzalloc(sizeof(*value), GFP_NOFS); \
if (!value) \
OpenPOWER on IntegriCloud