diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2013-07-05 02:05:46 -0400 |
---|---|---|
committer | Kent Overstreet <kmo@daterainc.com> | 2013-07-12 03:22:46 -0400 |
commit | d2a65ce2ac224413b291307201c5dafb03aa90d7 (patch) | |
tree | 398b6ca67bada221c6f56dc0adec950f63fbc0d8 | |
parent | 6aa8f1a6ca41c49721d2de4e048d3da8d06411f9 (diff) |
bcache: check for allocation failures
There is a missing NULL check after the kzalloc().
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
-rw-r--r-- | drivers/md/bcache/sysfs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/md/bcache/sysfs.c b/drivers/md/bcache/sysfs.c index dd3f00a42729..12a2c2846f99 100644 --- a/drivers/md/bcache/sysfs.c +++ b/drivers/md/bcache/sysfs.c | |||
@@ -232,6 +232,8 @@ STORE(__cached_dev) | |||
232 | bch_uuid_write(dc->disk.c); | 232 | bch_uuid_write(dc->disk.c); |
233 | } | 233 | } |
234 | env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL); | 234 | env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL); |
235 | if (!env) | ||
236 | return -ENOMEM; | ||
235 | add_uevent_var(env, "DRIVER=bcache"); | 237 | add_uevent_var(env, "DRIVER=bcache"); |
236 | add_uevent_var(env, "CACHED_UUID=%pU", dc->sb.uuid), | 238 | add_uevent_var(env, "CACHED_UUID=%pU", dc->sb.uuid), |
237 | add_uevent_var(env, "CACHED_LABEL=%s", buf); | 239 | add_uevent_var(env, "CACHED_LABEL=%s", buf); |