Commit 38cf948d authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman

staging: lustre: obdecho: Replace kmem_cache_alloc with kmem_cache_zalloc

Use kmem_cache_zalloc instead of manually setting kmem_cache_alloc
with flag GFP_ZERO since kmem_alloc_zalloc sets allocated memory
to zero.

The Coccinelle semantic patch used to make this change is as
follows:
// <smpl>
@@
expression e,f;
@@
- kmem_cache_alloc(e, f |__GFP_ZERO)
+ kmem_cache_zalloc(e, f)
// </smpl>
Signed-off-by: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8210132b
...@@ -392,7 +392,7 @@ static int echo_lock_init(const struct lu_env *env, ...@@ -392,7 +392,7 @@ static int echo_lock_init(const struct lu_env *env,
{ {
struct echo_lock *el; struct echo_lock *el;
el = kmem_cache_alloc(echo_lock_kmem, GFP_NOFS | __GFP_ZERO); el = kmem_cache_zalloc(echo_lock_kmem, GFP_NOFS);
if (el) { if (el) {
cl_lock_slice_add(lock, &el->el_cl, obj, &echo_lock_ops); cl_lock_slice_add(lock, &el->el_cl, obj, &echo_lock_ops);
el->el_object = cl2echo_obj(obj); el->el_object = cl2echo_obj(obj);
...@@ -562,7 +562,7 @@ static struct lu_object *echo_object_alloc(const struct lu_env *env, ...@@ -562,7 +562,7 @@ static struct lu_object *echo_object_alloc(const struct lu_env *env,
/* we're the top dev. */ /* we're the top dev. */
LASSERT(!hdr); LASSERT(!hdr);
eco = kmem_cache_alloc(echo_object_kmem, GFP_NOFS | __GFP_ZERO); eco = kmem_cache_zalloc(echo_object_kmem, GFP_NOFS);
if (eco) { if (eco) {
struct cl_object_header *hdr = &eco->eo_hdr; struct cl_object_header *hdr = &eco->eo_hdr;
...@@ -625,7 +625,7 @@ static void *echo_thread_key_init(const struct lu_context *ctx, ...@@ -625,7 +625,7 @@ static void *echo_thread_key_init(const struct lu_context *ctx,
{ {
struct echo_thread_info *info; struct echo_thread_info *info;
info = kmem_cache_alloc(echo_thread_kmem, GFP_NOFS | __GFP_ZERO); info = kmem_cache_zalloc(echo_thread_kmem, GFP_NOFS);
if (!info) if (!info)
info = ERR_PTR(-ENOMEM); info = ERR_PTR(-ENOMEM);
return info; return info;
...@@ -656,7 +656,7 @@ static void *echo_session_key_init(const struct lu_context *ctx, ...@@ -656,7 +656,7 @@ static void *echo_session_key_init(const struct lu_context *ctx,
{ {
struct echo_session_info *session; struct echo_session_info *session;
session = kmem_cache_alloc(echo_session_kmem, GFP_NOFS | __GFP_ZERO); session = kmem_cache_zalloc(echo_session_kmem, GFP_NOFS);
if (!session) if (!session)
session = ERR_PTR(-ENOMEM); session = ERR_PTR(-ENOMEM);
return session; return session;
......
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