aboutsummaryrefslogtreecommitdiffstats
path: root/net/rds/connection.c
diff options
context:
space:
mode:
authorAndy Grover <andy.grover@oracle.com>2010-01-12 14:56:44 -0500
committerAndy Grover <andy.grover@oracle.com>2010-09-08 21:11:32 -0400
commit8690bfa17aea4c42da1bcf90a7af93d161eca624 (patch)
tree88c4c5fa63aab0c18cf13228c4b3a6f980aa74be /net/rds/connection.c
parent2dc393573430f853e56e25bf4b41c34ba2aa8fd6 (diff)
RDS: cleanup: remove "== NULL"s and "!= NULL"s in ptr comparisons
Favor "if (foo)" style over "if (foo != NULL)". Signed-off-by: Andy Grover <andy.grover@oracle.com>
Diffstat (limited to 'net/rds/connection.c')
-rw-r--r--net/rds/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/connection.c b/net/rds/connection.c
index 895e39cdc6a6..9c9afb58a143 100644
--- a/net/rds/connection.c
+++ b/net/rds/connection.c
@@ -148,7 +148,7 @@ static struct rds_connection *__rds_conn_create(__be32 laddr, __be32 faddr,
148 goto out; 148 goto out;
149 149
150 conn = kmem_cache_zalloc(rds_conn_slab, gfp); 150 conn = kmem_cache_zalloc(rds_conn_slab, gfp);
151 if (conn == NULL) { 151 if (!conn) {
152 conn = ERR_PTR(-ENOMEM); 152 conn = ERR_PTR(-ENOMEM);
153 goto out; 153 goto out;
154 } 154 }
@@ -502,7 +502,7 @@ int __init rds_conn_init(void)
502 rds_conn_slab = kmem_cache_create("rds_connection", 502 rds_conn_slab = kmem_cache_create("rds_connection",
503 sizeof(struct rds_connection), 503 sizeof(struct rds_connection),
504 0, 0, NULL); 504 0, 0, NULL);
505 if (rds_conn_slab == NULL) 505 if (!rds_conn_slab)
506 return -ENOMEM; 506 return -ENOMEM;
507 507
508 rds_info_register_func(RDS_INFO_CONNECTIONS, rds_conn_info); 508 rds_info_register_func(RDS_INFO_CONNECTIONS, rds_conn_info);