Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
md: remove unnecessary memset from multipath.
Recent commit bbba809 replaced mempool_create_kzalloc_pool with mempool_create_kmalloc_pool plus a memset. This memset is not needed (and we didn't need kzalloc in the first place). Ever field of the allocated structure (struct multipath_bh) is initialised immediately except retry_list, and memset does not initial a list_head anyway. To remove the memset. Signed-off-by: NeilBrown <neilb@suse.de>
- Loading branch information