diff options
Diffstat (limited to 'net/rds/connection.c')
-rw-r--r-- | net/rds/connection.c | 4 |
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); |