projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3532e72
)
blkcg: add missing NULL check in ioc_cpd_alloc()
author
Tejun Heo
<tj@kernel.org>
Fri, 30 Aug 2019 13:10:58 +0000
(06:10 -0700)
committer
Jens Axboe
<axboe@kernel.dk>
Fri, 30 Aug 2019 13:16:19 +0000
(07:16 -0600)
ioc_cpd_alloc() forgot to check NULL return from kzalloc(). Add it.
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-iocost.c
patch
|
blob
|
history
diff --git
a/block/blk-iocost.c
b/block/blk-iocost.c
index 9c8046ac5925a5a3722a6935c2becfbd7ab8907c..2aae8ec391ef0c81bf7b449ecc78b2b1342d6891 100644
(file)
--- a/
block/blk-iocost.c
+++ b/
block/blk-iocost.c
@@
-1888,8
+1888,10
@@
static struct blkcg_policy_data *ioc_cpd_alloc(gfp_t gfp)
struct ioc_cgrp *iocc;
iocc = kzalloc(sizeof(struct ioc_cgrp), gfp);
- iocc->dfl_weight = CGROUP_WEIGHT_DFL;
+ if (!iocc)
+ return NULL;
+ iocc->dfl_weight = CGROUP_WEIGHT_DFL;
return &iocc->cpd;
}