• C
    bcache: properly initialize 'path' and 'err' in register_bcache() · 29cda393
    Coly Li 提交于
    Patch "bcache: rework error unwinding in register_bcache" from
    Christoph Hellwig changes the local variables 'path' and 'err'
    in undefined initial state. If the code in register_bcache() jumps
    to label 'out:' or 'out_module_put:' by goto, these two variables
    might be reference with undefined value by the following line,
    
    	out_module_put:
    	        module_put(THIS_MODULE);
    	out:
    	        pr_info("error %s: %s", path, err);
    	        return ret;
    
    Therefore this patch initializes these two local variables properly
    in register_bcache() to avoid such issue.
    Signed-off-by: NColy Li <colyli@suse.de>
    Signed-off-by: NJens Axboe <axboe@kernel.dk>
    29cda393
super.c 66.9 KB