block/ps3vram: Check return of ps3vram_cache_init
authorGeoff Levand <[email protected]>
Mon, 7 Aug 2017 20:09:20 +0000 (20:09 +0000)
committerMichael Ellerman <[email protected]>
Thu, 17 Aug 2017 13:03:44 +0000 (23:03 +1000)
Cc: Markus Elfring <[email protected]>
Cc: Jim Paris <[email protected]>
Cc: Jens Axboe <[email protected]>
Signed-off-by: Geoff Levand <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
drivers/block/ps3vram.c

index ba97d037279e41036203a327d5061910f5ebd96c..6a55959cbf78f99747cb2c84f93f5dc626042610 100644 (file)
@@ -741,7 +741,11 @@ static int ps3vram_probe(struct ps3_system_bus_device *dev)
                goto out_unmap_reports;
        }
 
-       ps3vram_cache_init(dev);
+       error = ps3vram_cache_init(dev);
+       if (error < 0) {
+               goto out_unmap_reports;
+       }
+
        ps3vram_proc_init(dev);
 
        queue = blk_alloc_queue(GFP_KERNEL);