From: Max Gurtovoy Date: Tue, 16 Jun 2020 09:34:21 +0000 (+0300) Subject: nvme: set initial value for controller's numa node X-Git-Tag: v5.10.7~2053^2~10^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fea243ebce40e2e4193d7d25eabfd963c46ef8c;p=platform%2Fkernel%2Flinux-rpi.git nvme: set initial value for controller's numa node Initialize the node to NUMA_NO_NODE value. Transports that are aware of numa node affinity can override it (e.g. RDMA transport set the affinity according to the RDMA HCA). Signed-off-by: Max Gurtovoy Signed-off-by: Christoph Hellwig --- diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index c2c5bc4..915fa2e 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -4174,6 +4174,7 @@ int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev, ctrl->dev = dev; ctrl->ops = ops; ctrl->quirks = quirks; + ctrl->numa_node = NUMA_NO_NODE; INIT_WORK(&ctrl->scan_work, nvme_scan_work); INIT_WORK(&ctrl->async_event_work, nvme_async_event_work); INIT_WORK(&ctrl->fw_act_work, nvme_fw_act_work);