-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix the incorrect Intel NVMe device path
1. No matter whether the NVMe device is from Samsung or Intel, the NVMe device path is /dev/libnvm* , this is defined by the BaM NVMe kernel module, so for Intel NVMe devices we should not use /dev/libinvm*, which will lead to error. 2. the index of libnvm* should be "0,1,2,3,4..." instead of "0,1,4,9,2...", because if there are only 3 NVMe devices for BaM, the third one will be failed to be open because there's no /dev/libnvm4 in the host. Signed-off-by: Liang Zhou <[email protected]>
- Loading branch information
1 parent
1362048
commit 3be9cc6
Showing
5 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters