Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F162036710
D14543.id39834.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D14543.id39834.diff
View Options
Index: head/sysutils/smartmontools/files/patch-os__freebsd.cpp
===================================================================
--- head/sysutils/smartmontools/files/patch-os__freebsd.cpp
+++ head/sysutils/smartmontools/files/patch-os__freebsd.cpp
@@ -1,14 +1,15 @@
--- os_freebsd.cpp.orig 2017-04-24 09:34:16.000000000 -0700
-+++ os_freebsd.cpp 2018-02-22 23:01:44.118712000 -0800
-@@ -15,6 +15,7 @@
- *
++++ os_freebsd.cpp 2018-02-27 19:15:54.338861000 +0000
+@@ -16,6 +16,8 @@
*/
+ #include <stdio.h>
++#include <sys/endian.h>
+#include <sys/param.h>
- #include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
-@@ -484,7 +485,7 @@
+ #include <fcntl.h>
+@@ -484,7 +486,7 @@
}
nsid = 0xFFFFFFFF; // broadcast id
}
@@ -17,16 +18,41 @@
&ctrlid, &nsid, &tmp) == 2)
{
if(ctrlid < 0 || nsid < 0) {
-@@ -521,7 +522,11 @@
+@@ -521,16 +523,20 @@
struct nvme_pt_command pt;
memset(&pt, 0, sizeof(pt));
-- pt.cmd.opc = in.opcode;
+#if __FreeBSD_version >= 1200058
+ pt.cmd.opc_fuse = NVME_CMD_SET_OPC(in.opcode);
+#else
-+ pt.cmd.opc = in.opcode;
+ pt.cmd.opc = in.opcode;
+#endif
- pt.cmd.nsid = in.nsid;
+- pt.cmd.nsid = in.nsid;
++ pt.cmd.nsid = htole32(in.nsid);
pt.buf = in.buffer;
pt.len = in.size;
+- pt.cmd.cdw10 = in.cdw10;
+- pt.cmd.cdw11 = in.cdw11;
+- pt.cmd.cdw12 = in.cdw12;
+- pt.cmd.cdw13 = in.cdw13;
+- pt.cmd.cdw14 = in.cdw14;
+- pt.cmd.cdw15 = in.cdw15;
++ pt.cmd.cdw10 = htole32(in.cdw10);
++ pt.cmd.cdw11 = htole32(in.cdw11);
++ pt.cmd.cdw12 = htole32(in.cdw12);
++ pt.cmd.cdw13 = htole32(in.cdw13);
++ pt.cmd.cdw14 = htole32(in.cdw14);
++ pt.cmd.cdw15 = htole32(in.cdw15);
+ pt.is_read = 1; // should we use in.direction()?
+
+ int status = ioctl(get_fd(), NVME_PASSTHROUGH_CMD, &pt);
+@@ -538,6 +544,9 @@
+ if (status < 0)
+ return set_err(errno, "NVME_PASSTHROUGH_CMD: %s", strerror(errno));
+
++#if __FreeBSD_version >= 1200058
++ nvme_completion_swapbytes(&pt.cpl);
++#endif
+ out.result=pt.cpl.cdw0; // Command specific result (DW0)
+
+ if (nvme_completion_is_error(&pt.cpl))
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jul 10, 3:24 AM (11 h, 22 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
34912584
Default Alt Text
D14543.id39834.diff (2 KB)
Attached To
Mode
D14543: Display NVMe data properly on Big Endian hosts with sysutils/smartmontools
Attached
Detach File
Event Timeline
Log In to Comment