diff options
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-cgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c index e8918ffaf96d..7fc35f683c4e 100644 --- a/block/blk-cgroup.c +++ b/block/blk-cgroup.c | |||
@@ -238,7 +238,7 @@ static struct blkcg_gq *blkg_create(struct blkcg *blkcg, | |||
238 | if (blkcg_parent(blkcg)) { | 238 | if (blkcg_parent(blkcg)) { |
239 | blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false); | 239 | blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false); |
240 | if (WARN_ON_ONCE(!blkg->parent)) { | 240 | if (WARN_ON_ONCE(!blkg->parent)) { |
241 | blkg = ERR_PTR(-EINVAL); | 241 | ret = -EINVAL; |
242 | goto err_put_css; | 242 | goto err_put_css; |
243 | } | 243 | } |
244 | blkg_get(blkg->parent); | 244 | blkg_get(blkg->parent); |