This pull request contains updates for UBI and UBIFS:

UBI:
	- Use in-tree fault injection framework and add new injection types
	- Fix for a memory leak in the block driver

UBIFS:
	- kernel-doc fixes
	- Various minor fixes
ubi: block: fix memleak in ubiblock_create()

If idr_alloc() fails, dev->gd will be put after goto out_cleanup_disk in
ubiblock_create(), but dev->gd has not been assigned yet at this time, and
'gd' will not be put anymore. Fix it by putting 'gd' directly.

Signed-off-by: Li Nan <linan122@huawei.com>
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
1 file changed