]> www.infradead.org Git - users/willy/pagecache.git/commit
nvdimm: Remove dead code for ENODEV checking in scan_labels()
authorLi Zhijian <lizhijian@fujitsu.com>
Mon, 19 Aug 2024 06:20:45 +0000 (14:20 +0800)
committerIra Weiny <ira.weiny@intel.com>
Wed, 21 Aug 2024 21:06:43 +0000 (16:06 -0500)
commit447b167bb60d0bb95967c4d93dac9af1cca437db
tree57e70babe1c0c824488787f2b9cf2d3bfd1da6de
parent62c2aa6b1f565d2fc1ec11a6e9e8336ce37a6426
nvdimm: Remove dead code for ENODEV checking in scan_labels()

The only way create_namespace_pmem() returns an ENODEV code is if
select_pmem_id(nd_region, &uuid) returns ENODEV when its 2nd parameter
is a null pointer. However, this is impossible because &uuid is always
valid.

Furthermore, create_namespace_pmem() is the only user of
select_pmem_id(), it's safe to remove the 'return -ENODEV' branch.

Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Link: https://patch.msgid.link/20240819062045.1481298-2-lizhijian@fujitsu.com
Signed-off-by: Ira Weiny <ira.weiny@intel.com>
drivers/nvdimm/namespace_devs.c