Skip to content

Commit c852497

Browse files
authored
Merge pull request #6 from tsisw/fir-204
@FIR-204: Revised and sanitized changes from SSD
2 parents d3f9e5e + 2e5b926 commit c852497

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

arch/arm64/boot/dts/intel/socfpga_agilex_bittware.dts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,11 @@
181181
};
182182
};
183183

184-
/*&pcie_0_pcie_aglx {
184+
&pcie_0_pcie_aglx {
185185
status = "okay";
186-
compatible = "altr,pcie-root-port-3.0-f-tile";*/
186+
compatible = "altr,pcie-root-port-3.0-f-tile";
187187
/* interrupts = <0 0 0>; */
188188
/* interrupts = <32 IRQ_TYPE_LEVEL_HIGH>;
189189
interupt_parent = <&intc>; */
190-
/*};*/
190+
};
191191

arch/arm64/boot/dts/intel/socfpga_agilex_pcie_root_port.dtsi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
interrupt-controller;
2828
#interrupt-cells = <0x1>;
2929
device_type = "pci";
30-
max-link-speed = <2>; /* MM addded */
3130
bus-range = <0x0000000 0x000000ff>;
3231
ranges = <0x82000000 0x00000000 0x00100000 0x00000000 0x10000000 0x00000000 0x0ff00000>;
3332
msi-parent = <&pcie_0_msi_irq>;

arch/arm64/configs/defconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1600,7 +1600,7 @@ CONFIG_IO_STRICT_DEVMEM=n
16001600
CONFIG_HUGETLB_PAGE=y
16011601
##MM includes
16021602
CONFIG_BLK_DEV_NVME=y
1603-
CONFIG_NVME_MULTIPATH=y
1604-
CONFIG_NVME_VERBOSE_ERRORS=y
1603+
#CONFIG_NVME_MULTIPATH=y
1604+
#CONFIG_NVME_VERBOSE_ERRORS=y
16051605
#CONFIG_NVME_HWMON=y
16061606
#CONFIG_NVME_FC=y

drivers/nvme/host/core.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2320,8 +2320,7 @@ int nvme_enable_ctrl(struct nvme_ctrl *ctrl)
23202320
if (ret)
23212321
return ret;
23222322
return nvme_wait_ready(ctrl, NVME_CSTS_RDY, NVME_CSTS_RDY,
2323-
(timeout + 1) * 2, "initialisation");
2324-
/*MM : PATCH (timeout + 1) / 2, "initialisation"); */
2323+
(timeout + 1) / 2, "initialisation");
23252324
}
23262325
EXPORT_SYMBOL_GPL(nvme_enable_ctrl);
23272326

drivers/nvme/host/pci.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2270,7 +2270,6 @@ static int nvme_setup_io_queues(struct nvme_dev *dev)
22702270
dev->nr_poll_queues = poll_queues;
22712271

22722272
nr_io_queues = dev->nr_allocated_queues - 1;
2273-
nr_io_queues = 4;
22742273
result = nvme_set_queue_count(&dev->ctrl, &nr_io_queues);
22752274
if (result < 0)
22762275
return result;

0 commit comments

Comments
 (0)