New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fio_plugin.c:50:25: fatal error: config-host.h: No such file or directory #29
Comments
Make sure you have set SPDK's |
Thanks! It works after running |
ghost
pushed a commit
that referenced
this issue
Oct 5, 2017
Fixes github issue #29. Because of how we handle the blobid and pagenum in blobstore, it was possible to have blobstore inadvertently open the wrong blob if open is provided a blobid where the lower 32 bits match an existing blob but the upper 32 are clear. Patch does the following: - removes assert() that caught this on MD load and replace with an error given that this condition can be induced via the API - cleanup of pagenum and blobid conversion/handling to make it clearer how they're related and converted - new UTs that would have failed w/o the new check in place Change-Id: I2b49b237922b3b8cfc4df296f5bc20195e41dc41 Signed-off-by: Paul Luse <paul.e.luse@intel.com> Reviewed-on: https://review.gerrithub.io/380872 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
tmakatos
added a commit
to tmakatos/spdk
that referenced
this issue
Jun 4, 2020
Signed-off-by: Thanos Makatos <thanos.makatos@nutanix.com>
tmakatos
added a commit
to tmakatos/spdk
that referenced
this issue
Jun 4, 2020
This enables huge pages to work. Also, it avoids requiring having to pin memory. The solution is not 100% correct because since we no longer call vfio_pin_pages, VFIO doesn't send the DMA registration event and we end up getting duplicate regions which we reject (this is because of our internal DMA bookkeeping implementation). We need to work with the community to find a solution. fixes spdk#28 fixes spdk#29 fixes spdk#38 Signed-off-by: Thanos Makatos <thanos.makatos@nutanix.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I followed the introduction
spdk/examples/nvme/fio_plugin/README
, but meet the following ERROR:The text was updated successfully, but these errors were encountered: