staging: lustre: fid: Use kzalloc and kfree
Replace OBD_ALLOC, OBD_ALLOC_WAIT, OBD_ALLOC_PTR, and OBD_ALLOC_PTR_WAIT by kalloc/kcalloc, and OBD_FREE and OBD_FREE_PTR by kfree. A simplified version of the semantic patch that makes these changes is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression ptr,size; @@ - OBD_ALLOC(ptr,size) + ptr = kzalloc(size, GFP_NOFS) @@ expression ptr, size; @@ - OBD_FREE(ptr, size); + kfree(ptr); // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fd5e2fd053
commit
5a56474a51
|
@ -505,11 +505,11 @@ int client_fid_init(struct obd_device *obd,
|
||||||
char *prefix;
|
char *prefix;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
OBD_ALLOC_PTR(cli->cl_seq);
|
cli->cl_seq = kzalloc(sizeof(*cli->cl_seq), GFP_NOFS);
|
||||||
if (cli->cl_seq == NULL)
|
if (cli->cl_seq == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
OBD_ALLOC(prefix, MAX_OBD_NAME + 5);
|
prefix = kzalloc(MAX_OBD_NAME + 5, GFP_NOFS);
|
||||||
if (prefix == NULL) {
|
if (prefix == NULL) {
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto out_free_seq;
|
goto out_free_seq;
|
||||||
|
@ -519,13 +519,13 @@ int client_fid_init(struct obd_device *obd,
|
||||||
|
|
||||||
/* Init client side sequence-manager */
|
/* Init client side sequence-manager */
|
||||||
rc = seq_client_init(cli->cl_seq, exp, type, prefix, NULL);
|
rc = seq_client_init(cli->cl_seq, exp, type, prefix, NULL);
|
||||||
OBD_FREE(prefix, MAX_OBD_NAME + 5);
|
kfree(prefix);
|
||||||
if (rc)
|
if (rc)
|
||||||
goto out_free_seq;
|
goto out_free_seq;
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
out_free_seq:
|
out_free_seq:
|
||||||
OBD_FREE_PTR(cli->cl_seq);
|
kfree(cli->cl_seq);
|
||||||
cli->cl_seq = NULL;
|
cli->cl_seq = NULL;
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
@ -537,7 +537,7 @@ int client_fid_fini(struct obd_device *obd)
|
||||||
|
|
||||||
if (cli->cl_seq != NULL) {
|
if (cli->cl_seq != NULL) {
|
||||||
seq_client_fini(cli->cl_seq);
|
seq_client_fini(cli->cl_seq);
|
||||||
OBD_FREE_PTR(cli->cl_seq);
|
kfree(cli->cl_seq);
|
||||||
cli->cl_seq = NULL;
|
cli->cl_seq = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue