staging: lustre: drop uses of some OBD alloc and free functions
Replace OBD_ALLOC, OBD_ALLOC_WAIT, OBD_ALLOC_PTR, and OBD_ALLOC_PTR_WAIT by kzalloc or calloc, as appropriate. Replace OBD_FREE and OBD_FREE_PTR by kfree. A simplified version of the semantic patch that makes these changes in the OBD_ALLOC/FREE case is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression ptr,e1,e2; @@ - OBD_ALLOC(ptr,sizeof e1 * e2) + ptr = kcalloc(e2, sizeof e1, GFP_NOFS) @@ 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
97903a26fc
commit
840c94d574
6 changed files with 50 additions and 50 deletions
|
@ -285,10 +285,10 @@ static void lov_emerg_free(struct lov_device_emerg **emrg, int nr)
|
||||||
LASSERT(em->emrg_page_list.pl_nr == 0);
|
LASSERT(em->emrg_page_list.pl_nr == 0);
|
||||||
if (em->emrg_env != NULL)
|
if (em->emrg_env != NULL)
|
||||||
cl_env_put(em->emrg_env, &em->emrg_refcheck);
|
cl_env_put(em->emrg_env, &em->emrg_refcheck);
|
||||||
OBD_FREE_PTR(em);
|
kfree(em);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
OBD_FREE(emrg, nr * sizeof(emrg[0]));
|
kfree(emrg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct lu_device *lov_device_free(const struct lu_env *env,
|
static struct lu_device *lov_device_free(const struct lu_env *env,
|
||||||
|
@ -299,10 +299,10 @@ static struct lu_device *lov_device_free(const struct lu_env *env,
|
||||||
|
|
||||||
cl_device_fini(lu2cl_dev(d));
|
cl_device_fini(lu2cl_dev(d));
|
||||||
if (ld->ld_target != NULL)
|
if (ld->ld_target != NULL)
|
||||||
OBD_FREE(ld->ld_target, nr * sizeof(ld->ld_target[0]));
|
kfree(ld->ld_target);
|
||||||
if (ld->ld_emrg != NULL)
|
if (ld->ld_emrg != NULL)
|
||||||
lov_emerg_free(ld->ld_emrg, nr);
|
lov_emerg_free(ld->ld_emrg, nr);
|
||||||
OBD_FREE_PTR(ld);
|
kfree(ld);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -323,13 +323,13 @@ static struct lov_device_emerg **lov_emerg_alloc(int nr)
|
||||||
int i;
|
int i;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
OBD_ALLOC(emerg, nr * sizeof(emerg[0]));
|
emerg = kcalloc(nr, sizeof(emerg[0]), GFP_NOFS);
|
||||||
if (emerg == NULL)
|
if (emerg == NULL)
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
for (result = i = 0; i < nr && result == 0; i++) {
|
for (result = i = 0; i < nr && result == 0; i++) {
|
||||||
struct lov_device_emerg *em;
|
struct lov_device_emerg *em;
|
||||||
|
|
||||||
OBD_ALLOC_PTR(em);
|
em = kzalloc(sizeof(*em), GFP_NOFS);
|
||||||
if (em != NULL) {
|
if (em != NULL) {
|
||||||
emerg[i] = em;
|
emerg[i] = em;
|
||||||
cl_page_list_init(&em->emrg_page_list);
|
cl_page_list_init(&em->emrg_page_list);
|
||||||
|
@ -369,12 +369,12 @@ static int lov_expand_targets(const struct lu_env *env, struct lov_device *dev)
|
||||||
if (IS_ERR(emerg))
|
if (IS_ERR(emerg))
|
||||||
return PTR_ERR(emerg);
|
return PTR_ERR(emerg);
|
||||||
|
|
||||||
OBD_ALLOC(newd, tgt_size * sz);
|
newd = kcalloc(tgt_size, sz, GFP_NOFS);
|
||||||
if (newd != NULL) {
|
if (newd != NULL) {
|
||||||
mutex_lock(&dev->ld_mutex);
|
mutex_lock(&dev->ld_mutex);
|
||||||
if (sub_size > 0) {
|
if (sub_size > 0) {
|
||||||
memcpy(newd, dev->ld_target, sub_size * sz);
|
memcpy(newd, dev->ld_target, sub_size * sz);
|
||||||
OBD_FREE(dev->ld_target, sub_size * sz);
|
kfree(dev->ld_target);
|
||||||
}
|
}
|
||||||
dev->ld_target = newd;
|
dev->ld_target = newd;
|
||||||
dev->ld_target_nr = tgt_size;
|
dev->ld_target_nr = tgt_size;
|
||||||
|
@ -478,7 +478,7 @@ static struct lu_device *lov_device_alloc(const struct lu_env *env,
|
||||||
struct obd_device *obd;
|
struct obd_device *obd;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
OBD_ALLOC_PTR(ld);
|
ld = kzalloc(sizeof(*ld), GFP_NOFS);
|
||||||
if (ld == NULL)
|
if (ld == NULL)
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
|
|
||||||
|
|
|
@ -70,7 +70,7 @@ static void lov_io_sub_fini(const struct lu_env *env, struct lov_io *lio,
|
||||||
if (sub->sub_stripe == lio->lis_single_subio_index)
|
if (sub->sub_stripe == lio->lis_single_subio_index)
|
||||||
lio->lis_single_subio_index = -1;
|
lio->lis_single_subio_index = -1;
|
||||||
else if (!sub->sub_borrowed)
|
else if (!sub->sub_borrowed)
|
||||||
OBD_FREE_PTR(sub->sub_io);
|
kfree(sub->sub_io);
|
||||||
sub->sub_io = NULL;
|
sub->sub_io = NULL;
|
||||||
}
|
}
|
||||||
if (sub->sub_env != NULL && !IS_ERR(sub->sub_env)) {
|
if (sub->sub_env != NULL && !IS_ERR(sub->sub_env)) {
|
||||||
|
@ -179,7 +179,8 @@ static int lov_io_sub_init(const struct lu_env *env, struct lov_io *lio,
|
||||||
sub->sub_io = &lio->lis_single_subio;
|
sub->sub_io = &lio->lis_single_subio;
|
||||||
lio->lis_single_subio_index = stripe;
|
lio->lis_single_subio_index = stripe;
|
||||||
} else {
|
} else {
|
||||||
OBD_ALLOC_PTR(sub->sub_io);
|
sub->sub_io = kzalloc(sizeof(*sub->sub_io),
|
||||||
|
GFP_NOFS);
|
||||||
if (sub->sub_io == NULL)
|
if (sub->sub_io == NULL)
|
||||||
result = -ENOMEM;
|
result = -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
|
@ -554,7 +554,7 @@ static int lov_add_target(struct obd_device *obd, struct obd_uuid *uuidp,
|
||||||
newsize = max_t(__u32, lov->lov_tgt_size, 2);
|
newsize = max_t(__u32, lov->lov_tgt_size, 2);
|
||||||
while (newsize < index + 1)
|
while (newsize < index + 1)
|
||||||
newsize <<= 1;
|
newsize <<= 1;
|
||||||
OBD_ALLOC(newtgts, sizeof(*newtgts) * newsize);
|
newtgts = kcalloc(newsize, sizeof(*newtgts), GFP_NOFS);
|
||||||
if (newtgts == NULL) {
|
if (newtgts == NULL) {
|
||||||
mutex_unlock(&lov->lov_lock);
|
mutex_unlock(&lov->lov_lock);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
@ -571,13 +571,13 @@ static int lov_add_target(struct obd_device *obd, struct obd_uuid *uuidp,
|
||||||
lov->lov_tgt_size = newsize;
|
lov->lov_tgt_size = newsize;
|
||||||
smp_rmb();
|
smp_rmb();
|
||||||
if (old)
|
if (old)
|
||||||
OBD_FREE(old, sizeof(*old) * oldsize);
|
kfree(old);
|
||||||
|
|
||||||
CDEBUG(D_CONFIG, "tgts: %p size: %d\n",
|
CDEBUG(D_CONFIG, "tgts: %p size: %d\n",
|
||||||
lov->lov_tgts, lov->lov_tgt_size);
|
lov->lov_tgts, lov->lov_tgt_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
OBD_ALLOC_PTR(tgt);
|
tgt = kzalloc(sizeof(*tgt), GFP_NOFS);
|
||||||
if (!tgt) {
|
if (!tgt) {
|
||||||
mutex_unlock(&lov->lov_lock);
|
mutex_unlock(&lov->lov_lock);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
@ -586,7 +586,7 @@ static int lov_add_target(struct obd_device *obd, struct obd_uuid *uuidp,
|
||||||
rc = lov_ost_pool_add(&lov->lov_packed, index, lov->lov_tgt_size);
|
rc = lov_ost_pool_add(&lov->lov_packed, index, lov->lov_tgt_size);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
mutex_unlock(&lov->lov_lock);
|
mutex_unlock(&lov->lov_lock);
|
||||||
OBD_FREE_PTR(tgt);
|
kfree(tgt);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -712,7 +712,7 @@ static void __lov_del_obd(struct obd_device *obd, struct lov_tgt_desc *tgt)
|
||||||
if (tgt->ltd_exp)
|
if (tgt->ltd_exp)
|
||||||
lov_disconnect_obd(obd, tgt);
|
lov_disconnect_obd(obd, tgt);
|
||||||
|
|
||||||
OBD_FREE_PTR(tgt);
|
kfree(tgt);
|
||||||
|
|
||||||
/* Manual cleanup - no cleanup logs to clean up the osc's. We must
|
/* Manual cleanup - no cleanup logs to clean up the osc's. We must
|
||||||
do it ourselves. And we can't do it from lov_cleanup,
|
do it ourselves. And we can't do it from lov_cleanup,
|
||||||
|
@ -903,8 +903,7 @@ static int lov_cleanup(struct obd_device *obd)
|
||||||
lov_del_target(obd, i, NULL, 0);
|
lov_del_target(obd, i, NULL, 0);
|
||||||
}
|
}
|
||||||
obd_putref(obd);
|
obd_putref(obd);
|
||||||
OBD_FREE(lov->lov_tgts, sizeof(*lov->lov_tgts) *
|
kfree(lov->lov_tgts);
|
||||||
lov->lov_tgt_size);
|
|
||||||
lov->lov_tgt_size = 0;
|
lov->lov_tgt_size = 0;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -994,7 +993,7 @@ static int lov_recreate(struct obd_export *exp, struct obdo *src_oa,
|
||||||
LASSERT(src_oa->o_valid & OBD_MD_FLFLAGS &&
|
LASSERT(src_oa->o_valid & OBD_MD_FLFLAGS &&
|
||||||
src_oa->o_flags & OBD_FL_RECREATE_OBJS);
|
src_oa->o_flags & OBD_FL_RECREATE_OBJS);
|
||||||
|
|
||||||
OBD_ALLOC(obj_mdp, sizeof(*obj_mdp));
|
obj_mdp = kzalloc(sizeof(*obj_mdp), GFP_NOFS);
|
||||||
if (obj_mdp == NULL)
|
if (obj_mdp == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
@ -1032,7 +1031,7 @@ static int lov_recreate(struct obd_export *exp, struct obdo *src_oa,
|
||||||
rc = obd_create(NULL, lov->lov_tgts[ost_idx]->ltd_exp,
|
rc = obd_create(NULL, lov->lov_tgts[ost_idx]->ltd_exp,
|
||||||
src_oa, &obj_mdp, oti);
|
src_oa, &obj_mdp, oti);
|
||||||
out:
|
out:
|
||||||
OBD_FREE(obj_mdp, sizeof(*obj_mdp));
|
kfree(obj_mdp);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1532,7 +1531,7 @@ static int lov_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
|
|
||||||
LASSERT(tgt && tgt->ltd_exp);
|
LASSERT(tgt && tgt->ltd_exp);
|
||||||
OBD_ALLOC_PTR(oqctl);
|
oqctl = kzalloc(sizeof(*oqctl), GFP_NOFS);
|
||||||
if (!oqctl)
|
if (!oqctl)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
@ -1543,7 +1542,7 @@ static int lov_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
|
||||||
qctl->qc_valid = QC_OSTIDX;
|
qctl->qc_valid = QC_OSTIDX;
|
||||||
qctl->obd_uuid = tgt->ltd_uuid;
|
qctl->obd_uuid = tgt->ltd_uuid;
|
||||||
}
|
}
|
||||||
OBD_FREE_PTR(oqctl);
|
kfree(oqctl);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
|
|
|
@ -67,7 +67,7 @@ void lov_pool_putref(struct pool_desc *pool)
|
||||||
LASSERT(pool->pool_proc_entry == NULL);
|
LASSERT(pool->pool_proc_entry == NULL);
|
||||||
lov_ost_pool_free(&(pool->pool_rr.lqr_pool));
|
lov_ost_pool_free(&(pool->pool_rr.lqr_pool));
|
||||||
lov_ost_pool_free(&(pool->pool_obds));
|
lov_ost_pool_free(&(pool->pool_obds));
|
||||||
OBD_FREE_PTR(pool);
|
kfree(pool);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -210,7 +210,7 @@ static void *pool_proc_start(struct seq_file *s, loff_t *pos)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
OBD_ALLOC_PTR(iter);
|
iter = kzalloc(sizeof(*iter), GFP_NOFS);
|
||||||
if (!iter)
|
if (!iter)
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
iter->magic = POOL_IT_MAGIC;
|
iter->magic = POOL_IT_MAGIC;
|
||||||
|
@ -246,7 +246,7 @@ static void pool_proc_stop(struct seq_file *s, void *v)
|
||||||
* will work */
|
* will work */
|
||||||
s->private = iter->pool;
|
s->private = iter->pool;
|
||||||
lov_pool_putref(iter->pool);
|
lov_pool_putref(iter->pool);
|
||||||
OBD_FREE_PTR(iter);
|
kfree(iter);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -327,7 +327,7 @@ int lov_ost_pool_init(struct ost_pool *op, unsigned int count)
|
||||||
op->op_count = 0;
|
op->op_count = 0;
|
||||||
init_rwsem(&op->op_rw_sem);
|
init_rwsem(&op->op_rw_sem);
|
||||||
op->op_size = count;
|
op->op_size = count;
|
||||||
OBD_ALLOC(op->op_array, op->op_size * sizeof(op->op_array[0]));
|
op->op_array = kcalloc(op->op_size, sizeof(op->op_array[0]), GFP_NOFS);
|
||||||
if (op->op_array == NULL) {
|
if (op->op_array == NULL) {
|
||||||
op->op_size = 0;
|
op->op_size = 0;
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
@ -347,13 +347,13 @@ int lov_ost_pool_extend(struct ost_pool *op, unsigned int min_count)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
new_size = max(min_count, 2 * op->op_size);
|
new_size = max(min_count, 2 * op->op_size);
|
||||||
OBD_ALLOC(new, new_size * sizeof(op->op_array[0]));
|
new = kcalloc(new_size, sizeof(op->op_array[0]), GFP_NOFS);
|
||||||
if (new == NULL)
|
if (new == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
/* copy old array to new one */
|
/* copy old array to new one */
|
||||||
memcpy(new, op->op_array, op->op_size * sizeof(op->op_array[0]));
|
memcpy(new, op->op_array, op->op_size * sizeof(op->op_array[0]));
|
||||||
OBD_FREE(op->op_array, op->op_size * sizeof(op->op_array[0]));
|
kfree(op->op_array);
|
||||||
op->op_array = new;
|
op->op_array = new;
|
||||||
op->op_size = new_size;
|
op->op_size = new_size;
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -411,7 +411,7 @@ int lov_ost_pool_free(struct ost_pool *op)
|
||||||
|
|
||||||
down_write(&op->op_rw_sem);
|
down_write(&op->op_rw_sem);
|
||||||
|
|
||||||
OBD_FREE(op->op_array, op->op_size * sizeof(op->op_array[0]));
|
kfree(op->op_array);
|
||||||
op->op_array = NULL;
|
op->op_array = NULL;
|
||||||
op->op_count = 0;
|
op->op_count = 0;
|
||||||
op->op_size = 0;
|
op->op_size = 0;
|
||||||
|
@ -432,7 +432,7 @@ int lov_pool_new(struct obd_device *obd, char *poolname)
|
||||||
if (strlen(poolname) > LOV_MAXPOOLNAME)
|
if (strlen(poolname) > LOV_MAXPOOLNAME)
|
||||||
return -ENAMETOOLONG;
|
return -ENAMETOOLONG;
|
||||||
|
|
||||||
OBD_ALLOC_PTR(new_pool);
|
new_pool = kzalloc(sizeof(*new_pool), GFP_NOFS);
|
||||||
if (new_pool == NULL)
|
if (new_pool == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
@ -498,7 +498,7 @@ out_err:
|
||||||
lov_ost_pool_free(&new_pool->pool_rr.lqr_pool);
|
lov_ost_pool_free(&new_pool->pool_rr.lqr_pool);
|
||||||
out_free_pool_obds:
|
out_free_pool_obds:
|
||||||
lov_ost_pool_free(&new_pool->pool_obds);
|
lov_ost_pool_free(&new_pool->pool_obds);
|
||||||
OBD_FREE_PTR(new_pool);
|
kfree(new_pool);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -71,9 +71,8 @@ void lov_finish_set(struct lov_request_set *set)
|
||||||
if (req->rq_oi.oi_md)
|
if (req->rq_oi.oi_md)
|
||||||
OBD_FREE_LARGE(req->rq_oi.oi_md, req->rq_buflen);
|
OBD_FREE_LARGE(req->rq_oi.oi_md, req->rq_buflen);
|
||||||
if (req->rq_oi.oi_osfs)
|
if (req->rq_oi.oi_osfs)
|
||||||
OBD_FREE(req->rq_oi.oi_osfs,
|
kfree(req->rq_oi.oi_osfs);
|
||||||
sizeof(*req->rq_oi.oi_osfs));
|
kfree(req);
|
||||||
OBD_FREE(req, sizeof(*req));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (set->set_pga) {
|
if (set->set_pga) {
|
||||||
|
@ -83,7 +82,7 @@ void lov_finish_set(struct lov_request_set *set)
|
||||||
if (set->set_lockh)
|
if (set->set_lockh)
|
||||||
lov_llh_put(set->set_lockh);
|
lov_llh_put(set->set_lockh);
|
||||||
|
|
||||||
OBD_FREE(set, sizeof(*set));
|
kfree(set);
|
||||||
}
|
}
|
||||||
|
|
||||||
int lov_set_finished(struct lov_request_set *set, int idempotent)
|
int lov_set_finished(struct lov_request_set *set, int idempotent)
|
||||||
|
@ -286,7 +285,7 @@ int lov_prep_getattr_set(struct obd_export *exp, struct obd_info *oinfo,
|
||||||
struct lov_obd *lov = &exp->exp_obd->u.lov;
|
struct lov_obd *lov = &exp->exp_obd->u.lov;
|
||||||
int rc = 0, i;
|
int rc = 0, i;
|
||||||
|
|
||||||
OBD_ALLOC(set, sizeof(*set));
|
set = kzalloc(sizeof(*set), GFP_NOFS);
|
||||||
if (set == NULL)
|
if (set == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
lov_init_set(set);
|
lov_init_set(set);
|
||||||
|
@ -312,7 +311,7 @@ int lov_prep_getattr_set(struct obd_export *exp, struct obd_info *oinfo,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
OBD_ALLOC(req, sizeof(*req));
|
req = kzalloc(sizeof(*req), GFP_NOFS);
|
||||||
if (req == NULL) {
|
if (req == NULL) {
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto out_set;
|
goto out_set;
|
||||||
|
@ -323,7 +322,7 @@ int lov_prep_getattr_set(struct obd_export *exp, struct obd_info *oinfo,
|
||||||
|
|
||||||
OBDO_ALLOC(req->rq_oi.oi_oa);
|
OBDO_ALLOC(req->rq_oi.oi_oa);
|
||||||
if (req->rq_oi.oi_oa == NULL) {
|
if (req->rq_oi.oi_oa == NULL) {
|
||||||
OBD_FREE(req, sizeof(*req));
|
kfree(req);
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto out_set;
|
goto out_set;
|
||||||
}
|
}
|
||||||
|
@ -369,7 +368,7 @@ int lov_prep_destroy_set(struct obd_export *exp, struct obd_info *oinfo,
|
||||||
struct lov_obd *lov = &exp->exp_obd->u.lov;
|
struct lov_obd *lov = &exp->exp_obd->u.lov;
|
||||||
int rc = 0, i;
|
int rc = 0, i;
|
||||||
|
|
||||||
OBD_ALLOC(set, sizeof(*set));
|
set = kzalloc(sizeof(*set), GFP_NOFS);
|
||||||
if (set == NULL)
|
if (set == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
lov_init_set(set);
|
lov_init_set(set);
|
||||||
|
@ -395,7 +394,7 @@ int lov_prep_destroy_set(struct obd_export *exp, struct obd_info *oinfo,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
OBD_ALLOC(req, sizeof(*req));
|
req = kzalloc(sizeof(*req), GFP_NOFS);
|
||||||
if (req == NULL) {
|
if (req == NULL) {
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto out_set;
|
goto out_set;
|
||||||
|
@ -406,7 +405,7 @@ int lov_prep_destroy_set(struct obd_export *exp, struct obd_info *oinfo,
|
||||||
|
|
||||||
OBDO_ALLOC(req->rq_oi.oi_oa);
|
OBDO_ALLOC(req->rq_oi.oi_oa);
|
||||||
if (req->rq_oi.oi_oa == NULL) {
|
if (req->rq_oi.oi_oa == NULL) {
|
||||||
OBD_FREE(req, sizeof(*req));
|
kfree(req);
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto out_set;
|
goto out_set;
|
||||||
}
|
}
|
||||||
|
@ -488,7 +487,7 @@ int lov_prep_setattr_set(struct obd_export *exp, struct obd_info *oinfo,
|
||||||
struct lov_obd *lov = &exp->exp_obd->u.lov;
|
struct lov_obd *lov = &exp->exp_obd->u.lov;
|
||||||
int rc = 0, i;
|
int rc = 0, i;
|
||||||
|
|
||||||
OBD_ALLOC(set, sizeof(*set));
|
set = kzalloc(sizeof(*set), GFP_NOFS);
|
||||||
if (set == NULL)
|
if (set == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
lov_init_set(set);
|
lov_init_set(set);
|
||||||
|
@ -511,7 +510,7 @@ int lov_prep_setattr_set(struct obd_export *exp, struct obd_info *oinfo,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
OBD_ALLOC(req, sizeof(*req));
|
req = kzalloc(sizeof(*req), GFP_NOFS);
|
||||||
if (req == NULL) {
|
if (req == NULL) {
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto out_set;
|
goto out_set;
|
||||||
|
@ -521,7 +520,7 @@ int lov_prep_setattr_set(struct obd_export *exp, struct obd_info *oinfo,
|
||||||
|
|
||||||
OBDO_ALLOC(req->rq_oi.oi_oa);
|
OBDO_ALLOC(req->rq_oi.oi_oa);
|
||||||
if (req->rq_oi.oi_oa == NULL) {
|
if (req->rq_oi.oi_oa == NULL) {
|
||||||
OBD_FREE(req, sizeof(*req));
|
kfree(req);
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto out_set;
|
goto out_set;
|
||||||
}
|
}
|
||||||
|
@ -716,7 +715,7 @@ int lov_prep_statfs_set(struct obd_device *obd, struct obd_info *oinfo,
|
||||||
struct lov_obd *lov = &obd->u.lov;
|
struct lov_obd *lov = &obd->u.lov;
|
||||||
int rc = 0, i;
|
int rc = 0, i;
|
||||||
|
|
||||||
OBD_ALLOC(set, sizeof(*set));
|
set = kzalloc(sizeof(*set), GFP_NOFS);
|
||||||
if (set == NULL)
|
if (set == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
lov_init_set(set);
|
lov_init_set(set);
|
||||||
|
@ -742,15 +741,16 @@ int lov_prep_statfs_set(struct obd_device *obd, struct obd_info *oinfo,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
OBD_ALLOC(req, sizeof(*req));
|
req = kzalloc(sizeof(*req), GFP_NOFS);
|
||||||
if (req == NULL) {
|
if (req == NULL) {
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto out_set;
|
goto out_set;
|
||||||
}
|
}
|
||||||
|
|
||||||
OBD_ALLOC(req->rq_oi.oi_osfs, sizeof(*req->rq_oi.oi_osfs));
|
req->rq_oi.oi_osfs = kzalloc(sizeof(*req->rq_oi.oi_osfs),
|
||||||
|
GFP_NOFS);
|
||||||
if (req->rq_oi.oi_osfs == NULL) {
|
if (req->rq_oi.oi_osfs == NULL) {
|
||||||
OBD_FREE(req, sizeof(*req));
|
kfree(req);
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto out_set;
|
goto out_set;
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,7 +136,7 @@ static struct lu_device *lovsub_device_free(const struct lu_env *env,
|
||||||
lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
|
lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
|
||||||
}
|
}
|
||||||
cl_device_fini(lu2cl_dev(d));
|
cl_device_fini(lu2cl_dev(d));
|
||||||
OBD_FREE_PTR(lsd);
|
kfree(lsd);
|
||||||
return next;
|
return next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -172,7 +172,7 @@ static struct lu_device *lovsub_device_alloc(const struct lu_env *env,
|
||||||
struct lu_device *d;
|
struct lu_device *d;
|
||||||
struct lovsub_device *lsd;
|
struct lovsub_device *lsd;
|
||||||
|
|
||||||
OBD_ALLOC_PTR(lsd);
|
lsd = kzalloc(sizeof(*lsd), GFP_NOFS);
|
||||||
if (lsd != NULL) {
|
if (lsd != NULL) {
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue