On 3/7/2017 1:23 PM, Christoph Hellwig wrote:
+#if defined(CONFIG_NVME_FC)
+#define CONFIG_LPFC_NVME_INITIATOR
+#endif
+
+#if defined(CONFIG_NVME_TARGET_FC)
+#define CONFIG_LPFC_NVME_TARGET
+#endif
The CONFIG_* namespace is reserved for Kconfig defined symbols.
Also I think the above is wrong if the nvme fc core code is built
modular. I think you want to replace all occurances of
#ifdef CONFIG_LPFC_NVME_INITIATOR
with
if (IS_ENABLED(CONFIG_NVME_FC))
and vice versa for the taget.
make sense
-- james